/* ==========================
   RESET
========================== */


	:root{
    --bg:#111111;
    --card:#1B1B1B;
    --olive:#355C4A;
    --olive-light:#4B6F5B;
    --gold:#8A6A2F;
    --gold-light:#A8833B;
    --text:#F4F1EA;
    --text-soft:#CFC8BC;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#111111;
    color:#F5F1E8;
    line-height:1.7;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;
}

/* ==========================
   LOGO
========================== */

.logo img{

    width:120px;

    transition:.3s;
}

.logo img:hover{

    transform:scale(1.05);
}

/* ==========================
   MENU
========================== */

.menu{

    display:flex;
    gap:35px;
}

.menu a{

    color:#F5F1E8;

    text-decoration:none;

    font-size:15px;

    letter-spacing:1px;

    transition:.3s;
}

.menu a:hover{

    color:#8A6A2F;
}

/* ==========================
   HERO
========================== */

.hero{

    height:100vh;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;
}

/* Overlay */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.78);
}

.overlay{

    position:relative;

    z-index:2;

    text-align:center;

    width:90%;

    max-width:900px;
}

/* ==========================
   HERO LOGO
========================== */

.hero-logo{

    width:180px;

    margin-bottom:25px;
}

/* ==========================
   TITLES
========================== */

.overlay h1{

    font-family:'Cormorant Garamond',serif;

    font-size:68px;

    color:#8A6A2F;

    letter-spacing:3px;

    margin-bottom:10px;
}

.overlay h2{

    font-size:28px;

    font-weight:300;

    margin-bottom:30px;
}

.hero-text{

    font-size:26px;

    color:#F5F1E8;

    margin-bottom:15px;
}

.hero-sub{

    color:#d8d0bf;

    font-size:18px;

    margin-bottom:40px;
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.btn{

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
}

.gold{

    background:#8A6A2F;

    color:#111;
}

.gold:hover{

    background:#d9b63a;

    transform:translateY(-3px);
}

.whatsapp{

    background:transparent;

    color:#8A6A2F;

    border:2px solid #8A6A2F;
}

.whatsapp:hover{

    background:#8A6A2F;

    color:#111;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

.logo img{

    width:90px;
}

.menu{

    gap:15px;

    font-size:14px;
}

.overlay h1{

    font-size:56px;
    line-height:1.1;
}

.overlay h2{

    font-size:20px;
}

.hero-text{

    font-size:20px;
}

.hero-sub{


    color:#d9d2c5;

    font-size:20px;

    letter-spacing:2px;

    margin-bottom:45px;
}
}

.hero-logo{

    width:250px;
    margin-bottom:35px;
}

.hero{

    min-height:85vh;

    padding-top:120px;
}

/* ==========================
   FEATURES
========================== */


.features{
    background:#111;
    padding:90px 0;
}

.features .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#1a1a1a;
    border:1px solid rgba(201,162,39,.30);
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-12px);
    border-color:#8A6A2F;
    box-shadow:0 20px 40px rgba(201,162,39,.25);
}

.feature-card h2{
    font-size:48px;
    color:#8A6A2F;
    margin-bottom:20px;
}

.feature-card p{
    color:#ddd;
    font-size:18px;
    line-height:1.6;
}
/* ==========================
   HEADER V3
========================== */

.brand{
    display:flex;
    align-items:center;
    gap:18px;
}

.company-name{
    font-size:20px;
    font-weight:600;
    color:#F4F1EA;
    white-space:nowrap;
    letter-spacing:.5px;
}

.phone-btn{
    text-decoration:none;
    color:#F4F1EA;
    border:1px solid #355C4A;
    padding:12px 22px;
    border-radius:40px;
    transition:.35s;
}

.phone-btn:hover{
    background:#355C4A;
    color:#fff;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.menu{
    margin-left:auto;
    margin-right:20px;
}
/* ==========================
   FOOTER
========================== */

.footer{

    background:#0c0c0c;

    border-top:1px solid rgba(138,106,47,.30);

    padding:60px 0 30px;
}

.footer .container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

    align-items:start;
}

.footer h3{

    color:#F4F1EA;

    font-size:24px;

    margin-bottom:12px;
}

.footer p{

    color:#bdb7aa;

    line-height:1.9;
}

.footer a{

    color:#F4F1EA;

    text-decoration:none;

    transition:.3s;
}

.footer a:hover{

    color:#8A6A2F;
}

.footer-copy{

    text-align:right;
}

@media(max-width:768px){

.footer .container{

    grid-template-columns:1fr;

    text-align:center;
}

.footer-copy{

    text-align:center;
}

}