/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1c1918;
  overflow-x: hidden;
  background-color: #faf7f7;
}

/* Magical CSS Variables - Wicked Theme */
:root {
  /* Primary Adventuria Colors */
  --adventuria-green: #98d98a;
  --adventuria-pink: #bb2f6c;

  /* Supporting Colors */
  --dark-charcoal: #1c1918;
  --mystic-purple: #4d4672;
  --ocean-blue: #2f6388;
  --slate-blue: #536d87;
  --pearl-white: #faf7f7;

  /* Green Family */
  --forest-dark: #2c612d;
  --sage-green: #5a8953;
  --mint-light: #c3d792;
  --earth-brown: #d8a788;

  /* Pink Family */
  --rose-bright: #d062a2;
  --blush-light: #ffb7d4;
  --pink-whisper: #f8e2ed;

  /* Accent Colors */
  --cream-rose: #e8bfc0;
  --golden-sun: #f7e486;
  --butter-cream: #f6ebaa;
  --ivory-light: #fdf5d9;

  /* Magical Effects */
  --magic-glow: 0 0 20px rgba(152, 217, 138, 0.3);
  --witch-shadow: 0 0 15px rgba(187, 47, 108, 0.2);
  --mystical-gradient: linear-gradient(
    135deg,
    var(--adventuria-green) 0%,
    var(--adventuria-pink) 100%
  );
}

/* Magical Floating Ornaments */
.magical-ornaments {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.floating-ornament {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.ornament-1 {
  top: 10%;
  left: 5%;
  animation: float1 8s infinite;
  animation-delay: 0s;
}

.ornament-2 {
  top: 20%;
  right: 10%;
  animation: float2 6s infinite;
  animation-delay: 1s;
}

.ornament-3 {
  top: 60%;
  left: 8%;
  animation: float3 10s infinite;
  animation-delay: 2s;
}

.ornament-4 {
  top: 70%;
  right: 15%;
  animation: float4 7s infinite;
  animation-delay: 3s;
}

.ornament-5 {
  top: 5%;
  left: 50%;
  animation: float5 9s infinite;
  animation-delay: 4s;
}

.ornament-6 {
  top: 30%;
  left: 20%;
  animation: sparkleFloat 5s infinite;
  animation-delay: 0.5s;
}

.ornament-7 {
  top: 80%;
  left: 30%;
  animation: float6 8s infinite;
  animation-delay: 2.5s;
}

.ornament-8 {
  top: 40%;
  right: 5%;
  animation: butterflyFloat 6s infinite;
  animation-delay: 1.5s;
}

.ornament-9 {
  top: 85%;
  right: 8%;
  animation: petalFloat 7s infinite;
  animation-delay: 3.5s;
}

.ornament-10 {
  top: 15%;
  left: 80%;
  animation: wandFloat 9s infinite;
  animation-delay: 2s;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -15px) rotate(5deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8px, -20px) scale(1.1);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -10px) rotate(-3deg);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-12px, -18px) rotate(8deg);
  }
}

@keyframes float5 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(5px, -25px) rotate(-5deg);
  }
}

@keyframes float6 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -12px) rotate(10deg);
  }
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 1;
  }
}

@keyframes butterflyFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, -20px) rotate(-3deg);
  }
  75% {
    transform: translate(20px, -5px) rotate(8deg);
  }
}

@keyframes petalFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-8px, -15px) rotate(45deg) scale(1.2);
  }
}

@keyframes wandFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, -20px) rotate(15deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-charcoal);
  position: relative;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--mystical-gradient);
  border-radius: 2px;
  box-shadow: var(--magic-glow);
}

.section-title::before {
  content: "✨";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.7;
}

.section-title:hover::before {
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Magical Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--mystical-gradient);
  color: var(--pearl-white);
  box-shadow: var(--witch-shadow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(187, 47, 108, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--adventuria-pink);
  border: 2px solid var(--adventuria-pink);
}

.btn-secondary:hover {
  background: var(--adventuria-pink);
  color: var(--pearl-white);
  transform: translateY(-2px);
  box-shadow: var(--witch-shadow);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--adventuria-pink);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--mystical-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--mystical-gradient);
  color: var(--pearl-white) !important;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--witch-shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(187, 47, 108, 0.4);
  filter: brightness(1.1);
}

.cta-button::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section - Magical Adventuria */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--pearl-white);
  padding: 100px 20px 50px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mystical-gradient);
  z-index: -3;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H1.png")
      center/cover,
    url("../Asset OH FK UI 2025/Background Horizontal/H2.png") center/cover;
  background-blend-mode: multiply;
  opacity: 0.3;
  z-index: 1;
  animation: mysticalFloat 20s ease-in-out infinite;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      var(--adventuria-green) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      var(--adventuria-pink) 0%,
      transparent 50%
    );
  opacity: 0.2;
  z-index: 2;
  animation: magicalGlow 15s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(28, 25, 24, 0.3) 0%,
    rgba(77, 70, 114, 0.2) 50%,
    rgba(28, 25, 24, 0.3) 100%
  );
  z-index: -1;
}

@keyframes mysticalFloat {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-5px);
  }
  50% {
    transform: translateX(5px) translateY(-10px);
  }
  75% {
    transform: translateX(10px) translateY(5px);
  }
}

@keyframes magicalGlow {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.4;
  }
}

.hero-content {
  max-width: 800px;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(152, 217, 138, 0.3);
  position: relative;
}

.title-main {
  display: block;
  font-size: 3rem;
  font-family: "Cinzel", serif;
  color: var(--pearl-white);
  letter-spacing: 1px;
  position: relative;
}

.title-main::after {
  content: "🔮";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.title-theme {
  display: block;
  font-size: 5rem;
  background: linear-gradient(
    45deg,
    var(--golden-sun),
    var(--adventuria-green),
    var(--adventuria-pink),
    var(--blush-light)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Cinzel", serif;
  font-weight: 700;
  margin-top: 0.5rem;
  animation: magicalText 4s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(247, 228, 134, 0.5);
  position: relative;
}

.title-theme::before {
  content: "✨";
  position: absolute;
  left: -60px;
  top: 20%;
  font-size: 2rem;
  animation: sparkleLeft 2s ease-in-out infinite;
}

.title-theme::after {
  content: "🌙";
  position: absolute;
  right: -60px;
  top: 20%;
  font-size: 2rem;
  animation: sparkleRight 2.5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-70%);
  }
}

@keyframes magicalText {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes sparkleLeft {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 1;
  }
}

@keyframes sparkleRight {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3) rotate(-180deg);
    opacity: 1;
  }
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.hero-dates {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.date-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(152, 217, 138, 0.3),
    rgba(187, 47, 108, 0.3)
  );
  padding: 1rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  box-shadow: var(--magic-glow);
  position: relative;
  overflow: hidden;
}

.date-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.date-item:hover::before {
  left: 100%;
}

.date-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(152, 217, 138, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Countdown Section */
.countdown-section {
  width: 100%;
  margin-top: 4rem;
}

.countdown-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.countdown-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.countdown-item {
  background: linear-gradient(
    135deg,
    rgba(152, 217, 138, 0.15),
    rgba(187, 47, 108, 0.15)
  );
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--magic-glow);
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: "⏳";
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.countdown-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--pearl-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.time-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 0.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 70px;
}

.time-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    45deg,
    var(--golden-sun),
    var(--adventuria-green)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(247, 228, 134, 0.3);
}

.time-label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--pearl-white);
  opacity: 0.9;
  font-weight: 500;
}

/* About Section - Magical */
.about {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--pearl-white) 0%,
    var(--ivory-light) 50%,
    var(--pink-whisper) 100%
  );
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H3.png")
    center/cover;
  opacity: 0.05;
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
  text-align: justify;
}

.about-image {
  text-align: center;
}

.theme-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* What's On Section - Magical */
.whats-on {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--pearl-white) 0%,
    var(--mint-light) 50%,
    var(--ivory-light) 100%
  );
  position: relative;
}

.whats-on::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H7.png")
    center/cover;
  opacity: 0.08;
  z-index: 1;
}

.whats-on .container {
  position: relative;
  z-index: 2;
}

/* Featured Activity - Full Width */
.featured-activity {
  margin-bottom: 3rem;
}

.featured-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    var(--adventuria-green) 0%,
    var(--adventuria-pink) 100%
  );
  color: white;
  border: none;
  box-shadow: 0 15px 40px rgba(152, 217, 138, 0.4);
}

.featured-card::before {
  background: rgba(255, 255, 255, 0.2);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(152, 217, 138, 0.5);
}

.featured-card .activity-icon i {
  color: white;
  font-size: 3rem;
}

.featured-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: linear-gradient(
    135deg,
    var(--pearl-white) 0%,
    var(--ivory-light) 100%
  );
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(152, 217, 138, 0.2);
  border: 2px solid rgba(152, 217, 138, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mystical-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.activity-card:hover::before {
  transform: scaleX(1);
}

.activity-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(152, 217, 138, 0.3);
  border-color: var(--adventuria-green);
}

.activity-icon {
  font-size: 3rem;
  background: var(--mystical-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-charcoal);
  font-weight: 600;
}

.activity-card p {
  color: var(--mystic-purple);
  line-height: 1.6;
  font-weight: 400;
}

/* Teaser Section - Magical */
.teaser {
  padding: 80px 0;
  background: var(--mystical-gradient);
  color: var(--pearl-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.teaser::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H4.png")
    center/cover;
  opacity: 0.1;
  z-index: 1;
}

.teaser .container {
  position: relative;
  z-index: 2;
}

.teaser-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.teaser-placeholder {
  margin-top: 3rem;
  opacity: 0.8;
}

.teaser-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

/* Events Section - Magical */
.events {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--ivory-light) 0%,
    var(--butter-cream) 50%,
    var(--cream-rose) 100%
  );
  position: relative;
}

.events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H5.png")
    center/cover;
  opacity: 0.05;
  z-index: 1;
}

.events .container {
  position: relative;
  z-index: 2;
}

.event-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2rem;
  color: var(--dark-charcoal);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-weight: 600;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--mystical-gradient);
  border-radius: 2px;
  box-shadow: var(--magic-glow);
}

.category-title::before {
  content: "🌟";
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.8;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-icon {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.event-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.event-card p {
  color: #666;
  line-height: 1.6;
}

.main-event-card {
  background: var(--mystical-gradient);
  color: var(--pearl-white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(187, 47, 108, 0.3);
  position: relative;
  overflow: hidden;
}

.main-event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H6.png")
    center/cover;
  opacity: 0.1;
  z-index: 1;
}

.main-event-card > * {
  position: relative;
  z-index: 2;
}

.main-event-card .event-icon {
  color: var(--golden-sun);
  filter: drop-shadow(0 0 10px rgba(247, 228, 134, 0.5));
}

.main-event-card h4 {
  color: var(--pearl-white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-event-card p {
  color: rgba(250, 247, 247, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.event-dates {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.event-date {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Event Rewind Section - Magical */
.event-rewind {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--cream-rose) 0%,
    var(--pink-whisper) 50%,
    var(--blush-light) 100%
  );
  position: relative;
}

.event-rewind::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H8.png")
    center/cover;
  opacity: 0.1;
  z-index: 1;
}

.event-rewind .container {
  position: relative;
  z-index: 2;
}

.rewind-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.rewind-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rewind-year {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  min-width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rewind-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.rewind-content p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Section - Magical */
.faq {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--butter-cream) 0%,
    var(--golden-sun) 30%,
    var(--ivory-light) 100%
  );
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H10.png")
    center/cover;
  opacity: 0.06;
  z-index: 1;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0;
}

.faq-question i {
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Order Now Section - Magical Adventure */
.order-now {
  padding: 80px 0;
  background: var(--mystical-gradient);
  color: var(--pearl-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H2.png")
    center/cover;
  opacity: 0.15;
  z-index: 1;
}

.order-now .container {
  position: relative;
  z-index: 2;
}

.order-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.order-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Section - Magical */
.contact {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--sage-green) 0%,
    var(--mint-light) 50%,
    var(--pearl-white) 100%
  );
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H1.png")
    center/cover;
  opacity: 0.08;
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 2rem;
  color: #667eea;
  min-width: 60px;
  text-align: center;
}

.contact-details h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  font-size: 1.1rem;
}

.social-media h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.5rem;
  min-width: 30px;
}

/* About Us Section - Magical */
.about-us {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--earth-brown) 0%,
    var(--cream-rose) 50%,
    var(--ivory-light) 100%
  );
  position: relative;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H5.png")
    center/cover;
  opacity: 0.1;
  z-index: 1;
}

.about-us .container {
  position: relative;
  z-index: 2;
}

.about-us-content {
  text-align: center;
}

.organogram-placeholder {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.organogram-placeholder i {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.organogram-placeholder p {
  font-size: 1.2rem;
  color: #666;
}

/* Footer - Magical */
.footer {
  background: linear-gradient(
    135deg,
    var(--dark-charcoal) 0%,
    var(--mystic-purple) 100%
  );
  color: var(--pearl-white);
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Asset OH FK UI 2025/Background Horizontal/H9.png")
    center/cover;
  opacity: 0.05;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.footer-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-text p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--adventuria-green);
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--adventuria-green);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--mystical-gradient);
  color: var(--pearl-white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: var(--magic-glow);
}

.footer-social a:hover {
  background: var(--adventuria-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(187, 47, 108, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Back to Top Button - Magical */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--mystical-gradient);
  color: var(--pearl-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--witch-shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(187, 47, 108, 0.4);
  filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .title-main {
    font-size: 2rem;
  }

  .title-theme {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-dates {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .countdown-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown {
    gap: 0.5rem;
  }

  .time-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-dates {
    flex-direction: column;
    gap: 1rem;
  }

  .rewind-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .rewind-year {
    min-width: auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }
}

/* Magical Ornaments Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-ornament {
    font-size: 1.5rem;
    opacity: 0.4;
  }

  .ornament-3,
  .ornament-4,
  .ornament-7,
  .ornament-9 {
    display: none; /* Hide some ornaments on mobile for cleaner look */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .floating-ornament {
    font-size: 1.2rem;
    opacity: 0.3;
  }

  .hero {
    padding: 120px 15px 30px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .title-main {
    font-size: 1.5rem;
  }

  .title-theme {
    font-size: 2.5rem;
  }

  .countdown-item {
    padding: 1.5rem;
  }

  .time-number {
    font-size: 1.5rem;
  }

  .time-label {
    font-size: 0.8rem;
  }

  .activity-card,
  .event-card {
    padding: 1.5rem;
  }

  .main-event-card {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

/* Animation Classes - Only apply when JavaScript is loaded */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.js-loaded .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}

.js-loaded .slide-in-left:not(.visible) {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}

.js-loaded .slide-in-right:not(.visible) {
  opacity: 0;
  transform: translateX(50px);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Ensure critical content is always visible as fallback */
.about-content,
.activities-grid,
.events-grid,
.faq-container,
.contact-content {
  opacity: 1 !important;
  transform: none !important;
}

/* Loading Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Gradient Text Animation */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient {
  background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
