/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #fdf6ed; /* light beige */
  color: #3e2c23; /* dark brown text */
  line-height: 1.6;
}

/* Header */
header {
  background-color: #7b4b2a; /* rich brown */
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header .logo {
  height: 300px;          /* prominent logo */
  display: block;
  margin: 0 auto 15px;
  border-radius: 12px;    /* slightly rounded edges */
  /* box-shadow removed for a clean look */
}

/* Header text */
header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
header p {
  font-size: 1.2rem;
  font-style: italic;
}

/* Navigation */
nav {
  background: #b08968;
  padding: 0.7rem;
  text-align: center;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.2s;
}
nav a:hover {
  color: #ffe8d6;
}

/* Hero section */
.hero {
  background: url('bakery-hero.jpg') no-repeat center center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 4px #000;
  font-size: 2.2rem;
  font-weight: bold;
}

/* Containers */
.container {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.9rem;
  color: #7b4b2a;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.menu-item {
  background: #fffaf3;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.menu-item img {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: #7b4b2a;
  color: white;
  text-align: center;
  padding: 1.2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
