/* ===========================
   ENIGMA COLLECTION RD
   Luxury Boutique
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
}

/*==========================
      NAVBAR
==========================*/

header{
    width:100%;
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;

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

    padding:0 8%;

    background:rgba(17,17,17,.88);
    backdrop-filter:blur(12px);

    z-index:999;
}

.logo-wrap img{
    height:58px;
    width:auto;
    display:block;
    filter:drop-shadow(0 4px 12px rgba(212,175,55,.25));
}

.logo{
    font-size:30px;
    font-weight:700;
    letter-spacing:8px;
    color:#d4af37;
}

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

.menu a{
    color:white;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.menu a:hover{
    color:#d4af37;
}

/*==========================
      HERO
==========================*/

.hero{

    min-height:100vh;

    background:
        radial-gradient(circle at center, rgba(212,175,55,.18), transparent 30%),
        linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.90)),
        url("logo-enigma.png");

    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    background-color:#111;

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

    text-align:center;

    padding:40px;

}

.hero-content{

    max-width:900px;

}

.hero p{

    color:#d4af37;

    letter-spacing:5px;

    margin-bottom:20px;

}

.hero h1{

    font-size:70px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:35px;

}

.btn{

    display:inline-block;

    background:#d4af37;

    color:#111;

    text-decoration:none;

    padding:18px 45px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(212,175,55,.35);

}

/*==========================
      INTRO
==========================*/

.intro{

    padding:100px 10%;

    background:#fff;

    color:#111;

    text-align:center;

}

.intro h2{

    font-size:42px;

    margin-bottom:15px;

}

.intro p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

/*==========================
      PRODUCTS
==========================*/

.products{

    padding:90px 8%;

    background:#f8f8f8;

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.card img{

    width:100%;

    height:340px;

    object-fit:cover;

}

.card-body{

    padding:22px;

}

.brand{

    color:#888;

    font-size:13px;

    margin-bottom:8px;

}

.name{

    font-size:21px;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

}

.price{

    font-size:25px;

    color:#d4af37;

    font-weight:700;

    margin-bottom:18px;

}

.buy{

    display:block;

    width:100%;

    text-align:center;

    padding:14px;

    background:#111;

    color:white;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;

}

.buy:hover{

    background:#d4af37;

    color:#111;

}

/*==========================
      CONTACTO
==========================*/

.contact{

    padding:120px 10%;

    background:#111;

    text-align:center;

}

.contact h2{

    font-size:45px;

    margin-bottom:20px;

}

.contact p{

    color:#bbb;

    margin-bottom:40px;

}

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

.filters{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.search-box{
    display:flex;
    justify-content:center;
    margin-bottom:25px;
}

.search-box input:focus{

    box-shadow:0 0 18px rgba(212,175,55,.30);

}

.search-box input{

    width:100%;
    max-width:650px;

    padding:18px 25px;

    border:2px solid #d4af37;

    border-radius:50px;

    outline:none;

    font-size:18px;

    transition:.3s;
}

.filters button{
    border:2px solid #d4af37;
    background:#fff;
    color:#222;

    font-size:17px;
    font-weight:700;
    letter-spacing:.4px;

    padding:14px 30px;
    border-radius:50px;

    cursor:pointer;
    transition:.3s;
}

.filters button:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,175,55,.30);
}

.filters button.active{
    background:#d4af37;
    color:#111;
    box-shadow:0 10px 25px rgba(212,175,55,.30);
}

.desc{
    color:#666;
    font-size:14px;
    line-height:1.5;
    margin-bottom:15px;
}

@media(max-width:900px){

.hero h1{

font-size:45px;

}

.menu{

display:none;

}

.logo-wrap img{
    height:46px;
    width:auto;
    display:block;
    filter:drop-shadow(0 4px 12px rgba(212,175,55,.25));
}



.hero h1{

font-size:36px;

}

.intro h2{

font-size:30px;

}

.contact h2{

font-size:32px;

}



}