* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff5f7; /* Very light pink/cream */
  color: #5d4037; /* Warm brown for text */
}

/* HEADER */
header {
  background: #ff8a80; /* Bakery Pink */
  color: white;
  text-align: center;
  padding: 40px 15px;
}

/* NAV */
nav {
  background: #ff5252; /* Deeper Pink */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.menu-links a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
}

.order-btn {
  background: white;
  color: #ff5252 !important;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.nav-socials a {
  color: white;
  margin-left: 15px;
  font-size: 1.2rem;
}

/* HERO */
.hero {
  padding: 50px 20px;
  text-align: center;
  background: #ffebee;
}

/* CATEGORY SECTIONS */
.category {
  padding: 60px 20px; 
  text-align: center;
}

.category.light {
  background: #fce4ec;
}

/* ITEMS & CARDS */
.items {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 220px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; 
  padding-bottom: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;       
  height: 180px;     
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 5px 0;
  color: #d81b60;
}

.card span {
  font-weight: bold;
  color: #ff5252;
  font-size: 1.2rem;
  margin-top: 10px;
}

footer {
  background: #5d4037;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 800px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
}