body {
  font-family: "Cormorant Upright", serif;
  background: linear-gradient(135deg, #6e0902, #123447);
  margin: 0;
  color: #fff;
  overflow-x: hidden;
}

/* Background image container */
.bg-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

.bg-container img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  display: block;
}

/* Animated particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 2px rgba(110, 9, 2, 0.3);
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Overlay with text & nav */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
  z-index: 10;
  color: #facc15;
  text-shadow: 0 6px 20px rgba(110, 9, 2, 0.8);
  user-select: none;
}

.overlay h1 {
  font-size: clamp(4rem, 15vw, 16rem);
  line-height: 1;
  font-weight: 800;
  margin: 0;
  margin-top: clamp(-20rem, -50vw, -100rem);
  font-family: "Aprilia", "Cormorant Upright", serif;
  animation: glow 3s infinite alternate;
  letter-spacing: 0.1em;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px rgba(110, 9, 2, 0.8);
  }
  100% {
    text-shadow: 0 0 30px rgba(110, 9, 2, 1), 0 0 60px rgba(110, 9, 2, 0.5);
  }
}

/* IMPROVED NAVBAR STYLES */
nav {
  margin-top: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 6px 20px rgba(110, 9, 2, 0.8);
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

nav a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(110, 9, 2, 0.2), rgba(18, 52, 71, 0.2));
  border-radius: 25px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  background: linear-gradient(45deg, #6e0902, #123447);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

nav a:hover::before,
nav a:focus::before {
  opacity: 1;
}

nav a:hover::after,
nav a:focus::after {
  width: 80%;
}

nav a:hover,
nav a:focus {
  color: #facc15;
  transform: translateY(-2px);
  outline: none;
  text-shadow: 0 0 15px rgba(110, 9, 2, 0.8);
}

/* MOBILE HAMBURGER MENU */
.hamburger {
  display: none;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 30;
  width: 50px;
  height: 45px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

.hamburger-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #facc15;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(110, 9, 2, 0.5);
}

.hamburger:hover span {
  box-shadow: 0 0 15px rgba(110, 9, 2, 0.8);
  background: #fff;
}

/* ENHANCED MOBILE POPUP MENU */
.mobile-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.95), rgba(18, 52, 71, 0.95));
  z-index: 25;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  backdrop-filter: blur(20px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

/* Mobile Menu Header */
.mobile-menu-header {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 2rem;
}

.mobile-menu-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #facc15, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.mobile-menu-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

/* Mobile Menu List */
.mobile-popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin-top: 4rem;
}

.mobile-popup li {
  animation: slideInUp 0.4s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-popup li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-popup li:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-popup li:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-popup li:nth-child(4) {
  animation-delay: 0.25s;
}
.mobile-popup li:nth-child(5) {
  animation-delay: 0.3s;
}
.mobile-popup li:nth-child(6) {
  animation-delay: 0.35s;
}
.mobile-popup li:nth-child(7) {
  animation-delay: 0.4s;
}
.mobile-popup li:nth-child(8) {
  animation-delay: 0.45s;
}
.mobile-popup li:nth-child(9) {
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-popup ul a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-popup ul a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(110, 9, 2, 0.15), rgba(18, 52, 71, 0.15));
  transition: left 0.3s ease;
  z-index: -1;
}

.mobile-popup ul a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #facc15;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-popup ul a:hover::before,
.mobile-popup ul a:focus::before {
  left: 0;
}

.mobile-popup ul a:hover::after,
.mobile-popup ul a:focus::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.mobile-popup ul a:hover,
.mobile-popup ul a:focus {
  color: #facc15;
  transform: translateX(8px);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(110, 9, 2, 0.2);
  border-color: rgba(110, 9, 2, 0.3);
}

/* Enhanced Cancel Button */
.cancel-btn {
  background: linear-gradient(45deg, #6e0902, #123447);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(110, 9, 2, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.cancel-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #8b0a03, #1a4a5c);
  transition: left 0.3s ease;
  z-index: -1;
}

.cancel-btn:hover::before,
.cancel-btn:focus::before {
  left: 0;
}

.cancel-btn:hover,
.cancel-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(110, 9, 2, 0.6);
  outline: none;
}

/* Close button (X) */
.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.close-btn::before {
  transform: rotate(45deg);
}

.close-btn::after {
  transform: rotate(-45deg);
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .overlay h1 {
    margin-top: clamp(-15rem, -40vw, -25rem);
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop nav */
  nav.desktop-nav {
    display: none;
  }

  .bg-container {
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 0 15px;
  }

  .hamburger {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 40px;
  }

  .mobile-popup ul {
    max-width: 280px;
    gap: 0.6rem;
  }

  .mobile-popup ul a {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .mobile-menu-title {
    font-size: 1.6rem;
  }

  .close-btn {
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
  }
}

/* Tablet specific adjustment */
@media (min-width: 769px) and (max-width: 1024px) {
  .overlay h1 {
    margin-top: clamp(-35rem, -45vw, -55rem);
  }

  nav {
    font-size: 1rem;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
  }

  nav a {
    padding: 0.5rem 0.8rem;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .overlay h1 {
    font-size: 15rem;
    margin-top: -100rem;
  }

  nav {
    font-size: 1.2rem;
    gap: 1.2rem;
    padding: 1.2rem 2.5rem;
  }

  nav a {
    padding: 0.7rem 1.2rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  nav {
    font-size: 1.3rem;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-gradient {
  display: inline-block;
  margin-top: 1.5rem;
  padding: clamp(0.5rem, 2vw, 0.8rem) clamp(1rem, 4vw, 2rem);
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #fff;
  background: linear-gradient(45deg, #6e0902, #123447);
  box-shadow: 0 6px 15px rgba(110, 9, 2, 0.7);
  cursor: pointer;
  transition: all 0.5s ease;
  user-select: none;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}

.btn-gradient:hover {
  color: #facc15;
  background: linear-gradient(45deg, #8b0a03, #1a4a5c);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(110, 9, 2, 0.8);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}

.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(3rem, 8vw, 5rem);
  min-height: 50vh;
}

.decorative-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: clamp(100px, 20vw, 200px) solid #0f1f24;
  border-right: clamp(100px, 20vw, 200px) solid transparent;
  z-index: 1;
}

.sanket-khichy-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(200px, 40vw, 400px);
  background-color: #0f1f24;
  border-top-left-radius: clamp(60px, 15vw, 120px);
  border-top-right-radius: clamp(60px, 15vw, 120px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: clamp(300px, 50vw, 400px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  animation: fadeSlideUp 1s ease-out both;
  gap: clamp(1rem, 4vw, 2rem);
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
  }
}

.logo-container {
  width: clamp(8rem, 20vw, 12rem);
  height: clamp(8rem, 20vw, 12rem);
  background-color: white;
  border-radius: 9999px;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px 3px rgba(110, 9, 2, 0.7);
  transition: all 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px 3px rgba(110, 9, 2, 0.7);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 30px 8px rgba(18, 52, 71, 0.9);
    transform: scale(1.05);
  }
}

@media (min-width: 768px) {
  .logo-container {
    width: clamp(12rem, 25vw, 16rem);
    height: clamp(12rem, 25vw, 16rem);
  }
}

.logo-container:hover {
  box-shadow: 0 0 30px 8px rgba(18, 52, 71, 0.9);
  transform: scale(1.1);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9999px;
}

.title-date {
  text-align: center;
  flex: 1;
}

@media (min-width: 768px) {
  .title-date {
    text-align: left;
    margin-left: clamp(2rem, 5vw, 4rem);
  }
}

.main-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-color: #fff;
}

.date-text {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.sub-label {
  margin-top: 1.5rem;
  display: inline-block;
  padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 9999px;
  background: linear-gradient(45deg, #6e0902, #123447);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.1em;
  box-shadow: 0 6px 15px rgba(110, 9, 2, 0.7);
}

/* WEBSITE COLOR THEMED STATS CONTAINER */
.stats-container {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0 1rem;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }
}

.stat-card {
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.8), rgba(18, 52, 71, 0.8));
  backdrop-filter: blur(15px);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(45deg, #6e0902, #123447, #6e0902);
  border-radius: 16px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(110, 9, 2, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(110, 9, 2, 0.3);
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.9), rgba(18, 52, 71, 0.9));
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #facc15;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.2);
  color: #fff;
  text-shadow: 0 0 15px rgba(110, 9, 2, 0.8);
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(45deg, #facc15, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(110, 9, 2, 0.3);
}

.stat-card:hover .stat-number {
  background: linear-gradient(45deg, #fff, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-glow 1.5s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 10px rgba(110, 9, 2, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(110, 9, 2, 0.8), 0 0 30px rgba(18, 52, 71, 0.5);
  }
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.stat-card:hover .stat-label {
  color: #facc15;
  text-shadow: 0 0 10px rgba(110, 9, 2, 0.5);
}

main {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(3rem, 8vw, 5rem);
  text-align: center;
  animation: fadeSlideUp 1s ease-out both;
}

main p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

main p + p {
  margin-top: 2rem;
}

main p strong {
  color: #facc15;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(110, 9, 2, 0.5);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #6e0902, #123447);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: none;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #8b0a03, #1a4a5c);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* Events Section Styles */
.events-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.events-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  color: #facc15;
  text-shadow: 0 0 20px rgba(110, 9, 2, 0.8);
}

/* Hand-drawn style border for title */
.events-title::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -15px;
  right: -15px;
  bottom: 0px;
  border: 3px solid #facc15;
  border-radius: 25px;
  transform: rotate(-1deg);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
  animation: float-border 6s ease-in-out infinite;
}

@keyframes float-border {
  0%,
  100% {
    transform: rotate(-1deg) scale(1);
  }
  50% {
    transform: rotate(1deg) scale(1.02);
  }
}

.days-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .days-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.day-card {
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.8), rgba(18, 52, 71, 0.8));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Hand-drawn style border for day cards */
.day-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #facc15;
  border-radius: 15px;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.day-card::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  opacity: 0;
  transition: all 0.4s ease;
}

.day-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(110, 9, 2, 0.3);
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.9), rgba(18, 52, 71, 0.9));
}

.day-card:hover::before {
  opacity: 1;
  transform: rotate(-2deg);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

.day-card:hover::after {
  opacity: 1;
  transform: rotate(1deg);
}

.day-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #facc15;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 15px rgba(110, 9, 2, 0.8);
  transition: all 0.3s ease;
}

.day-card:hover .day-title {
  color: #fff;
  transform: scale(1.1);
  text-shadow: 0 0 25px rgba(250, 204, 21, 0.8);
}

.day-date {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.day-card:hover .day-date {
  color: #facc15;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.events-list li {
  padding: 0.5rem 0;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.events-list li:last-child {
  border-bottom: none;
}

.day-card:hover .events-list li {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.events-list li::before {
  content: "•";
  color: #facc15;
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Floating animation for cards */
.day-card:nth-child(1) {
  animation: float-1 4s ease-in-out infinite;
}

.day-card:nth-child(2) {
  animation: float-2 4s ease-in-out infinite 1s;
}

.day-card:nth-child(3) {
  animation: float-3 4s ease-in-out infinite 2s;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .events-section {
    padding: 2rem 0.5rem;
  }

  .days-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .day-card {
    padding: 1.5rem 1rem;
    min-height: 180px;
  }
}

/* Background decorative elements */
.events-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(110, 9, 2, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(18, 52, 71, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.events-section {
  position: relative;
}

/* Add some sparkle effects */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #facc15;
  border-radius: 50%;
  animation: sparkle 2s infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.sparkle:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 0.5s;
}
.sparkle:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 1s;
}
.sparkle:nth-child(4) {
  top: 40%;
  right: 15%;
  animation-delay: 1.5s;
}

/* Call to Action Section */
.cta-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.9), rgba(18, 52, 71, 0.9));
  backdrop-filter: blur(10px);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(250, 204, 21, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(110, 9, 2, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #facc15, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(250, 204, 21, 0.3);
  animation: glow-title 3s ease-in-out infinite alternate;
}

@keyframes glow-title {
  0% {
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
  }
  100% {
    text-shadow: 0 0 40px rgba(250, 204, 21, 0.6), 0 0 60px rgba(110, 9, 2, 0.3);
  }
}

.cta-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, #6e0902, #123447);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(110, 9, 2, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #8b0a03, #1a4a5c);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(110, 9, 2, 0.6);
  color: #facc15;
}

.btn-secondary {
  background: transparent;
  color: #facc15;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #facc15;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(250, 204, 21, 0.1), rgba(250, 204, 21, 0.2));
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
  border-color: #fff;
  color: #fff;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(18, 52, 71, 0.9), rgba(110, 9, 2, 0.9));
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(250, 204, 21, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(18, 52, 71, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #facc15;
  position: relative;
  display: inline-block;
  width: 100%;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #6e0902, #123447);
  border-radius: 3px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(110, 9, 2, 0.1), rgba(18, 52, 71, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(250, 204, 21, 0.2);
  border-color: rgba(250, 204, 21, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  font-size: 3rem;
  color: #facc15;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.2);
  color: #fff;
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card:hover .contact-card-title {
  color: #fff;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-card:hover .contact-info {
  color: rgba(255, 255, 255, 0.95);
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #facc15;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Floating particles animation */
.floating-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #facc15;
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle 8s infinite linear;
  pointer-events: none;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.floating-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.floating-particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
}
.floating-particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
}
.floating-particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
}
.floating-particle:nth-child(5) {
  left: 50%;
  animation-delay: 1s;
}
.floating-particle:nth-child(6) {
  left: 60%;
  animation-delay: 3s;
}
.floating-particle:nth-child(7) {
  left: 70%;
  animation-delay: 5s;
}
.floating-particle:nth-child(8) {
  left: 80%;
  animation-delay: 7s;
}
.floating-particle:nth-child(9) {
  left: 90%;
  animation-delay: 1.5s;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, rgba(18, 52, 71, 0.95), rgba(110, 9, 2, 0.95));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(110, 9, 2, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Logo Section */
.footer-brand {
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-brand {
    text-align: left;
  }
}

.footer-logo {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #6e0902, #123447);
  border: 3px solid #facc15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .footer-logo {
    margin: 0 0 1rem 0;
  }
}

.footer-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #facc15 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
}

.footer-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.6);
}

.footer-logo i {
  font-size: 2rem;
  color: #facc15;
  z-index: 1;
  position: relative;
}

.footer-brand-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .social-links {
    justify-content: flex-start;
  }
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.social-link:hover {
  background: linear-gradient(45deg, #6e0902, #123447);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
  color: #fff;
  border-color: #facc15;
}

.polarize-aims {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .polarize-aims {
    text-align: left;
  }
}

/* Footer Sections */
.footer-section {
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-section {
    text-align: left;
  }
}

.footer-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #6e0902, #123447);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #facc15;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #facc15;
  padding-left: 20px;
}

.footer-links a:hover::before {
  width: 10px;
}

/* Contact Info */
.contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .contact-info p {
    justify-content: flex-start;
  }
}

.contact-info i {
  color: #facc15;
  margin-right: 0.8rem;
  width: 16px;
  text-align: center;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #facc15;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 204, 21, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #facc15;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-content {
    padding: 2rem 1rem 1rem;
  }

  .footer-main {
    gap: 2rem;
  }

  .footer-section {
    margin-bottom: 1rem;
  }
}

/* Floating elements */
.floating-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #facc15;
  border-radius: 50%;
  opacity: 0.4;
  animation: float-dot 6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes float-dot {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.8;
  }
}

.floating-dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-dot:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.floating-dot:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}
.floating-dot:nth-child(4) {
  top: 40%;
  right: 25%;
  animation-delay: 1s;
}
