/* Landing Page Styles */

:root {
    --primary-green: #8DC63F;
    --secondary-green: #58595B;
    --light-green: #A4D867;
    --bg-light: #F8FAF5;
}

/* Override container and main padding for landing page */
.l3-main {
    padding: 0 !important;
}

.l3-main .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

/* Hero Section */
.landing-hero {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 4rem;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.85) 0%, rgba(141, 198, 63, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.hero-content .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-logo-wrapper {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    height: 150px;
    width: auto;
    max-width: 100%;
    padding: 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Current Logo - White Background with Strong Glow */
.hero-logo-current {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                0 0 60px rgba(255, 255, 255, 0.3),
                0 10px 40px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-logo-current:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6),
                0 0 80px rgba(255, 255, 255, 0.4),
                0 15px 50px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary {
    background-color: var(--primary-green);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.4);
}

.btn-hero-primary:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.6);
    color: white;
}

.btn-hero-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Features Section */
.landing-features {
    background-color: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 4rem 0;
}

.feature-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.feature-section:not(:last-child) {
    margin-bottom: 3rem;
}

.feature-section:nth-child(even) {
    background-color: var(--bg-light);
}

.feature-section .row {
    margin: 0;
    width: 100%;
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Video Background Feature */
.feature-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.feature-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.1) 0%, rgba(45, 90, 39, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.feature-content {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0;
}

.feature-content-inner {
    padding: 4rem 3rem;
    width: 100%;
}

.feature-icon {
    animation: fadeIn 0.8s ease-out;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.feature-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.feature-list {
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.feature-list li {
    font-size: 1.1rem;
    color: #666;
    padding: 0.5rem 0;
}

.feature-list i {
    font-size: 1.2rem;
}

/* CTA Section */
.landing-cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 5rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 4rem;
}

.landing-cta .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.cta-description {
    font-size: 1.3rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-logo {
        height: 140px;
        padding: 15px;
        border-radius: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .feature-title {
        font-size: 2rem;
    }

    .feature-description {
        font-size: 1.1rem;
    }

    .feature-image-wrapper,
    .feature-video-wrapper {
        min-height: 400px;
    }

    .feature-content {
        min-height: 400px;
        text-align: center;
    }

    .feature-content-inner {
        padding: 3rem 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        height: 120px;
        padding: 12px;
        border-radius: 100px;
    }

    .hero-logo-wrapper {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

    .feature-image-wrapper,
    .feature-video-wrapper {
        min-height: 300px;
    }

    .feature-content {
        min-height: 300px;
    }

    .feature-content-inner {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Text Primary Green Color */
.text-primary-green {
    color: var(--primary-green) !important;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

