/* =============================================
   Lakulish Consultancy — Main Stylesheet
   Aesthetic: Luxury Education Consultancy
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --navy: #061B4E;
  --navy-light: #0A276B;
  --gold: #D4A017;
  --gold-light: #E8B936;
  --gold-dark: #B3860F;
  --cream: #FAF9F6;
  --white: #FFFFFF;
  --text-main: #1F2937;
  --text-muted: #6B7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--cream);
  color: var(--text-main);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* Glassmorphism utility */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
  background: rgba(6, 27, 78, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up {
  transform: translateY(30px);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-30px);
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  transform: translateX(30px);
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Custom Gradients */
.bg-gradient-royal {
  background: linear-gradient(135deg, var(--navy) 0%, #0d328f 100%);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(6, 27, 78, 0.15);
}

/* Image hover scale */
.img-hover-scale {
  transition: transform 0.4s ease;
}
.img-hover-scale:hover {
  transform: scale(1.08);
}

.logo-rotate {
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

/* Navbar */
.sticky-nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.sticky-nav.scrolled {
  background: rgba(6, 27, 78, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Hero Section */
.hero-overlay {
  background: linear-gradient(90deg, rgba(6,27,78,0.95) 0%, rgba(6,27,78,0.7) 50%, rgba(6,27,78,0.4) 100%);
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}
