:root {
    --primary-color: #2E5D3A;
    /* Forest Green */
    --secondary-color: #8D6E63;
    /* Earthy Brown */
    --accent-color: #F9A825;
    /* Gold/Orange */
    --bg-color: #F5F5F0;
    /* Soft Beige/Cream */
    --text-color: #333;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Helper Classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(249, 168, 37, 0.4);
}

.btn-primary:hover {
    background-color: #e6910e;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: auto;
    background: transparent;
    display: block;
    text-align: center;
    padding-bottom: 20px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background-color: #000;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
    object-fit: contain;
    margin: 0 auto;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: none;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content .tag {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-dates {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--text-color);
}

/* Intro Section */
.intro {
    padding: 60px 20px;
    text-align: center;
}

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-card {
    background: var(--white);
    padding: 20px;
    /* Reduced from 30px */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.detail-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background-color: #e8f5e9;
    /* Light Green Tint */
    padding: 60px 0;
}

.features h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.feature-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-list li {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-list li .check {
    color: var(--primary-color);
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Facilitators Section */
.facilitators {
    padding: 80px 20px;
    text-align: center;
}

.facilitators h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

.facilitator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.facilitator-card {
    background: var(--white);
    padding: 10px 10px 25px;
    border-radius: 200px 200px 20px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.facilitator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facilitator-card .img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.facilitator-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facilitator-card:hover img {
    transform: scale(1.1);
}

.facilitator-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.facilitator-card p {
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.pricing h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-alert {
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.4);
    animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    color: var(--text-color);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium {
    border: 3px solid var(--accent-color);
}

.pricing-card h4 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card .early-bird {
    color: var(--accent-color);
    font-weight: 600;
}

.registration-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #1a3c26;
    /* Darker Green */
    color: #ccc;
    padding: 60px 20px 20px;
    text-align: center;
}

.contact-info h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--accent-color);
}

.contact-info .highlight {
    margin-top: 20px;
    color: var(--white);
    font-weight: 500;
}

.copyright {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
/* Compact & Responsive Adjustments */
@media (max-width: 768px) {

    /* Global Adjustments */
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.8rem !important;
    }

    /* Hero Section Mobile Adjustments */
    .hero-image-wrapper {
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .hero-dates {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    /* Intro Section */
    .intro {
        padding: 40px 15px;
    }

    .intro-text h3 {
        font-size: 1.6rem;
    }

    .intro-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .details-grid {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .detail-card .icon {
        margin-bottom: 0;
        margin-right: 20px;
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
        margin-top: 5px;
    }

    .detail-card .text-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .detail-card h4 {
        margin-bottom: 5px;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .detail-card p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.4;
        color: #555;
    }

    /* Features Section */
    .features {
        padding: 40px 0;
    }

    .feature-list {
        gap: 10px;
    }

    .feature-list li {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* Facilitators Section */
    .facilitators {
        padding: 40px 15px;
    }

    .facilitator-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .facilitator-card {
        padding: 8px 8px 15px;
    }

    .facilitator-card h4 {
        font-size: 1.1rem;
    }

    .facilitator-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Pricing Section */
    .pricing {
        padding: 40px 15px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
        padding: 25px;
    }

    .pricing-card h4 {
        font-size: 1.2rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    /* Footer */
    footer {
        padding: 40px 15px 15px;
    }

    .floating-btn {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        justify-content: center;
    }
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.05);
    background-color: #e6910e;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(249, 168, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0);
    }
}

/* General Compactness (Desktop) */
.hero-image-wrapper {
    margin-bottom: 15px;
    /* Reduced from 30px */
}

.intro {
    padding: 50px 20px;
    /* Reduced from 60px */
}

.facilitators,
.pricing {
    padding: 60px 20px;
    /* Reduced from 80px */
}

.section-subtitle {
    margin-bottom: 30px;
    /* Reduced from 50px */
}