/* ========== VARIABLES ========== */
:root {
    --navy-blue: #0a2540;
    --dark-navy: #051829;
    --gold: #d4af37;
    --light-gold: #e6c965;
    --beige: #f5f1e8;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #e8e8e8;
    --shadow: rgba(0, 0, 0, 0.15);
}

/* ========== RESET & BASE ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 0.5rem 5%;
    background: rgba(10, 37, 64, 0.98);
}

.icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.icon:hover img {
    transform: scale(1.1) rotate(5deg);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== PAGES ========== */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========== HOME PAGE ========== */
#home {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy-blue) 50%, #1a3a52 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
}

#home::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--beige);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--beige);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

/* ========== ABOUT PAGE ========== */
#about {
    background: var(--beige);
    padding: 6rem 5% 4rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 2rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 4rem;
    border-left: 5px solid var(--gold);
}

.about-intro h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.patronage {
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    color: var(--beige);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-style: italic;
}

/* Featured Sectors */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sector-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sector-card h4 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    font-weight: 600;
}

/* Objectives */
.objectives-list {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 3rem 0;
}

.objectives-list h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    background: var(--beige);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.objective-item:hover {
    transform: translateX(10px);
}

.objective-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.objective-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Invitation */
.invitation {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-blue);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.invitation h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.invitation p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Host Cities */
.host-cities {
    text-align: center;
    margin: 3rem 0;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.city-badge {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--navy-blue);
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s ease;
}

.city-badge:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* ========== COUNTDOWN PAGE ========== */
#countdown {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
  padding: 6rem 5% 4rem;
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
  padding: 4rem 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.countdown-container::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.countdown-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.countdown-container p {
  font-size: 1.2rem;
  color: var(--beige);
  margin-bottom: 2rem;
}

.countdown-path img {
  width: 280px;
  margin: 2rem auto 3rem;
  display: block;
  border-radius: 25px;
  border: 3px solid rgba(212, 175, 55, 0.6);
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.countdown-timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.time-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-unit:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.time-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.time-label {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-footer {
  font-size: 1.1rem;
  margin-top: 2rem;
  color: var(--beige);
}

.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ========== DESTINATION COUNTDOWNS ========== */
#destinations {
  background: var(--beige);
  padding: 6rem 5% 4rem;
}

.destinations-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.destinations-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.timers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.destination-timer {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-timer:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.destination-timer h3 {
  color: var(--navy-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.countdown {
  font-size: 1.2rem;
  color: var(--text-dark);
  background: var(--beige);
  border-radius: 10px;
  padding: 1rem;
  display: inline-block;
  letter-spacing: 2px;
}

.countdown span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .countdown-timer {
    gap: 1rem;
  }

  .time-unit {
    padding: 1rem 1.5rem;
    min-width: 80px;
  }

  .time-number {
    font-size: 2rem;
  }

  .countdown-container h2 {
    font-size: 2rem;
  }
}

/* ========== GALLERY PAGE ========== */
#gallery {
    background: var(--beige);
    padding: 6rem 5% 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    font-size: 2.5rem;
    color: var(--navy-blue);
    font-weight: 700;
}

/* ========== TESTIMONIALS PAGE ========== */
#testimonials {
    background: var(--white);
    padding: 6rem 5% 4rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

/* ========== SPONSORS PAGE ========== */
#sponsors {
    background: var(--navy-blue);
    padding: 6rem 5% 4rem;
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsors-container .section-header h2 {
    color: var(--gold);
}

.sponsors-container .section-header p {
    color: var(--beige);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.sponsor-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.sponsor-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-blue);
}

/* ========== CONTACT PAGE ========== */
#contact {
    background: var(--beige);
    padding: 6rem 5% 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.6;
}

.map-container {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    margin-top: 2rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-style: italic;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark-navy);
    color: var(--text-light);
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.site-footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 37, 64, 0.98);
        transition: left 0.3s ease;
        padding: 2rem 0;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .main-nav li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-unit {
        padding: 1.5rem 2rem;
        min-width: 100px;
    }

    .time-number {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem 3%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .about-intro,
    .contact-form {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }
}
/* ========== MAP STYLES ========== */
.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 10;
}

/* ========== END OF STYLE.CSS ========== */
