/* ========================= */
/* RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#FAF9F6;
    color:#4A3D31;
    line-height:1.7;
    overflow-x:hidden;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ========================= */
/* IMAGES */
/* ========================= */

img{
    width:100%;
    display:block;
}

/* ========================= */
/* LINKS */
/* ========================= */

a{
    text-decoration:none;
    color:inherit;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,253,208,0.92);
    backdrop-filter:blur(10px);
    z-index:1000;
    padding:12px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:150px;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#C8A037;
}

/* ========================= */
/* LANGUAGE */
/* ========================= */

.lang-toggle{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:18px;
    font-weight:600;
}

.separator{
    color:#4A3D31;
}

/* ========================= */
/* MOBILE MENU */
/* ========================= */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.slide-text{
    position:absolute;
    left:8%;
    bottom:12%;
    z-index:3;
    color:white;
    max-width:700px;
}

.subtitle{
    color:#C8A037;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
    font-weight:600;
}

.slide-text h1{
    font-family:'Playfair Display',serif;
    font-size:72px;
    line-height:1.1;
    margin:15px 0;
}

.slide-text h2{
    color:#C8A037;
    font-size:30px;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.slide-text p{
    font-size:18px;
    line-height:1.9;
}

/* ========================= */
/* SECTION */
/* ========================= */

.section{
    padding:100px 0;
}

.section-subtitle{
    color:#C8A037;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:10px;
    font-weight:600;
}

.section h2{
    font-family:'Playfair Display',serif;
    font-size:42px;
    margin-bottom:50px;
    color:#4A3D31;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.about-image img{
    border-radius:18px;
    height:300px;
    object-fit:cover;
}

.about-text p{
    margin-bottom:25px;
    color:#6B5B4D;
    font-size:17px;
}

/* ========================= */
/* CARDS */
/* ========================= */

.values-grid,
.services-grid,
.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.investment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.value-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card img{
    height:260px;
    object-fit:cover;
}

.investment-grid .value-card img{
    height:350px;
}

.value-card h3{
    padding:25px 25px 10px;
    font-size:22px;
    color:#4A3D31;
}

.value-card p{
    padding:0 25px 25px;
    color:#6B5B4D;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.contact-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.contact-card p{
    color:#6B5B4D;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    background:#4A3D31;
    margin-top:80px;
    padding-top:60px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-brand{
    padding-right:30px;
}

.footer-logo{
    width:150px;
    background:#FFFDD0;
    padding:10px;
    border-radius:12px;
    margin-bottom:20px;
}

.footer-brand p{
    color:white;
    line-height:1.9;
    font-size:15px;
}

.footer-column{
    position:relative;
    padding-left:30px;
}

.footer-column::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:1px;
    height:100%;
    background:rgba(255,255,255,0.25);
}

.footer-column h3{
    color:#FFFDD0;
    margin-bottom:20px;
    font-size:18px;
}

.footer-column a{
    display:block;
    margin-bottom:14px;
    color:white;
    text-decoration:underline;
    transition:0.3s;
}

.footer-column a:hover{
    color:#C8A037;
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.15);
    text-align:center;
    padding:22px 0;
}

.footer-bottom p{
    color:white;
    font-size:14px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:fixed;
        top:70px;
        right:-100%;
        width:260px;
        background:#FFFDD0;
        flex-direction:column;
        padding:30px;
        gap:20px;
        transition:0.3s;
    }

    .nav-links.active{
        right:0;
    }

    .slide-text{
        left:50%;
        transform:translateX(-50%);
        text-align:center;
        width:90%;
    }

    .slide-text h1{
        font-size:42px;
    }

    .slide-text h2{
        font-size:22px;
    }

    .about-container,
    .values-grid,
    .services-grid,
    .investment-grid,
    .news-grid,
    .contact-info,
    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-column{
        padding-left:0;
    }

    .footer-column::before{
        display:none;
    }

}