/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* VARIABLES */
:root{
  --primary:#3E2C23;
  --secondary:#607B8F;
  --bg:#F5E9D8;
  --white:#ffffff;
  --shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* BODY */
body{
  font-family:'Segoe UI',sans-serif;
  background:var(--bg);
  color:#333;
  line-height:1.6;
}

/* LINKS (REMOVE UNDERLINE EVERYWHERE) */
a{
  text-decoration:none;
  color:inherit;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.header{
  background:var(--primary);
  padding:15px 0;
}

.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.logo{
  color:white;
  font-size:1.5rem;
  font-weight:bold;
}

/* SEARCH */
.search{
  padding:10px;
  border-radius:8px;
  border:none;
  width:220px;
}

/* HERO */
.hero{
  padding:80px 0 60px;
}

.hero-flex{
  display:flex;
  justify-content:space-between;
  gap:60px;
  align-items:center;
}

.hero h1{
  font-size:2.6rem;
  color:var(--primary);
}

.hero p{
  margin-top:15px;
  font-size:1.05rem;
  max-width:500px;
}

/* VISUAL GRID (IMPORTANT FOR CATEGORY + HERO) */
.visual-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  gap:12px;
  max-width:420px;
}

.visual-box{
  background:var(--secondary);
  color:white;
  padding:10px;
  border-radius:10px;
  text-align:center;
  font-size:13px;
  transition:0.3s;
}

.visual-box:hover{
  background:var(--primary);
  transform:translateY(-5px);
}

/* AD */
.ad{
  max-width:900px;
  margin:50px auto;
  padding:20px;
  text-align:center;
  border:1px dashed #ccc;
  border-radius:10px;
  background:white;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.card{
  background:white;
  padding:25px;
  border-radius:12px;
  text-align:center;
  color:var(--primary);
  font-weight:600;
  transition:0.3s;
  box-shadow:var(--shadow);
}

.card:hover{
  background:var(--secondary);
  color:white;
  transform:translateY(-5px);
}

/* SECTION SPACING */
.section{
  padding:70px 0;
}

/* FOOTER */
.footer{
  background:var(--primary);
  color:white;
  margin-top:50px;
}

.footer-top{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:30px;
  padding:30px 20px;
}

.footer-top a{
  color:white;
  font-size:14px;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid rgba(255,255,255,0.2);
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-flex{
    flex-direction:column;
    text-align:center;
  }

  .search{
    width:100%;
  }
}

@media(max-width:600px){
  .grid{
    grid-template-columns:1fr;
  }
}