:root {
  --primary: #FCB248;
  --background: #FFFFFF;
  --accent: #EE3230;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --font-primary: 'Futura PT', sans-serif;
  --font-secondary: 'Gloria Hallelujah', cursive;
  --font-accent: 'Caveat', cursive;
  --border-radius: 8px;
  --border-radius-large: 12px;
  --shadow-light: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-medium: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-heavy: 0 8px 24px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: var(--background);
}

.values-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.values-header h2 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
}

.values-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.values-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.7;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('./media/IMG_2279.JPG');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(238, 50, 48, 0.7) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.6) 70%, rgba(252, 178, 72, 0.5) 100%);
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 3;
  animation: slideUp 1.2s ease-out;
}

.hero .logo {
  margin-bottom: 2rem;
  animation: fadeInScale 1.5s ease-out 0.3s both;
}

.hero .logo img {
  max-height: 120px;
  width: auto;
  filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.8));
  max-width: 90vw; /* Prevent overflow on small screens */
}

.hero .tagline {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-out 0.6s both;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  white-space: normal;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .tagline:hover {
  background: rgba(252, 178, 72, 0.2);
  border-color: rgba(252, 178, 72, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 178, 72, 0.3);
}

/* Button Styles */
.hero .cta,
.catering-quote-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero .cta {
  background: linear-gradient(135deg, var(--text-light) 0%, #f8f8f8 100%);
  color: var(--accent);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeInUp 1.2s ease-out 0.9s both;
}

.catering-quote-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #c21f1f 100%);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(238, 50, 48, 0.3);
  margin-top: 1rem;
}

.hero .cta::before,
.catering-quote-btn::before {
  display: none;
}

.hero .cta:hover::before,
.catering-quote-btn:hover::before {
  display: none;
}

.hero .cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, var(--primary) 0%, #ffcd5a 100%);
  color: var(--text-dark);
}

.catering-quote-btn:hover {
  background: linear-gradient(135deg, #d12a2a 0%, #a31818 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(238, 50, 48, 0.4);
}

/* Hero Menu Preview */
.hero-menu-preview {
  position: relative;
  margin: 2rem 0 2rem 0;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero .menu-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease-out;
  padding: 1rem 0;
  width: fit-content;
  justify-content: center;
}

.hero .menu-item {
  flex: 0 0 200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out both;
}

.hero .menu-item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.hero .menu-item h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
  font-family: var(--font-secondary);
}

/* Remove carousel navigation styles */
.hero .carousel-nav,
.hero .carousel-indicators {
  display: none;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  width: 100%;
}

.value-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-item:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem auto;
  display: block;
  object-fit: contain;
}

.value-item:nth-child(3) .value-icon {
  width: 120px;
  height: 80px;
}

.value-item h3 {
  color: var(--text-dark);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.value-item p {
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  opacity: 0.8;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* Catering Section */
.catering-section {
  padding: 8rem 0;
  background: rgba(252, 178, 72, 0.03);
}

.catering-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.catering-content h2 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
}

.catering-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.catering-description {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.catering-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--background);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.1);
  width: 100%;
  justify-content: flex-start;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(252, 178, 72, 0.05);
  box-shadow: var(--shadow-light);
}

.contact-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item .text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-item .label {
  font-size: 0.9rem;
  opacity: 0.6;
  font-weight: 400;
  color: var(--text-dark);
}

.contact-item .value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Location Section */
.location-section {
  padding: 8rem 0;
  background: var(--background);
}

.location-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.location-content h2 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
}

.location-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.location-description {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.map-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(252, 178, 72, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 6rem 0 2rem;
  margin-top: 8rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.footer-services {
  font-size: 1rem;
  opacity: 0.9;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

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

.footer-section h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section address {
  font-style: normal;
  margin-bottom: 0.5rem;
}

.address-link {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.address-link:hover {
  opacity: 1;
  color: var(--primary);
}

.phone-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.phone-link:hover {
  opacity: 0.8;
}

.gift-card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.8rem 1.2rem;
  background: rgba(252, 178, 72, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(252, 178, 72, 0.3);
  display: inline-block;
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: fit-content;
}

.gift-card-link:hover {
  background: rgba(252, 178, 72, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 178, 72, 0.3);
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.day {
  color: var(--text-light);
  opacity: 0.8;
}

.time {
  color: var(--primary);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top: 4px solid var(--text-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 2rem;
  animation: bounce 2s infinite;
  z-index: 3;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-modal.active .image-modal-content {
  transform: scale(1);
}

.image-modal-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.image-modal-title {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 1.8rem;
  color: var(--accent);
  font-family: var(--font-secondary);
  font-weight: 600;
  background: linear-gradient(135deg, var(--text-light) 0%, #f8f8f8 100%);
}

.image-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(238, 50, 48, 0.9);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 50, 48, 0.3);
}

.image-modal-close:hover {
  background: rgba(238, 50, 48, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(238, 50, 48, 0.4);
}

/* Value Modal */
.value-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  padding: 1rem;
}

.value-modal.active {
  opacity: 1;
  visibility: visible;
}

.value-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,252,245,0.98) 100%);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 2px solid rgba(252, 178, 72, 0.3);
  text-align: center;
  padding: 2rem;
}

.value-modal.active .value-modal-content {
  transform: scale(1);
}

.value-modal-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem auto;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
  object-fit: contain;
}

.value-modal-icon.large {
  width: 150px;
  height: 100px;
}

.value-modal-title {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.value-modal-description {
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.value-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(238, 50, 48, 0.9);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 50, 48, 0.3);
}

.value-modal-close:hover {
  background: rgba(238, 50, 48, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(238, 50, 48, 0.4);
}

/* Menu Bar */
.menu-bar {
  background: linear-gradient(135deg, var(--primary) 0%, #ffcd5a 100%);
  padding: 0;
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-medium);
  margin: 6rem auto;
  border: none;
  border-radius: var(--border-radius);
  max-width: 400px;
}

.menu-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--border-radius);
}

.menu-bar-link::before {
  display: none;
}

.menu-bar-link:hover::before {
  display: none;
}

.menu-bar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(252, 178, 72, 0.4);
}

.menu-bar-text {
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
  text-shadow: none;
  font-weight: 600;
}

.menu-bar-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  filter: none;
  color: var(--text-dark);
  font-weight: bold;
}

.menu-bar-link:hover .menu-bar-arrow {
  transform: translateX(3px);
}

/* Responsive adjustments for menu bar */
@media (max-width: 768px) {
  .menu-bar-link {
    padding: 1.3rem 1.5rem;
    font-size: 1.1rem;
    gap: 0.8rem;
  }
  
  .menu-bar-arrow {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .menu-bar-link {
    padding: 1.2rem 1rem;
    font-size: 1rem;
    gap: 0.6rem;
  }
  
  .menu-bar-arrow {
    font-size: 1.1rem;
  }
  
  .menu-bar-text {
    letter-spacing: 0.3px;
  }
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

/* Menu item stagger animation */
.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    gap: 3rem;
  }
  
  .footer-info {
    gap: 1.5rem;
  }
}

@media (max-width: 968px) {
  .values-section,
  .catering-section,
  .location-section {
    padding: 6rem 0;
  }
  
  .values-header h2,
  .catering-content h2,
  .location-content h2 {
    font-size: 2.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-info {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
  }
  
  .values-section,
  .catering-section,
  .location-section {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .menu-bar {
    margin: 3rem auto;
    max-width: 350px;
  }
  
  .values-header {
    margin-bottom: 4rem;
  }
  
  .values-header h2,
  .catering-content h2,
  .location-content h2 {
    font-size: 2.2rem;
  }
  
  .values-grid {
    gap: 2rem;
  }
  
  .value-item {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(252, 178, 72, 0.2);
    touch-action: manipulation;
    user-select: none;
  }
  
  .value-item:active {
    transform: translateY(-2px) scale(1.01);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .value-item:nth-child(3) .value-icon {
    width: 95px;
    height: 60px;
  }
  
  .value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .catering-description {
    display: none;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  footer {
    padding: 4rem 0 2rem;
    margin-top: 6rem;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    object-position: center center;
  }
  
  .gift-card-link {
    align-self: center;
    margin: 1rem auto 0 auto;
  }
  
  .footer-info {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 650px;
  }
  
  .values-section,
  .catering-section,
  .location-section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .menu-bar {
    margin: 2rem auto;
    max-width: 320px;
  }
  
  .values-header {
    margin-bottom: 3rem;
  }
  
  .values-header h2,
  .catering-content h2,
  .location-content h2 {
    font-size: 1.8rem;
  }
  
  .values-header p,
  .catering-description,
  .location-description {
    font-size: 1rem;
  }
  
  .values-grid {
    gap: 1.5rem;
  }
  
  .value-item p {
    display: none;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .value-item:nth-child(3) .value-icon {
    width: 85px;
    height: 50px;
  }
  
  .value-item h3 {
    font-size: 1.2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .contact-item .text {
    text-align: center;
  }
  
  .map-container iframe {
    height: 250px;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    padding: 0 1.5rem;
    line-height: 1.4;
  }
  
  footer {
    padding: 3rem 1rem 2rem;
  }
  
  .footer-content {
    margin-bottom: 3rem;
  }
  
  .footer-brand {
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    max-height: 50px;
    object-fit: contain;
    object-position: center center;
  }
  
  .gift-card-link {
    align-self: center;
    margin: 1rem auto 0 auto;
  }
  
  .footer-tagline {
    font-size: 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
}