:root {
    /* Colors */
    --nura-green: #3f5546; /* Estimated from "nurainsta", elegant dark natural green */
    --bg-light: #F7F5F0; /* Soft natural stone/linen color */
    --text-dark: #2C332D;
    --text-light: #F7F5F0;
    --accent: #B0A595;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    z-index: 100;
    display: flex;
    justify-content: center; /* Center the logo as requested */
    background: linear-gradient(to bottom, rgba(63, 85, 70, 0.4), transparent);
    backdrop-filter: blur(5px); /* Gentle glass effect */
    transition: all 0.3s ease;
}

.brand-logo {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.4s ease;
}
.brand-logo:hover {
    transform: scale(1.05);
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    padding: 120px 5% 50px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 1s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--nura-green);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #556057;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--nura-green);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(63, 85, 70, 0.2);
}

.cta-button:hover {
    background-color: #2b3b30;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(63, 85, 70, 0.3);
}

/* HERO IMAGES (Overlapping Layout) */
.hero-images {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease forwards;
}

.image-wrapper {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Overlapping configuration */
.img-1 {
    width: 60%;
    height: 70%;
    left: 0;
    top: 5%;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.img-2 {
    width: 55%;
    height: 80%;
    right: 0;
    bottom: 5%;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

/* FEATURES TEXT SECTION */
.features-section {
    padding: 100px 5%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrolling-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(63, 85, 70, 0.03); /* Very faint background text */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1000px;
    z-index: 1;
}

.feature-item {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--nura-green);
    font-style: normal;
    padding: 10px 20px;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
}

/* GREEN FOOTER / BOTTOM AREA */
.green-footer {
    background-color: var(--nura-green);
    color: var(--text-light);
    padding: 100px 5% 50px 5%;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.green-footer h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

.footer-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: normal;
    color: var(--text-light);
    margin-bottom: 20px;
}

.green-footer p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
}

.contact-placeholder {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
    opacity: 0.8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
        padding-top: 150px;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-images {
        width: 100%;
        height: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        animation: none;
    }
    
    .image-wrapper {
        position: relative;
        width: 45%;
        height: 350px;
        top: 0; left: 0; right: 0; bottom: 0;
        transform: none !important;
        animation: none !important;
    }

    .img-1, .img-2 {
        position: relative;
        width: 45%;
        height: 350px;
        top: 0; left: 0; right: 0; bottom: 0;
        animation: none !important;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 5%;
    }
    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
        padding-top: 130px;
        gap: 30px;
    }
    .brand-logo {
        height: 55px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-images {
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        margin-top: 20px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .image-wrapper {
        position: relative !important;
        width: 48% !important;
        height: 250px !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        transform: none !important;
        animation: none !important;
    }
    .img-1, .img-2 {
        position: relative !important;
        width: 48% !important;
        height: 250px !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
    
    .feature-item {
        font-size: 1.6rem;
        padding: 5px 10px;
    }
}
