/* Replace Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Anton&display=swap');


:root {
    
    /* Updated Color Palette */
    --cuc-primary: #2e3192; /* Deep brand blue */
    --cuc-primary-dark: #1a1c5e;
    --cuc-primary-light: #4a4da8;
    
    /* Gold gradient colors */
    --cuc-gold-light: #fced80;
    --cuc-gold-medium: #efc56d;
    --cuc-gold-dark: #e1b45f;
    
    /* Accent colors */
    --cuc-accent-red: #e41d29;
    --cuc-accent-red-light: #ff4757;
    
    /* Neutrals */
    --cuc-dark: #2b2d42;
    --cuc-darker: #1a1c2e;
    --cuc-light: #f8f9fa;
    --cuc-lighter: #ffffff;
    --cuc-gray: #6c757d;
    --cuc-light-gray: #e9ecef;

    
    --cuc-font-primary: 'Roboto', sans-serif;
    --cuc-font-secondary: 'Playfair Display', serif;
    --cuc-font-accent: 'Poppins', sans-serif;

    
    /* Gradient definitions */
    --cuc-gold-gradient: linear-gradient(135deg, var(--cuc-gold-dark), var(--cuc-gold-medium), var(--cuc-gold-light));
    --cuc-gold-gradient-reverse: linear-gradient(135deg, var(--cuc-gold-light), var(--cuc-gold-medium), var(--cuc-gold-dark));
    --cuc-gold-gradient-vertical: linear-gradient(to bottom, var(--cuc-gold-dark), var(--cuc-gold-medium), var(--cuc-gold-light));
}


/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

    /* font-size: 16px; */
}

/* ======================
   HERO SECTION - DYNAMIC
   ====================== */
/* .hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  
  background: linear-gradient(135deg, #1a1c5e 0%, #2e3192 100%);
} */

/* ======================
   HERO SECTION - DYNAMIC
   ====================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; /* ADD THIS LINE */
  text-align: center; /* ADD THIS LINE */
  background: linear-gradient(135deg, #1a1c5e 0%, #2e3192 100%);
}

/* Update the container to ensure proper centering */
.hero .container {
  width: 100%;
  max-width: 1200px; /* Match your site's container width */
  margin: 0 auto;
  padding: 0 20px;
  display: flex; /* ADD */
  flex-direction: column; /* ADD */
  align-items: center; /* ADD */
  justify-content: center; /* ADD */
  height: 100%; /* ADD */
}

/* Keep your existing .hero-content styles */
/* .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
} */



/* Particle Background */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(46, 49, 146, 0.85) 0%, 
    rgba(225, 180, 95, 0.25) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(225, 180, 95, 0.4));
}

.logo-fire {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 80px;
  /* background: url('../assets/images/fire-particle.png') center/contain no-repeat; */
  z-index: -1;
  opacity: 0.8;
}

.hero-heading {
  font-family: var(--cuc-font-accent);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* .hero-heading .text-highlight{
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-heading .text-highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--cuc-gold-gradient);
    border-radius: 2px;
} */

.text-highlight {
  background: var(--cuc-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3s infinite;
}

/* Animated Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-pulse {
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  background: var(--cuc-accent-red);
}

.btn-pulse .btn-fire {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  background: url('../assets/images/fire-icon-small.png') center/contain no-repeat;
  animation: flicker 1s infinite alternate;
}

.btn-fire{
    z-index: -100;
}

.btn-hover-gold:hover {
  background: var(--cuc-gold-gradient);
  color: var(--primary-dark) !important;
  border-color: transparent;
}

/* Scroll Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  fill: none;
  stroke: var(--cuc-gold-medium);
  stroke-width: 2;
  stroke-linecap: round;
  animation: bounceArrow 2s infinite;
}

.scroll-pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(225, 180, 95, 0.2);
  position: absolute;
  bottom: -5px;
  animation: pulse 2s infinite;
}



/* ======================
   ANIMATIONS
   ====================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes flicker {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleY(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1.1); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 180, 95, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(225, 180, 95, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 180, 95, 0); }
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* ======================
   RESPONSIVE ADJUSTMENTS
   ====================== */
@media (max-width: 992px) {
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-heading {
    font-size: clamp(2rem, 7vw, 4rem);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  
  /* (optional) Remove video on mobile for performance */
  /* .hero-video {
    display: none; 
  } */
  
  /* Show particles instead */
  /* .hero-particles {
    display: block; 
  } */
  
  .hero-logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
  
  .scroll-prompt {
    bottom: 20px;
  }
}