/* =====================================
   SONART GROUP LLC
   Founder Edition · Build 001
===================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Segoe UI", Arial, sans-serif;
    background:#0A0A0A;
    color:#FFFFFF;
    overflow-x:hidden;
}

/* NAVBAR PREMIUM */

#navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 60px;

    background:rgba(0,0,0,.12);
    backdrop-filter:blur(14px);

    transition:.35s ease;

    z-index:999;
}

#navbar.scrolled{
    background:#0A0A0A;
    box-shadow:0 6px 25px rgba(0,0,0,.35);
}

.logo span{
    color:#D4AF37;
    font-size:34px;
    font-weight:700;
    letter-spacing:1px;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    color:#F3D67A;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:white;
}
/* ==========================
          HERO
========================== */

.hero{
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.30),rgba(0,0,0,.65)),
    url("../images/hero-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    width:90%;
    max-width:900px;
}

.hero h1{
    color:#D4AF37;
    font-size:78px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.hero h2{
    font-size:48px;
    font-weight:300;
    margin-bottom:18px;
}

.hero p{
    font-size:22px;
    color:#F3F3F3;
    margin-bottom:40px;
}

/* ==========================
        BOTONES
========================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-gold{
    display:flex;
    justify-content:center;
    align-items:center;

    width:250px;
    height:58px;

    background:#D4AF37;
    color:#111111;

    border-radius:10px;
    text-decoration:none;
    font-weight:700;

    transition:.35s;
}

.btn-gold:hover{
    background:#E6C95E;
    transform:translateY(-3px);
}

.btn-outline{
    display:flex;
    justify-content:center;
    align-items:center;

    width:220px;
    height:58px;

    border:1px solid #D4AF37;
    color:#D4AF37;

    border-radius:10px;
    text-decoration:none;
    font-weight:700;

    transition:.35s;
}

.btn-outline:hover{
    background:#D4AF37;
    color:#111111;
    transform:translateY(-3px);
}

/* ==========================
      MANIFIESTO
========================== */

section{
    padding:100px 8%;
}

section h2{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:22px;
}

section p{
    max-width:900px;
    line-height:1.8;
    font-size:20px;
}

/* ==========================
      COLECCIÓN
========================== */

.collections{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    margin-top:35px;
}

.card{
    background:#121212;
    border:1px solid rgba(212,175,55,.35);
    border-radius:16px;
    padding:28px;

    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
}

.card h3{
    color:#D4AF37;
    margin-bottom:10px;
    font-size:24px;
}

.card p{
    color:#DDDDDD;
    margin-bottom:16px;
    font-size:16px;
}

.price{
    color:white;
    font-size:24px;
    font-weight:700;
}

/* ==========================
         FOOTER
========================== */

footer{
    border-top:1px solid rgba(212,175,55,.2);
    text-align:center;
    padding:40px;
    color:#D4AF37;
}

/* ==========================
       RESPONSIVE
========================== */

@media(max-width:768px){

nav{
    padding:18px 20px;
    flex-direction:column;
    gap:10px;
}

.menu{
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:30px;
}

.hero p{
    font-size:18px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn-gold,
.btn-outline{
    width:100%;
    max-width:320px;
}

}
