/* Color Palette & Typography Variables based on logo.png */
:root {
  --bg-color: #eae6df;
  --bg-darker: #dfdad1;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --accent: #1a1a1a;
  --border-color: rgba(26, 26, 26, 0.15);

  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.accent-text {
  color: var(--accent);
}

.bg-darker {
  background-color: var(--bg-darker);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(234, 230, 223, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* UPDATED: Increased header logo size from 40px to 70px */
.nav-logo {
  height: 70px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem 40px;
}

.hero-logo {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-style: italic;
  font-family: var(--font-heading);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent);
  color: var(--bg-color);
}

/* Sections */
section {
  padding: 8rem 0;
}

/* About Section */
.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-column p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  min-height: 400px;
  background-color: #d5d0c6;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Concept Section */
.intro-text {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.concept-card {
  padding: 2.5rem;
  background-color: var(--bg-color);
  border-top: 2px solid var(--accent);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.concept-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.concept-card p {
  color: var(--text-muted);
}

/* UPDATED: Centered concept images using Flexbox */
.concept-image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.concept-image-row img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* UPDATED: Constrained the max-width so they don't stretch excessively */
.small-img {
  min-height: 300px;
  width: 100%;
  max-width: 450px;
}

/* Menu Section */
.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.menu-category h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Contact Section */
#contact {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

#contact .section-title {
  margin-bottom: 2rem;
}

.contact-email {
  display: inline-block;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.contact-email:hover {
  opacity: 0.6;
}

/* Footer */
footer {
  background-color: var(--bg-darker);
  padding: 2rem 0 4rem 0;
  border-top: none;
}

/* UPDATED: Increased footer logo size from 30px to 70px */
.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  /* Hamburger and Mobile Navigation */
  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 998;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(234, 230, 223, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 0.95rem;
    display: block;
    padding: 0.4rem 0;
  }

  /* Section Spacing & Layout */
  section {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  #hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 1.5rem 40px;
  }

  .about-content,
  .concept-grid,
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-header {
    margin-bottom: 2rem;
  }

  .intro-text {
    margin: 0 auto 2.5rem auto;
    font-size: 1rem;
  }

  /* Typography on Mobile */
  .section-title {
    font-size: 1.85rem;
    letter-spacing: 1.5px;
  }

  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .text-column p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .concept-card {
    padding: 1.75rem 1.25rem;
  }

  .concept-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .concept-card p {
    font-size: 0.92rem;
  }

  .menu-category h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .menu-list li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .note {
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
  }

  #contact {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }

  #contact .section-title {
    margin-bottom: 1.25rem;
  }

  .contact-email {
    font-size: 0.92rem;
  }

  .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.82rem;
  }

  /* Images on Mobile */
  .nav-logo {
    height: 48px;
  }

  .hero-logo {
    max-width: 260px;
    width: 80%;
    margin-bottom: 1.5rem;
  }

  .image-column img {
    max-width: 90%;
    margin: 0 auto;
    max-height: 280px;
  }

  .concept-image-row {
    gap: 1.25rem;
  }

  .concept-image-row img {
    max-width: 320px;
    max-height: 220px;
  }

  .footer-logo {
    height: 60px;
    margin-bottom: 1rem;
  }

  footer {
    padding: 1.5rem 0 3rem 0;
  }

  footer p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-logo {
    max-width: 220px;
  }

  .image-column img {
    max-width: 100%;
    max-height: 230px;
  }

  .concept-image-row img {
    max-width: 100%;
    max-height: 190px;
  }

  .nav-links {
    width: 85%;
  }
}

/* Minimal JS Animations */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
