* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
    overflow: hidden;
}




/* PAGE PRE LOADER */

/*------------------------------------------------------------------
    LOADER 
-------------------------------------------------------------------*/

#preloader {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11000;
    position: fixed;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #14222f;
}

.loader {
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img {
    width: 500px;
}

.box {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    background-image: none;
    background-size: auto auto;
    background-image: none;
    -webkit-animation: move 2s ease-in-out infinite both;
    animation: move 2s ease-in-out infinite both;
    animation-delay: 0s;
    background-image: url('../images/gb.png');
    background-size: 100% 100%;
}

.box:nth-child(1) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.box:nth-child(2) {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.box:nth-child(3) {
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

@-webkit-keyframes move {
    0%, 100% {
        -webkit-transform: none;
        transform: none;
    }
    12.5% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
    25% {
        -webkit-transform: translate(80px, 0);
        transform: translate(80px, 0);
    }
    37.5% {
        -webkit-transform: translate(80px, 40px);
        transform: translate(80px, 40px);
    }
    50% {
        -webkit-transform: translate(80px, 80px);
        transform: translate(80px, 80px);
    }
    62.5% {
        -webkit-transform: translate(40px, 80px);
        transform: translate(40px, 80px);
    }
    75% {
        -webkit-transform: translate(0, 80px);
        transform: translate(0, 80px);
    }
    87.5% {
        -webkit-transform: translate(0, 40px);
        transform: translate(0, 40px);
    }
}

@keyframes move {
    0%, 100% {
        -webkit-transform: none;
        transform: none;
    }
    12.5% {
        -webkit-transform: translate(40px, 0);
        transform: translate(40px, 0);
    }
    25% {
        -webkit-transform: translate(80px, 0);
        transform: translate(80px, 0);
    }
    37.5% {
        -webkit-transform: translate(80px, 40px);
        transform: translate(80px, 40px);
    }
    50% {
        -webkit-transform: translate(80px, 80px);
        transform: translate(80px, 80px);
    }
    62.5% {
        -webkit-transform: translate(40px, 80px);
        transform: translate(40px, 80px);
    }
    75% {
        -webkit-transform: translate(0, 80px);
        transform: translate(0, 80px);
    }
    87.5% {
        -webkit-transform: translate(0, 40px);
        transform: translate(0, 40px);
    }
}

/* Header Styles */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 2rem;
}

.navbar-custom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(123, 44, 191, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link-custom {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #f9c46b;
    text-decoration: none !important;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("../images/slider-image.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.7) 0%,
    rgba(255, 153, 51, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.sparkles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: #fcd34d;
}

.sparkle-1 {
  top: 5rem;
  left: 5rem;
  width: 24px;
  height: 24px;
  animation: pulse-slow 3s infinite;
}
.sparkle-2 {
  top: 10rem;
  right: 8rem;
  width: 32px;
  height: 32px;
  animation: float 4s infinite;
  animation-delay: 1s;
}
.sparkle-3 {
  bottom: 8rem;
  left: 25%;
  width: 20px;
  height: 20px;
  animation: glow 3s infinite;
  animation-delay: 2s;
}
.sparkle-4 {
  top: 33%;
  right: 25%;
  width: 28px;
  height: 28px;
  animation: pulse-slow 3s infinite;
  animation-delay: 0.5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  color: white;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-contribute {
  background: linear-gradient(135deg, #ff9933 0%, #ffd700 100%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 153, 51, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-contribute:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 153, 51, 0.6);
    color: white;
    text-decoration: none !important;
}

.btn-involved {
  background: transparent;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid #ffd700;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-involved:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  color: white;
  text-decoration: none !important;
}

/* Animations */
@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.7;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.5);
  }
}

/*         
        @keyframes pulse-slow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        } */

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

/* .animate-float {
            animation: float 3s ease-in-out infinite;
        } */

#about {
  background-color: #fff8f0;
  padding: 6rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #7b2cbf;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 3rem;
}

.info-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid #ffd700;
  margin-bottom: 2rem;
}

.info-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}

.guest-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guest-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.guest-card.border-orange {
  border-top: 3px solid #ff9933;
}

.guest-card.border-purple {
  border-top: 3px solid #7b2cbf;
}

.guest-card.border-gold {
  border-top: 3px solid #ffd700;
}

.guest-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.guest-role {
  font-size: 0.875rem;
  color: #777;
}

.gallery-img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.gallery-img-large {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 16rem;
}

.gallery-img-small {
  height: 12rem;
}

.icon-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.heart-icon {
  color: #ec4899;
  width: 1.5rem;
  height: 1.5rem;
}

.smile-icon {
  color: #ff9933;
  width: 2rem;
  height: 2rem;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.users-icon {
  color: #7b2cbf;
  width: 1.5rem;
  height: 1.5rem;
}

/* <!-- About Celebration --> */

/* Custom Animations */
/* @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse-slow {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.1); }
        } */

/* .animate-float {
            animation: float 3s ease-in-out infinite;
        } */

/* .animate-pulse-slow {
            animation: pulse-slow 3s ease-in-out infinite;
        } */

/* Section Styles */
.planned-activities-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

/* Header Styles */
.planned-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.planned-heading {
  font-size: 48px;
  font-weight: 700;
  color: #7b2cbf;
  margin-bottom: 1rem;
}

.planned-subheading {
  font-size: 22px;
  color: #555555;
}

/* Activity Card Styles */
.activity-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-card-1 {
  background-color: #fff4cc;
}

.activity-card-2 {
  background-color: #f3e5f5;
}

.activity-card-3 {
  background-color: #ffe5f0;
}

.activity-card-4 {
  background-color: #fffef0;
}

.activity-card-5 {
  background-color: #e0fff9;
}

.activity-card-6 {
  background-color: #ede7f6;
}

/* Icon Container */
.activity-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.activity-icon-box {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: white;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon-box {
  transform: scale(1.1);
}

.activity-icon-1 {
  color: #ff9933;
}
.activity-icon-2 {
  color: #7b2cbf;
}
.activity-icon-3 {
  color: #ff6b9d;
}
.activity-icon-4 {
  color: #ffd700;
}
.activity-icon-5 {
  color: #00c9a7;
}
.activity-icon-6 {
  color: #5a189a;
}

.activity-emoji {
  font-size: 2.5rem;
}

/* Card Content */
.activity-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.75rem;
}

.activity-card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

/* Prize Banner */
.prize-banner {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff9933 100%);
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.prize-banner-text {
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
  margin: 0;
}

.prize-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.prize-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: white;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-slow 3s ease-in-out infinite;
}

.prize-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background-color: white;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-slow 3s ease-in-out infinite;
  animation-delay: 1s;
}

/* <!-- Contribute Section --> */

/* Custom Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse-slow {
            animation: pulse-slow 3s ease-in-out infinite;
        } */

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Contribution Section */
.contribution-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #7b2cbf 0%, #ff9933 50%, #ffd700 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.contribution-bg-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contribution-sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
}

.contribution-sparkle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 2rem;
  height: 2rem;
}

.contribution-sparkle-2 {
  bottom: 8rem;
  right: 5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.contribution-sparkle-3 {
  top: 50%;
  left: 25%;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
}

/* Section Header */
.contribution-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.contribution-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.contribution-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Wrapper */
.contribution-content {
  position: relative;
  z-index: 10;
}

/* Contribution Cards */
.contribution-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.contribution-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contribution-card-title {
  font-size: 28px;
  font-weight: 600;
  color: #7b2cbf;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contribution-title-icon {
  width: 28px;
  height: 28px;
}

.contribution-icon-gold {
  color: #ffd700;
}

/* QR Code Section */
.contribution-qr-container {
  margin-bottom: 2rem;
}

.contribution-qr-box {
  width: 16rem;
  height: 16rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  border: 3px dashed #ffd700;
  background-color: #fff8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contribution-qr-content {
  text-align: center;
}

.contribution-qr-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.contribution-qr-label {
  font-size: 18px;
  color: #666666;
  font-weight: 600;
}

.contribution-qr-sublabel {
  font-size: 14px;
  color: #999999;
  margin-top: 0.5rem;
}

/* Contribute Button */
.contribution-btn-primary {
  width: 100%;
  padding: 1.5rem;
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #ff9933 0%, #ffd700 100%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contribution-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

/* <!-- Gallery Section Moment Of Celebration --> */

/* Custom Animations */

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Gallery Section */
.gallery-celebration-section {
  padding: 6rem 0;
  background-color: #fff8f0;
}

/* Section Header */
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gallery-camera-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #7b2cbf;
}

.gallery-heading {
  font-size: 48px;
  font-weight: 700;
  color: #7b2cbf;
  margin-bottom: 1rem;
}

.gallery-subheading {
  font-size: 20px;
  color: #555555;
}

/* Gallery Grid Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 18rem;
}

.gallery-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Border Colors */
.gallery-border-orange {
  border: 3px solid #ff9933;
}

.gallery-border-purple {
  border: 3px solid #7b2cbf;
}

.gallery-border-gold {
  border: 3px solid #ffd700;
}

/* Gallery Image */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(123, 44, 191, 0.9) 0%,
    rgba(255, 153, 51, 0.6) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Gallery Caption */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.gallery-caption-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(1rem);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption-text {
  transform: translateY(0);
}

/* Sparkle Badge */
.gallery-sparkle-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 16px;
}

.gallery-item:hover .gallery-sparkle-badge {
  opacity: 1;
}

/* <!-- Event Details Section --> */

/* Event Details Section Styles */
.event-section {
  background-color: white;
  padding: 6rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(123, 44, 191);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.25rem;
  color: rgb(85, 85, 85);
}

.event-card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.event-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.5rem);
}

.event-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(2rem);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.event-card:hover .event-glow {
  opacity: 0.4;
}

.event-glow.orange {
  background-color: rgb(255, 153, 51);
}

.event-glow.purple {
  background-color: rgb(123, 44, 191);
}

.event-glow.gold {
  background-color: rgb(255, 215, 0);
}

.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.icon-circle.orange {
  background-color: rgb(255, 244, 204);
}

.icon-circle.purple {
  background-color: rgb(243, 229, 245);
}

.icon-circle.gold {
  background-color: rgb(255, 254, 240);
}

.icon-circle svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.event-card:hover .icon-circle svg {
  transform: scale(1.1);
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(51, 51, 51);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 10;
}

.event-text {
  font-size: 1rem;
  color: rgb(102, 102, 102);
  position: relative;
  z-index: 10;
}

.sparkle-icon {
  width: 20px;
  height: 20px;
  animation: pulse-slow 2s ease-in-out infinite;
}

.sparkle-icon.medium {
  width: 24px;
  height: 24px;
  animation: glow 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
/* 
        @keyframes pulse-slow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        @keyframes glow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        } */

.announcement-text {
  font-size: 1.125rem;
  color: rgb(85, 85, 85);
  font-style: italic;
}

/* <!-- Campaign Section --> */

.campaign-hero-wrapper {
  position: relative;
  padding: 6rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgb(123, 44, 191) 0%,
    rgb(255, 153, 51) 50%,
    rgb(255, 215, 0) 100%
  );
  overflow: hidden;

  display: flex;
  align-items: center;
}

.background-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.decoration-bubble {
  position: absolute;
  border-radius: 50%;
  background-color: white;
}

.decoration-bubble-one {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
  animation: soft-pulse 3s ease-in-out infinite;
}

.decoration-bubble-two {
  bottom: 5rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  opacity: 0.2;
  animation: soft-pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

.decoration-bubble-three {
  top: 50%;
  left: 33.33%;
  width: 6rem;
  height: 6rem;
  opacity: 0.1;
  animation: gentle-float 6s ease-in-out infinite;
}

@keyframes soft-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes radiant-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  }
}

.campaign-content-container {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.header-icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.love-symbol {
  width: 2rem;
  height: 2rem;
  color: white;
  animation: soft-pulse 3s ease-in-out infinite;
}

.love-symbol-delayed {
  animation-delay: 0.5s;
}

.lamp-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: radiant-glow 2s ease-in-out infinite;
  font-size: 2rem;
}

.primary-campaign-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.campaign-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-buttons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-cta-button {
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
  min-width: 280px;
}

.hero-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-contribute-button {
  background-color: white;
  color: rgb(123, 44, 191);
}

.hero-whatsapp-button {
  background-color: rgb(37, 211, 102);
  color: white;
}

.hero-volunteer-button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-volunteer-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.celebration-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tagline-phrase {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.decorative-emoji {
  font-size: 1.25rem;
  animation: soft-pulse 2s ease-in-out infinite;
}

.decorative-emoji-alt {
  animation-delay: 0.5s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contribution-section {
    padding: 4rem 0;
  }

  .contribution-card {
    margin-bottom: 2rem;
  }
  .cta-buttons-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sparkle {
    display: none;
  }
  .navbar-custom {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .btn-contribute,
  .btn-involved {
    font-size: 16px;
    width: 100%;
    margin-bottom: 1rem;
  }

  .sparkle {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
  .planned-heading {
    font-size: 36px;
  }

  .planned-subheading {
    font-size: 18px;
  }

  .activity-card-title {
    font-size: 20px;
  }

  .prize-banner-text {
    font-size: 18px;
  }
  .contribution-title {
    font-size: 36px;
  }

  .contribution-description {
    font-size: 18px;
  }

  .contribution-card-title {
    font-size: 24px;
  }

  .contribution-qr-box {
    width: 14rem;
    height: 14rem;
  }

  .contribution-sparkle-1,
  .contribution-sparkle-2,
  .contribution-sparkle-3 {
    display: none;
  }
  .gallery-celebration-section {
    padding: 4rem 0;
  }

  .gallery-heading {
    font-size: 36px;
  }

  .gallery-subheading {
    font-size: 18px;
  }

  .gallery-item {
    height: 16rem;
  }
  .main-title {
    font-size: 2rem;
  }
  .event-section {
    padding: 3rem 1rem;
  }

  .campaign-hero-wrapper {
    padding: 4rem 1rem;
  }

  .primary-campaign-title {
    font-size: 2rem;
  }

  .campaign-description {
    font-size: 1rem;
  }

  .decoration-bubble-one,
  .decoration-bubble-two {
    width: 5rem;
    height: 5rem;
  }
  .cta-buttons-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .planned-activities-section {
    padding: 4rem 0;
  }

  .planned-heading {
    font-size: 32px;
  }

  .planned-subheading {
    font-size: 16px;
  }

  .activity-emoji {
    font-size: 2rem;
  }

  .prize-banner-text {
    font-size: 16px;
  }
  .contribution-title {
    font-size: 32px;
  }

  .contribution-description {
    font-size: 16px;
  }

  .contribution-card {
    padding: 1.5rem;
  }

  .contribution-qr-box {
    width: 12rem;
    height: 12rem;
  }

  .contribution-btn-primary {
    font-size: 16px;
  }
  .gallery-heading {
    font-size: 32px;
  }

  .gallery-subheading {
    font-size: 16px;
  }

  .gallery-item {
    height: 14rem;
  }

  .gallery-caption-text {
    font-size: 16px;
  }

  .cta-buttons-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-cta-button {
    width: auto;
  }
}
