/* Main Styles */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff9e6;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Navigation */
nav {
  background-color: #e8c39e;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #5c3a21;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #8b5a2b;
  background-color: #f5e8d9;
}

nav a.active {
  background-color: #d4a373;
  color: white;
}

/* Headings */
h1 {
  color: #8b5a2b;
  border-bottom: 2px solid #e8c39e;
  padding-bottom: 10px;
  text-align: center;
}

/* Image Styles - Consistent Across Site */
.croissant-image {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  border: 2px solid #e8c39e;
}

/* Homepage Grid */
.croissant-types {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}

.croissant-types div {
  flex: 1;
  min-width: 0;
  text-align: center;
  background-color: #f5e8d9;
  padding: 15px;
  border-radius: 8px;
}

/* Gallery Page */
.gallery-item {
  margin-bottom: 40px;
  text-align: center;
  background-color: #f5e8d9;
  padding: 20px;
  border-radius: 8px;
}

/* Recipe Section */
.recipe {
  background-color: #f5e8d9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.recipe h2 {
  margin-top: 0;
  color: #5c3a21;
}

/* Contact Page */
.contact-content {
  text-align: center;
  margin: 50px 0;
  font-size: 1.1em;
  background-color: #f5e8d9;
  padding: 30px;
  border-radius: 8px;
}

.contact-content a {
  color: #8b5a2b;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background-color: #e8c39e;
  border-radius: 5px;
}

.contact-content a:hover {
  background-color: #d4a373;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  color: #8b5a2b;
  font-size: 0.9em;
  padding: 15px;
  background-color: #f5e8d9;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .croissant-types {
    flex-direction: column;
  }

  .croissant-image {
    height: 220px;
  }

  nav a {
    display: block;
    margin: 5px 0;
  }
}
