/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'EB Garamond', serif;
  background-color: #1e1b2e;
  color: #f8f4ef;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Cinzel Decorative', serif;
}

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

a:hover {
  color: #cfa663;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 27, 46, 0.2);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #cfa663;
  padding: 1rem 2rem;
  z-index: 10;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background: rgba(30, 27, 46, 0.85);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  font-size: 2rem;
  color: #e0c3fc;
  font-family: 'Cinzel Decorative', serif;
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: bold;
}

/* HERO SECTION */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 27, 46, 0.2), rgba(30, 27, 46, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

.tagline {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta-button {
  background-color: #cfa663;
  color: #1e1b2e;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e0c3fc;
  color: #1e1b2e;
}

/* FEATURES SECTION */
.features {
  background-color: #1e1b2e;
  padding: 4rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-tile {
  background-color: #3b2f4e;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #cfa663;
}

.feature-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Cinzel Decorative', serif;
}

.feature-tile p {
  margin-bottom: 1rem;
}

.tile-link {
  color: #cfa663;
  font-weight: bold;
}

.tile-link:hover {
  color: #e0c3fc;
}

/* FOOTER */
footer {
  background-color: #2b243b;
  color: #f8f4ef;
  padding: 3rem 1rem 2rem;
  border-top: 2px solid #cfa663;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.footer-logo h2 {
  font-size: 1.6rem;
  color: #e0c3fc;
  margin-bottom: 0.3rem;
}

.footer-logo .tagline {
  font-style: italic;
  color: #cfa663;
}

.footer-contact h3,
.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #e0c3fc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #f8f4ef;
}

.footer-links a:hover {
  color: #cfa663;
}

.footer-credit {
  text-align: center;
  color: #a392c2;
  margin-top: 2rem;
  font-size: 0.85rem;
}

/* MENU PAGE STRUCTURE */
.menu-page {
  padding: 5rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: #e0c3fc;
}

.menu-header .tagline {
  font-style: italic;
  color: #cfa663;
  font-size: 1.1rem;
}

/* MENU CATEGORIES */
.menu-category {
  margin-bottom: 3.5rem;
}

.menu-category h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #f8f4ef;
  border-bottom: 1px solid #cfa663;
  padding-bottom: 0.5rem;
}

/* MENU LIST */
.menu-list {
  list-style: none;
  padding-left: 0;
}

.menu-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  border-left: 3px solid #3b2f4e;
  padding-left: 1rem;
  transition: border-color 0.3s ease;
}

.menu-list li:hover {
  border-color: #cfa663;
}

.menu-list li strong {
  color: #e0c3fc;
  font-weight: 600;
}

/* INLINE BOOST LIST (ADD-INS) */
.menu-list.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.menu-list.inline li {
  background-color: #3b2f4e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  border: none;
  color: #f8f4ef;
}

/* RESPONSIVE HEADER FOR MOBILE */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero {
    height: auto;
    padding: 4rem 1rem 3rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e0c3fc;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    width: 100%;
  }

  .mobile-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 0;
  }

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

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    color: #f8f4ef;
  }

  .nav-links a:hover {
    color: #cfa663;
  }
}