*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:white;
    font-family:Arial, sans-serif;
}

a{
    text-decoration:none;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 80px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#d4af37;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    font-size:15px;
    opacity:0.8;
    transition:0.3s;
}

nav a:hover{
    opacity:1;
    color:#d4af37;
}

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    padding:0 80px;
    background:
    linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
    ),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:700px;
}

.mini-title{
    color:#d4af37;
    letter-spacing:3px;
    font-size:13px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-top:20px;
}

.hero p{
    margin-top:25px;
    font-size:18px;
    line-height:1.8;
    color:#cfcfcf;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn{
    padding:16px 30px;
    border-radius:4px;
    font-size:14px;
    font-weight:bold;
    transition:0.3s;
}

.btn.gold{
    background:#d4af37;
    color:black;
}

.btn.gold:hover{
    background:white;
}

.btn.dark{
    border:1px solid rgba(255,255,255,0.2);
    color:white;
}

.btn.dark:hover{
    border-color:#d4af37;
    color:#d4af37;
}

.featured{
    padding:100px 80px;
}

.section-title{
    font-size:42px;
    margin-bottom:50px;
}

.stone-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stone-card{
    background:#121212;
    border:1px solid rgba(255,255,255,0.06);
}

.stone-image{
    height:280px;
    background:
    linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.2)
    ),
    url('https://images.unsplash.com/photo-1541123437800-1bb1317badc2?q=80&w=1200&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.stone-card h3{
    padding:25px;
    font-size:22px;
}

.cta{
    padding:120px 80px;
    text-align:center;
    background:#111111;
}

.cta h2{
    font-size:54px;
}

.cta p{
    margin-top:25px;
    color:#cfcfcf;
    font-size:18px;
}

.cta .btn{
    display:inline-block;
    margin-top:40px;
}
.lang-switch{
    display:flex;
    gap:10px;
    align-items:center;
}

.lang-switch a{
    color:white;
    opacity:0.6;
    font-size:13px;
    letter-spacing:1px;
}

.lang-switch a.active{
    opacity:1;
    color:#d4af37;
}

/* WHATSAPP BUTTON */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:28px;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* QUARRY SECTION */

.quarry{
    padding:120px 80px;
    background:#0f0f0f;
}

.quarry-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.quarry-image{
    height:500px;
    background:
    linear-gradient(
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.25)
    ),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.quarry-text h2{
    font-size:56px;
    line-height:1.2;
}

.quarry-text p{
    margin-top:25px;
    color:#cfcfcf;
    line-height:1.9;
    font-size:17px;
}

/* FOOTER */

.footer{
    padding:80px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-logo{
    font-size:34px;
    color:#d4af37;
    font-weight:bold;
}

.footer-info{
    color:#bdbdbd;
    line-height:2;
}

/* MOBILE */

@media(max-width:992px){

    .navbar{
        padding:25px;
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding:40px 25px;
    }

    .hero h1{
        font-size:46px;
    }

    .section-title{
        font-size:34px;
    }

    .featured{
        padding:80px 25px;
    }

    .stone-grid{
        grid-template-columns:1fr;
    }

    .quarry{
        padding:80px 25px;
    }

    .quarry-grid{
        grid-template-columns:1fr;
    }

    .quarry-text h2{
        font-size:40px;
    }

    .cta{
        padding:80px 25px;
    }

    .cta h2{
        font-size:38px;
    }

    .footer{
        padding:50px 25px;
        flex-direction:column;
    }

}