@import url("https://fonts.googleapis.com/css2?family=Work+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex: 1;
  text-align: left;
}

.logo-img {
  max-height: 30px;
  width: auto;
}

.social-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #4a4a4a;
}

.reservation-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.reservation-btn:hover {
  background: #333;
  color: #fff;
}

/* Category Navigation */
.category-nav {
  position: relative;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 999;
  padding: 1rem;
  transition: top 0.3s ease;
}

.category-tabs {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem;
}

.category-tab {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.category-tab:hover,
.category-tab.active {
  color: #333;
  border-bottom-color: #333;
}

/* Menu content styles */
.menu-content {
  max-width: 1400px;
  margin: 160px auto 60px;
  padding: 0 120px;
}

.menu-section {
  display: none;
  margin-bottom: 4rem;
}

.menu-section.active {
  display: block;
}

.category-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.category-description {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.menu-grid {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.menu-column {
  flex: 1;
}

.sub-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.sub-category {
  margin-bottom: 2rem;
}

.sub-category-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.menu-item {
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.sub-category .menu-item {
  margin-left: 1rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.item-name {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 8px;
}

.item-name::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #333;
  margin: 0 0.5rem;
  vertical-align: middle;
}

.item-price {
  font-weight: 500;
  margin-right: 8px;
}

.item-price-addon {
  display: flex;
  align-items: center;
}

.item-description {
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
  line-height: 1.4;
}

.addon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin-left: 8px;
  color: #333;
  transition: all 0.2s ease;
}

.addon-btn:hover {
  color: #666;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.modal-content {
  position: relative;
  background: #fff;
  margin: 15% auto;
  padding: 2rem;
  max-width: 500px;
  border-radius: 4px;
}

.close {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .menu-content {
    padding: 0 60px;
  }
}

@media (max-width: 992px) {
  .sub-categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-content {
    padding: 0 30px;
    margin-top: 140px;
  }

  .menu-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    display: none;
  }

  .reservation-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    display: block;
  }

  .category-nav {
    padding: 0.5rem;
  }

  .category-tabs {
    padding: 0 1rem;
  }

  .category-tab {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}