:root {
    --green-primary: #0B5D3B;
    --green-dark: #084a2f;
    --green-light: #1a7a52;
    --gold-primary: #62b04e;
    --gold-dark: #5a8144;
    --gold-light: #58f846;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --border-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2A4B20;
    backdrop-filter: blur(10px);
    padding: 0 5%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #2A4B20;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 163, 33, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-primary);
}

.btn-green {
    background: var(--green-primary);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('img/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: start;
    /* text-align: center; */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
    color: var(--gold-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    /* margin-left: auto;
    margin-right: auto; */
}

.hero-meta {
    display: flex;
    justify-content: start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.hero-meta-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.hero-stats {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: start;
    flex-wrap: wrap;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 15%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    font-size: 1.8rem;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Why Attend */
.why-attend {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-content h3 {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 1.5rem;
}

.why-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.benefits-list li i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(11, 93, 59, 0.6), transparent);
}

/* Themes Section */
.themes {
    background: var(--white);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.theme-card:hover::before {
    transform: scaleX(1);
}

.theme-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--green-primary);
}

.theme-card h4 {
    font-size: 1.2rem;
    color: var(--green-primary);
    margin-bottom: 0.8rem;
}

.theme-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Who Should Attend */
.attendees {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.attendees .section-header h2,
.attendees .section-header p {
    color: var(--white);
}

.attendees .section-divider {
    background: var(--gold-primary);
}

.attendees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.attendee-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.attendee-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.attendee-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
}

.attendee-item h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* Program Highlights */
.program {
    background: var(--cream);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.program-card i {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.program-card h4 {
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.program-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Registration Section */
.registration {
    background: var(--white);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.registration-info {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    position: sticky;
    top: 100px;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 1rem 0;
}

.price-tag span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.registration-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.registration-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.registration-info ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.registration-info ul li i {
    color: var(--gold-primary);
}

.registration-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--green-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-item input {
    width: auto;
    accent-color: var(--green-primary);
}

/* Payment Section */
.payment-section {
    background: var(--cream);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.payment-card h4 {
    color: var(--green-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-card h4 i {
    color: var(--gold-primary);
}

.payment-detail {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.payment-detail:last-child {
    border-bottom: none;
}

.payment-detail label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.payment-detail p {
    font-weight: 600;
    color: var(--text-dark);
}

.payment-instructions {
    background: var(--cream);
    padding: 1.2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.payment-instructions ol {
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-instructions li {
    margin-bottom: 0.4rem;
}

/* Sponsorship */
.sponsorship {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-align: center;
}

.sponsorship h2 {
    color: var(--white);
}

.sponsorship .section-divider {
    background: var(--gold-primary);
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.sponsor-benefit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.sponsor-benefit i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
}

.sponsor-benefit h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* About WiAZ */
.about {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 5%;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 5%;
    text-align: center;
}

footer .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer .social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer .social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: var(--gold-primary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--green-primary);
}

.sticky-cta-text span {
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .attendees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsorship-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-meta {
        gap: 1rem;
    }

    .why-grid,
    .registration-wrapper,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .themes-grid,
    .attendees-grid,
    .program-grid,
    .sponsorship-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-info {
        position: static;
    }

    section {
        padding: 3rem 5%;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* File Upload */
.file-upload {
    border: 2px dashed var(--border-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload:hover {
    border-color: var(--green-primary);
    background: rgba(11, 93, 59, 0.02);
}

.file-upload i {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.file-upload p {
    color: var(--text-muted);
    font-size: 0.9rem;
}