@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --main-bg: #fcf8f3;
  --accent: #f2e4d5;
  --brown: #6a4b2c;
  --brown-light: #a88a6b;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--main-bg);
  color: var(--brown);
  font-family: var(--font-body);
  min-height: 100%;
}

/* HEADER */
header.hero {
  background: var(--accent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  gap: 2rem;
}

.hero-logo img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px #e0e0e0;
}

.hero-text {
  max-width: 500px;
}
.hero-text h1 {
  font-family: var(--font-title);
  font-size: 2.7rem;
  margin: 0;
  letter-spacing: 1px;
}
.hero-text h2 {
  font-size: 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--brown-light);
}
.hero-text p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: var(--brown);
}

/* NAV */
nav {
  background: var(--brown);
  padding: 0;
}
nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
nav li {
  margin: 0 1.5rem;
}
nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 0;
  letter-spacing: 1px;
  transition: color 0.2s;
}
nav a:hover,
nav a:focus,
nav a.active {
  color: var(--brown-light);
  text-decoration: underline;
}

/* MAIN LAYOUT */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* MENU SECTION */
.menu-section {
  background: var(--accent);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px #e0e0e0;
  padding: 2rem 2.5rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.menu-section h2 {
  font-family: var(--font-title);
  font-size: 2.1rem;
  margin-top: 0;
  margin-bottom: 1.7rem;
  color: var(--brown);
  text-align: center;
  letter-spacing: 0.5px;
}

.menu-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.menu-table {
  font-size: 1.06rem;
  min-width: 270px;
  max-width: 440px;
}
.menu-table h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--brown-light);
  margin: 1.3rem 0 0.7rem 0;
}
.menu-table ul {
  list-style: none;
  margin: 0 0 0.7rem 0;
  padding: 0;
}
.menu-table li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.27em 0;
  border-bottom: 1px dotted #dbc8b7;
}
.menu-table li span {
  color: var(--brown-light);
  font-weight: 700;
  margin-left: 1.6em;
  font-size: 1em;
}
.menu-table li:last-child {
  border-bottom: none;
}
.menu-table li:only-child {
  border-bottom: none;
}
.menu-order {
  text-align: center;
  margin-top: 1.7rem;
}
.menu-order a {
  color: var(--brown);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}
.menu-order a:hover,
.menu-order a:focus {
  color: var(--brown-light);
}

/* ABOUT SECTION */
.about-section {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #ece4dc;
  padding: 2rem 2.5rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.about-section h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--brown);
  margin: 0 0 1.2rem 0;
  letter-spacing: 0.4px;
  text-align: center;
}
.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.about-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px #e0e0e0;
  margin-top: 0.3em;
}
.about-content > div {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 650px;
}
.about-content p {
  font-size: 1.08rem;
  margin-top: 0;
  margin-bottom: 1.2em;
  line-height: 1.5;
  color: var(--brown);
}

/* CONTACT SECTION */
.contact-section {
  background: var(--accent);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px #e0e0e0;
  padding: 2rem 2.5rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.contact-section h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--brown);
  margin: 0 0 1.2rem 0;
  letter-spacing: 0.4px;
  text-align: center;
}
.contact-info {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.06rem;
}
.contact-info a {
  color: var(--brown);
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-info a:hover,
.contact-info a:focus {
  color: var(--brown-light);
}

/* CONTACT FORM */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 1.2rem;
}
#contactForm label {
  font-weight: 700;
  margin-bottom: 0.2rem;
}
#contactForm input, #contactForm textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.5em;
  border: 1px solid #dbc8b7;
  border-radius: 0.4em;
  background: #fff;
  resize: vertical;
}
#contactForm textarea {
  min-height: 70px;
}
#contactForm button {
  background: var(--brown);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 0.4em;
  padding: 0.7em;
  font-size: 1.08rem;
  cursor: pointer;
  margin-top: 0.6em;
  transition: background 0.2s;
}
#contactForm button:hover,
#contactForm button:focus {
  background: var(--brown-light);
}
#formMessage {
  color: var(--brown);
  font-size: 1em;
  text-align: center;
  margin-top: 0.7rem;
}

/* FOOTER */
footer {
  background: var(--accent);
  padding: 1.1rem 0;
  margin-top: 2.5rem;
  text-align: center;
}
.footer-content {
  font-size: 1rem;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  main {
    padding: 1rem 0.5rem;
  }
  .about-section,
  .contact-section,
  .menu-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .about-logo {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 700px) {
  .menu-section,
  .about-section,
  .contact-section {
    padding: 1.2rem 0.2rem 1.3rem 0.2rem;
  }
  main {
    padding: 1rem 0.2rem;
  }
  .menu-content {
    gap: 1.2rem;
  }
}