/* General Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f8f8f8;
  color: #222;
}

/* Navigation */
nav {
  background: #2c3e50;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Main Content */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  color: #2c3e50;
  margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content {
  padding: 2rem;
  margin-bottom: 2rem;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content img {
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 28px auto;
  display: block;
  border-radius: 12px;
  cursor: pointer;
}

/* Featured Cards */
.featured-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1rem auto;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: #2c3e50;
  text-decoration: none;
  font-weight: bold;
}

.card-link:hover {
  text-decoration: underline;
}

/* Food and Wine Categories */
.food-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: #f8f8f8;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.wine-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background-color: #f8f8f8;
}

.kitchen-categories {
  display: grid;
  gap: 2rem;
  background-color: #f8f8f8;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.food-category {
  margin-bottom: 2.5rem;
}

.food-category h2 {
  margin-bottom: 0.7rem;
}

.food-category img {
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.wine-category, .kitchen-category {
  margin-bottom: 3.5rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.food-category h2, .wine-category h2, .kitchen-category h2 {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.food-category img, .wine-category img, .kitchen-category img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.food-category ul, .wine-category ul, .kitchen-category ul {
  list-style-type: none;
  padding-left: 1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  background: #faf9f7;
  text-align: center;
  font-size: 1.05rem;
}

footer a {
  color: #2c3e50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-logo {
    margin-bottom: 1rem;
  }

  .navbar-links {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .kitchen-link a {
    white-space: pre-line;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .featured-cards {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .food-categories {
    grid-template-columns: 1fr;
  }

  .wine-categories {
    grid-template-columns: 1fr;
  }

  .food-category img, .wine-category img {
    width: 60px;
  }

  .section {
    padding: 1rem;
  }
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
