:root {
  --nav-height: 40px;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  padding-top: var(--nav-height);
}
a {
  text-decoration: none;
  color: inherit;
}

/* Section Themes */
.section-dark {
  background: linear-gradient(135deg, #cbb898 0%, #d5c6a9 100%);
  color: #111;
}
.section-light {
  background: #f9f9f9;
  color: #111;
}

/* Utility */
section {
  padding: 4rem 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #e31837;
  color: #fff;
  border-radius: 2rem;
  transition: background 0.3s;
  font-size: 0.5rem;
  padding: 0.5rem 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--nav-height);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
.nav-links {
  list-style: none;
  padding-left: 2rem;
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}
.nav-links li a {
  color: #fff;
  position: relative;
}
.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #e31837;
  transition: width 0.3s;
}
.nav-links li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-top: calc(-1 * var(--nav-height));
  padding: 0;
}
.hero-img {
  display: block;
  width: 100vw;
  height: auto;
}
.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}
.hero-text {
  position: absolute;
  top: 35%;
  left: 2rem;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-text h1 {
  margin: 0;
}
.order-button {
  display: inline-block;
  background-color: #e31837;
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-decoration: none;
}
.order-button:hover {
  background-color: #c0112d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.order-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Price List */
.price-list {
  background: #fff;
  padding-left: 12rem;
  padding-right: 12rem;
  padding-top: 0.6rem;
  padding-bottom: 1rem;
}
.price-list h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}
.price-list .price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.price-category h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
}
.price-items li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 0.4rem 0;
  column-gap: 1rem;
}
.price-items li:last-child {
  border-bottom: none;
}
.item-name {
  text-align: left;
}
.item-name .item-tag {
  font-size: 0.5em;
  font-weight: normal;
  margin-left: 0.5em;
  color: #555;
}
.item-quantity {
  font-style: italic;
  text-align: right;
  margin-right: 0;
  font-size: 0.7em;
  min-width: 5rem;
}
.item-price {
  text-align: right;
  min-width: 4rem;
}

/* Price Tabs */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.tab-button {
  padding: 0.5rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #111;
  font-size: 0.8rem;
  position: relative;
}
.tab-button::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #e31837;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tab-button.active,
.tab-button:hover {
  color: #111;
  background: transparent;
}
.tab-button.active::after,
.tab-button:hover::after {
  width: 100%;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Price List Footer Note */
.price-list-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.5rem;
  color: #777;
  padding-top: 1rem;
}

/* Feature */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.feature-image img {
  width: 100%;
  border-radius: 1rem;
}

/* Highlight */
.highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.highlight-image img {
  width: 100%;
  border-radius: 1rem;
}

/* Gallery */
.gallery {
  text-align: center;
}

/* Instagram Feed */
.instagram-feed {
  text-align: center;
}
.instagram-feed .insta-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.instagram-feed img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Footer */
.footer-section {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem;
  font-size: 0.8rem;
}

/* Footer Columns */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Hours Section Styles */
.hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-weekdays {
  font-weight: bold;
  font-size: 0.7rem;
  color: #e31837; /* Red color to match theme */
  margin-top: 0.5rem;
}

.hours-times {
  font-weight: normal;
  font-size: 0.6rem;
  color: #ccc;
}

/* Address Section Styles */
.address p {
  margin: 0.5rem 0;
  font-size: 0.7rem;
  color: #fff;
}

.footer-map {
  margin-top: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Logo Column */
.logo-column {
  align-items: center;
  justify-content: flex-start;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hours-weekdays {
    font-size: 0.8rem;
  }
  
  .hours-times {
    font-size: 0.7rem;
  }
  
  .address p {
    font-size: 0.8rem;
  }
  
  .footer-logo {
    width: 120px;
  }
}

.copyright-footer {
  background: #111;
  color: #777;
  padding: 0.5rem 2rem;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border-top: 1px solid #333;
}

.copyright-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}
