* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe4c4 25%, #ffd4a3 50%, #ffebcd 75%, #fff8dc 100%);
  background-attachment: fixed;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatDelay {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #ff8c42 0%, #cc5200 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(255, 107, 53, 0.2);
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
  border-bottom: 3px solid #e85d35;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
}

.logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9933, #ff6600);
  border: 3px solid #fff;
  box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4);
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: wheat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(255, 102, 0, 0.2);
  line-height: 1.2;
}

.brand-text p {
  font-size: 0.8rem;
  color: wheat;
  font-weight: 600;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: wheat;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #ff6600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #ff6600, #ff9933);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: linear-gradient(135deg, #fff5e6, #ffe8cc);
  border: 2px solid #ff9933;
  cursor: pointer;
  padding: 0.65rem;
  flex-shrink: 0;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.mobile-menu-btn:hover {
  background: linear-gradient(135deg, #ffe8cc, #ffd699);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.hamburger {
  display: block;
  width: 28px;
  height: 2px;
  background: #ff6600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ff6600;
  transition: all 0.3s ease;
  left: 0;
  border-radius: 2px;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.mobile-menu-btn.active {
  background: linear-gradient(135deg, #ff6600, #ff9933);
  border-color: #fff;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
  background: #fff;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
  background: #fff;
}

.mobile-menu {
  display: none;
  background: linear-gradient(135deg, #fff5e6, #ffe4c4);
  border-top: 1px solid #ff9933;
  padding: 0;
  animation: slideDown 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.mobile-menu.active {
  display: block;
  max-height: 400px;
  padding: 1rem;
}

.mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #4a2511;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}

.mobile-link:hover {
  background: linear-gradient(to right, #ffedcc, #ffd699);
  color: #ff6600;
}

.address-banner {
  position: fixed;
  top: 70px;
  width: 100%;
  background: linear-gradient(to right, #fff5e6, #ffe8cc, #fff5e6);
  border-bottom: 2px solid #ff9933;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.15);
  z-index: 999;
  animation: slideDown 0.6s ease-out;
}

.address-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.address-icon {
  color: #ff6600;
  flex-shrink: 0;
}

.address-text {
  font-size: 0.875rem;
  color: #4a2511;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.visit-label {
  display: inline;
}

.page-hero {
  padding: 10rem 1rem 3rem;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 50%, #ffd699 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6600, #ff9933, #cc5200, #ffb366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.page-description {
  font-size: 1.25rem;
  color: #5c3317;
  max-width: 42rem;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-section {
  padding: 10rem 1rem 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 50%, #ffd699 100%);
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
  text-align: center;
}

.badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.badge span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #ff9933, #ffb366, #ff6600);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
  border: 2px solid #fff;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line1 {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4a2511;
  line-height: 1.2;
}

.title-line2 {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6600, #ff9933, #cc5200, #ffb366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(255, 102, 0, 0.2);
}

.hero-description {
  font-size: 1.125rem;
  color: #5c3317;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6600, #ff9933, #cc5200);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
  border: 2px solid #fff;
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
  transform: scale(1.05) translateY(-2px);
  background: linear-gradient(135deg, #cc5200, #ff6600, #ff9933);
}

.btn-secondary {
  background: #fff;
  color: #ff6600;
  border: 3px solid #ff6600;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(to right, #fff5e6, #ffe8cc);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.hero-stats {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 235, 205, 0.7));
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2);
  border: 2px solid rgba(255, 153, 51, 0.3);
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ff6600;
  text-shadow: 1px 1px 2px rgba(255, 102, 0, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  color: #5c3317;
  font-weight: 600;
}

.stat-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  justify-content: center;
  color: #ff9933;
}

.hero-images {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
  max-width: 600px;
  margin: 0 auto;
}

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

.image-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.col1 {
  animation: float 6s ease-in-out infinite;
}

.col2 {
  padding-top: 2rem;
  animation: floatDelay 6s ease-in-out infinite 1s;
}

.image-column img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  transition: transform 0.3s;
  border: 4px solid rgba(255, 153, 51, 0.4);
}

.image-column img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5);
  border-color: #ff9933;
}

.scroll-indicator {
  margin-top: 3rem;
  text-align: center;
  animation: bounce 2s infinite;
  color: #ff6600;
}

.features-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fff8dc 0%, #ffedcc 50%, #ffe4c4 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
  color: #ff6600;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  background: linear-gradient(135deg, #ff6600, #cc5200, #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid rgba(255, 153, 51, 0.3);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.3);
  border-color: #ff9933;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #4a2511;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: #5c3317;
  font-size: 1rem;
  line-height: 1.6;
}

.menu-showcase {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 50%, #ffd699 100%);
  position: relative;
}


.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 153, 51, 0.3);
}

.showcase-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.4);
  border-color: #ff9933;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  color: white;
  padding: 1rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.showcase-item:hover .showcase-label {
  background: linear-gradient(to top, #ff6600, rgba(255, 102, 0, 0.7));
}

.menu-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fff8dc 0%, #ffedcc 50%, #ffe4c4 100%);
  position: relative;
  min-height: 60vh;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 153, 51, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 102, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.menu-tab {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid #ff9933;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s;
  background: linear-gradient(135deg, #fff, #fff5e6);
  color: #5c3317;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.menu-tab:hover {
  background: linear-gradient(135deg, #fff5e6, #ffe8cc);
  color: #ff6600;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.menu-tab.active {
  background: linear-gradient(135deg, #ff6600, #ff9933, #cc5200);
  color: white;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
  transform: scale(1.05);
  border-color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.menu-item {
  background: linear-gradient(135deg, #fff 0%, #fff8dc 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.2);
  transition: all 0.3s;
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
  border: 3px solid rgba(255, 153, 51, 0.3);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item:hover {
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.3);
  transform: translateY(-8px) scale(1.02);
  border-color: #ff9933;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  position: relative;
}

.menu-item-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #4a2511;
  transition: color 0.3s;
  flex: 1;
  margin-right: 1rem;
  line-height: 1.3;
}

.menu-item:hover .menu-item-name {
  color: #ff6600;
}

.menu-item-price {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6600, #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  position: relative;
}

.menu-item-price::before {
  content: 'CAD';
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff6600;
  margin-right: 0.25rem;
}

.menu-item-desc {
  color: #5c3317;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px dashed rgba(255, 153, 51, 0.3);
}

.menu-item-unit {
  font-size: 0.875rem;
  color: #8b4513;
  font-weight: 600;
  background: rgba(255, 153, 51, 0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
}

.menu-item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff6600, #ff9933);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
}

.about-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #ffe4c4 0%, #fff5e6 50%, #ffedcc 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 153, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.about-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out;
  max-width: 500px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.3);
  border: 4px solid rgba(255, 153, 51, 0.4);
}

.about-content {
  animation: fadeInRight 0.8s ease-out;
}

.about-text {
  font-size: 1.125rem;
  color: #4a2511;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text-secondary {
  font-size: 1rem;
  color: #5c3317;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.values-section {
  text-align: center;
  position: relative;
  z-index: 1;
}

.values-section .section-title {
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: linear-gradient(135deg, #fff 0%, #ffe8cc 50%, #ffd699 100%);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  border: 2px solid rgba(255, 153, 51, 0.3);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.value-card:hover {
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  transform: translateY(-4px);
  border-color: #ff9933;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4a2511;
  margin-bottom: 0.75rem;
}

.value-desc {
  color: #5c3317;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fff8dc 0%, #ffe4c4 50%, #ffd699 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 153, 51, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 102, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.2);
  text-align: center;
  transition: all 0.3s;
  border: 2px solid rgba(255, 153, 51, 0.3);
}

.contact-card:hover {
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.3);
  transform: translateY(-8px);
  border-color: #ff9933;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff6600, #ff9933, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
  border: 3px solid #fff;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
  color: white;
}

.contact-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #4a2511;
  margin-bottom: 0.75rem;
}

.contact-text {
  color: #5c3317;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ff6600;
  text-decoration: none;
  word-break: break-word;
  display: block;
  margin-top: 0.5rem;
}

.contact-link:hover {
  color: #cc5200;
}

.catering-card {
  background: linear-gradient(135deg, #ff9933 0%, #ffb366 50%, #ffd699 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.catering-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #ff6600, #ff9933, #ffb366);
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
}

.catering-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.catering-text {
  font-size: 1.125rem;
  color: #fff;
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.hours-section {
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.hours-grid {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.2);
  border: 2px solid rgba(255, 153, 51, 0.3);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 153, 51, 0.2);
}

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

.day {
  font-size: 1.125rem;
  font-weight: 600;
  color: #4a2511;
}

.time {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ff6600;
}

.footer {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #6b3410 100%);
  color: white;
  padding: 2.5rem 1rem 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #ff9933;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .logo {
  width: 40px;
  height: 40px;
}

.footer-brand h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffedcc;
}

.footer-text {
  color: #ffe8cc;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffedcc;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ffe8cc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 2px solid #a0522d;
  padding-top: 1.5rem;
  text-align: center;
  color: #ffe8cc;
  font-size: 0.95rem;
}

@media (min-width: 769px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    text-align: left;
  }

  .badge {
    text-align: left;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .title-line1 {
    font-size: 3rem;
  }

  .title-line2 {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

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

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

  .page-title {
    font-size: 4rem;
  }

  .brand-text h1 {
    font-size: 1.875rem;
  }

  .brand-text p {
    font-size: 0.75rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .nav-container {
    padding: 0 1rem;
    min-height: 80px;
  }

  .address-banner {
    top: 80px;
  }

  .hero-section {
    padding: 12rem 1rem 5rem;
  }

  .page-hero {
    padding: 12rem 1rem 4rem;
  }

  .image-column img {
    height: 220px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {

  .footer-social {
    justify-content: center !important;
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .showcase-label {
    font-size: 0.85rem;
    padding: 0.75rem 0.5rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-item {
    padding: 1.5rem;
  }

  .menu-item-name {
    font-size: 1.125rem;
  }

  .menu-item-price {
    font-size: 1.5rem;
  }

  .menu-item-desc {
    font-size: 0.9rem;
  }
}

/* Desktop adjustments */
@media (min-width: 769px) {

  .footer-social {
    justify-content: center !important;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    text-align: left;
  }

  .badge {
    text-align: left;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .title-line1 {
    font-size: 3rem;
  }

  .title-line2 {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

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

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

  .brand-text h1 {
    font-size: 1.875rem;
  }

  .brand-text p {
    font-size: 0.75rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .nav-container {
    padding: 0 1rem;
    min-height: 80px;
  }

  .address-banner {
    top: 80px;
  }

  .hero-section {
    padding: 12rem 1rem 5rem;
  }

  .menu-section,
  .about-section,
  .contact-section {
    padding: 5rem 1rem;
  }

  .image-column img {
    height: 220px;
  }
}

/* Tablet adjustments */
@media (max-width: 768px) {

  .footer-social {
    justify-content: center !important;
  }
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .showcase-label {
    font-size: 0.8rem;
    padding: 0.6rem 0.4rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .address-text {
    font-size: 0.8rem;
  }

  .address-icon {
    width: 16px;
    height: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .footer-social {
    justify-content: center !important;
  }
  .title-line1 {
    font-size: 1.75rem;
  }

  .title-line2 {
    font-size: 2.25rem;
  }

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

  .page-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .brand-text h1 {
    font-size: 1.125rem;
  }

  .brand-text p {
    font-size: 0.6rem;
  }

  .logo {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .stat {
    padding: 0.875rem 1rem;
    min-width: 120px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .showcase-label {
    font-size: 0.75rem;
    padding: 0.6rem 0.4rem;
    letter-spacing: 0.5px;
  }

  .menu-showcase {
    padding: 2rem 0.75rem;
  }

  .menu-tab {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .catering-title {
    font-size: 1.5rem;
  }

  .catering-text {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .visit-label {
    display: none;
  }

  .address-text {
    font-size: 0.75rem;
  }

  .address-banner {
    top: 70px;
  }

  .address-container {
    padding: 0.5rem 0.75rem;
  }

  .hero-section {
    padding: 9rem 1rem 2rem;
  }

  .page-hero {
    padding: 9rem 1rem 2rem;
  }

  .image-column img {
    height: 140px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 1.5rem;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .menu-item {
    padding: 0.75rem;
  }

  .menu-item-name {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .menu-item-price {
    font-size: 1.1rem;
  }

  .menu-item-price::before {
    font-size: 0.7rem;
  }

  .menu-item-desc {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .menu-item-unit {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .menu-item-header {
    margin-bottom: 0.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .menu-item-name {
    margin-right: 0;
  }

  .menu-item-footer {
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: flex-start;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.1);
  color: #ff6600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #ff6600;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}
