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

body{
  font-family:'Inter',sans-serif;
  background:#f7f7f7;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  background:#fff;
  border-bottom:1px solid #eee;
}

.logo a{
  text-decoration:none;
  font-family:'Playfair Display';
  font-size:28px;
  color:#111;
}

.logo span{
  color:#ff4d6d;
}

/* NAV */
.nav{
  display:flex;
  gap:25px;
}

.nav a{
  font-weight:600;
  color:#333;
  position:relative;
}

.nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#ff4d6d;
  transition:.3s;
}

.nav a:hover::after{
  width:100%;
}

/* SEARCH */
.search input{
  padding:10px 18px;
  border-radius:30px;
  border:1px solid #ddd;
}

.hero{
  text-align:center;
  padding:60px 20px;
  background:#fafafa;
}

.hero h1{
  font-size:42px;
  font-family:'Oswald', sans-serif;
  letter-spacing:1px;
  font-weight:600;
}

.hero p{
  color:#666;
  margin-top:10px;
  font-size:16px;

.category-row{
  display:flex;
  justify-content:center;
  gap:25px;
  padding:30px;
  overflow-x:auto;
}

.cat-circle img{
  width:80px;
  height:80px;
  border-radius:50%;
  border:4px solid #fff;
  box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.cat-circle{
  text-align:center;
}

.cat-circle img{
  width:90px;
  height:90px;
  border-radius:50%;
}

/* SECTION */
.section-block{
  padding:50px 40px;
}

.section-header{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
}

.section-header a{
  background:#111;
  color:#fff;
  padding:8px 14px;
  border-radius:20px;
.recipe-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.recipe-card img{
  height:220px;
  object-fit:cover;
}

/* HEART */
.heart{
  position:absolute;
  top:10px;
  right:10px;
  background:#000;
  color:#fff;
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer{
  background:#111;
  color:#fff;
  padding:60px 40px;
}

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

.footer a{
  display:block;
  color:#ccc;
  margin:6px 0;
}

/* RECIPE PAGE */

.recipe-page{
  max-width:900px;
  margin:auto;
  padding:40px 20px;
}

.recipe-hero img{
  width:100%;
  border-radius:12px;
  margin-bottom:30px;
}

.recipe-content h1{
  font-size:34px;
  font-family:'Oswald';
  margin-bottom:15px;
}

.intro{
  font-size:18px;
  color:#555;
  margin-bottom:20px;
}

.recipe-text{
  line-height:1.7;
  font-size:16px;
}

/* MOBILE */
@media(max-width:900px){
  .recipe-grid{
    grid-template-columns:repeat(2,1fr);
  }
}