/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#F8F5EF;
    color:#444;
    line-height:1.6;
}

/* =========================
   COLOR SYSTEM
========================= */

:root{

--beige:#F3E8D3;
--cream:#FAF7F2;
--khaki:#CDBA96;
--tan:#D2B48C;
--camel:#C19A6B;
--brown:#7A5A43;
--taupe:#8B7E74;

--white:#ffffff;
--lightgray:#EAEAEA;
--gray:#808080;
--dark:#333;
}

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(250,247,242,0.95);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.logo{
    font-size:26px;
    font-weight:700;
    letter-spacing:3px;
    color:var(--brown);
}

nav a{
    text-decoration:none;
    margin-left:25px;
    color:var(--dark);
    transition:0.3s;
    font-weight:500;
}

nav a:hover{
    color:var(--camel);
}

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

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 10%;
    background:linear-gradient(rgba(0,0,0,0.25),rgba(0,0,0,0.25)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?w=1600") center/cover;
    color:white;
}

.hero h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}

/* =========================
   BUTTON
========================= */

.btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 35px;
    background:var(--camel);
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:0.3s;
    font-weight:500;
}

.btn:hover{
    background:var(--brown);
    transform:translateY(-3px);
}

/* =========================
   SECTION TITLE
========================= */

.title{
    text-align:center;
    font-size:36px;
    margin-bottom:50px;
    color:var(--brown);
}

/* =========================
   GRID SYSTEM
========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* =========================
   PRODUCT CARD
========================= */

.card{
    background:var(--white);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card h3{
    margin-bottom:10px;
}

.price{
    color:var(--camel);
    font-weight:600;
    margin-top:10px;
}

/* =========================
   FILTER BAR
========================= */

.filter-bar{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    margin-bottom:40px;
}

.filter-bar input,
.filter-bar select{
    padding:10px 15px;
    border-radius:25px;
    border:1px solid var(--lightgray);
    outline:none;
    background:white;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter{
    background:var(--beige);
    text-align:center;
    padding:70px 20px;
    border-radius:25px;
}

.newsletter input{
    padding:12px;
    width:280px;
    max-width:100%;
    border:none;
    border-radius:25px;
    margin-top:15px;
}

.newsletter button{
    padding:12px 25px;
    border:none;
    border-radius:25px;
    background:var(--brown);
    color:white;
    cursor:pointer;
}

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

footer{
    background:var(--dark);
    color:#ddd;
    padding:60px 8%;
    margin-top:50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}

footer h4{
    color:white;
    margin-bottom:15px;
}

footer a{
    display:block;
    color:#bbb;
    text-decoration:none;
    margin-bottom:8px;
    transition:0.3s;
}

footer a:hover{
    color:white;
}

/* =========================
   SOCIAL ICONS
========================= */

.social{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.social div{
    width:40px;
    height:40px;
    background:#444;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

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

@media(max-width:768px){

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

nav{
    display:none;
}

}
