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

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #1a1a1a;
}

/* ========================================
   HEADER
======================================== */
header {
  background-color: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
}

.logo h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 5px;
}

.logo span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ========================================
   NAVIGATION
======================================== */
nav {
  background-color: #1a1a1a;
  padding: 0 20px 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 300;
  transition: color 0.3s;
}

nav a:hover {
  color: #c9a227;
}

/* ========================================
   hero-menu SECTION
======================================== */
.hero-menu {
  background-color: #1a1a1a;
  padding: 60px 20px 80px;
  text-align: center;
}

.hero-menu h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}

.hero-menu p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ========================================
   MENU TABS
======================================== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid #c9a227;
  color: #1a1a1a;
  padding: 12px 35px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background: #c9a227;
  color: #fff;
}

/* ========================================
   MENU SECTIONS
======================================== */
.menu-section {
  width: 80%;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: none;
}

.menu-section.active {
  display: block;
}

.menu-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
  position: relative;
}

.menu-section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #c9a227;
  margin: 20px auto 0;
}

/* ========================================
   MENU CATEGORIES
======================================== */
.menu-category {
  margin-bottom: 50px;
}

.menu-category h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #c9a227;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* ========================================
   MENU ITEMS
======================================== */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-item:last-child {
  border-bottom: none;
}

.item-info {
  flex: 1;
  padding-right: 20px;
}

.item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.item-desc {
  font-size: 0.85rem;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

.item-prices {
  display: flex;
  gap: 15px;
  align-items: center;
}

.item-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #c9a227;
  font-weight: 500;
  white-space: nowrap;
}

.item-price.small {
  font-size: 1rem;
  color: #999;
}

/* ========================================
   SECTION NOTE
======================================== */
.section-note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin: 30px 0;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ========================================
   FOOTER
======================================== */
footer {
  background-color: #1a1a1a;
  padding: 50px 20px;
  text-align: center;
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  nav a {
    font-size: 0.75rem;
  }

  .hero-menu h2 {
    font-size: 2.2rem;
  }

  .menu-tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 25px;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .menu-item {
    flex-direction: column;
    gap: 10px;
  }

  .item-prices {
    align-self: flex-start;
  }

  .logo h1 {
    font-size: 2rem;
    letter-spacing: 5px;
  }
}
