/* Fonts and resets */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Open+Sans:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #FFF8F0;
  color: #4E342E;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Dancing Script', cursive;
  margin: 0;
  color: #4E342E;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Container & Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background-color: #FFF8F0;
  padding: 2rem 0;
  border-bottom: 2px solid #A1887F;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  color: #4E342E;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: #4E342E;
  position: relative;
}

.nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  background: #C5E1A5;
  width: 0%;
  transition: width 0.3s ease;
  margin-top: 5px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero */
.hero {
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem;
  color: white;
  text-align: center;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 12px;
  color: white;
}
.hero-text h2,
.hero-text p,
.hero-text a {
  color: white !important;
}


.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #A1887F;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #6D4C41;
}

/* Sections */
section {
  padding: 4rem 1rem;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #5D4037;
}

/* Menu Styling */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #D7CCC8;
  padding-bottom: 0.5rem;
}

.menu-category ul {
  max-width: 600px;
  margin: 0 auto;
}

.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #D7CCC8;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fefcf9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 1.5rem;
  background-color: #A1887F;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #6D4C41;
}
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-height: 500px; /* Limit portrait height */
  object-fit: cover;
}
.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.about-gallery img {
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-gallery {
    flex-direction: row;
    justify-content: center;
  }
}
.about-carousel {
  max-width: 600px;
  margin: 3rem auto;
}

.glide__slide img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer {
  background-color: #FBE9E7;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #5D4037;
  border-top: 2px solid #A1887F;
}
