/* Sicilian Home Page Styles */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Background video replaces the hero image */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  filter: saturate(1.05) contrast(1);
}

/* Hide all video controls on mobile */
.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-video::--webkit-media-controls-play-button {
  display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.hero-video[aria-hidden="true"] {
  opacity: 0;
}

.hero-image[style*="opacity: 0"] {
  opacity: 0 !important;
}

.hero-image.loaded {
  opacity: 1 !important;
  z-index: 1;
}

/* Gradient fallback background - now only in the image element itself */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(218, 18, 26, 0.7) 0%,
      rgba(41, 110, 115, 0.6) 50%,
      rgba(235, 179, 55, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--light);
  max-width: 800px;
  padding: 0 20px;
}

/* Hero logo styling */
.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 3.5rem;
  background: #F7F1E3;
  padding: 8px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-logo .font-la {
  font-family: "Alex Brush", cursive;
  color: var(--blue);
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin-right: 8px;
}

.hero-logo .font-scacciata {
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.sicilian-accent {
  color: var(--yellow);
  font-family: "Great Vibes", cursive;
  font-size: 5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--cream);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Minimalist Sicilian Button Design */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid;
  border-radius: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--light);
  border-color: var(--red);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--light);
  border-color: var(--terracotta);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: var(--blue);
  color: var(--light);
  border-color: var(--blue);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--light);
  border-color: var(--terracotta);
}

.btn-secondary:hover::before {
  left: 0;
}

/* La Tradizione Siciliana Section - LIGHT */
.tradizione-section {
  padding: 40px 0;
  background: var(--light);
  overflow: hidden;
}

.tradizione-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tradizione-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tradizione-text {
  padding: 0;
  background: transparent;
}

.tradizione-header {
  margin-bottom: 20px;
}

.tradizione-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--red);
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--terracotta) 100%);
  border-radius: 2px;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.tradizione-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 20px;
}

.tradizione-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  background: transparent;
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.2rem;
  color: var(--red);
  width: 20px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}

.tradizione-image {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Safari fallback for aspect-ratio */
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  /* Creates 1:1 aspect ratio */
  max-width: 500px;
  margin: 0 auto;
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 1) {
  .tradizione-image {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 1/1;
  }
}

.tradizione-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  /* Safari-specific optimizations */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.image-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--cream);
  z-index: 2;
}

.image-fallback i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.image-fallback span {
  font-size: 1rem;
}

.tradizione-image:hover img {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .tradizione-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tradizione-image {
    order: -1;
    max-width: 400px;
  }

  .tradizione-header h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .tradizione-section {
    padding: 30px 0;
  }

  .tradizione-container {
    padding: 0 15px;
  }

  .tradizione-header h2 {
    font-size: 2.5rem;
  }
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 40px;
  color: var(--light);
}

.overlay-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sicilian-quote {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quote-translation {
  font-size: 1rem;
  color: var(--light);
  opacity: 0.9;
  font-style: italic;
}

/* Specialties Section - DARKER/CONTRAST */
/* Changing from light gradient to a warm cream/tan to separate from Tradizione (white) */
.specialties-section {
  padding: 80px 0;
  background: #f8f1e5; /* Distinct warm background */
}

/* Update section header within specialties for contrast if needed */
.specialties-section .section-header h2 {
  color: var(--dark-green);
}

.specialties-grid {
  display: grid;
  /* Force 4 equal columns on wide/desktop layouts so the row doesn't break */
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Responsive breakpoints for specialties grid */
@media (max-width: 1200px) {
  .specialties-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Specialty Card Styles */
.specialty-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #fff;
  min-height: 220px;
}

.specialty-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.specialty-card:hover .specialty-img-full {
  transform: scale(1.05);
}

.specialty-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 60%);
  padding: 20px 18px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  min-height: 120px;
}

.specialty-overlay-text {
  z-index: 2;
}

.specialty-title {
  font-size: 1.25rem;
  margin: 0 0 6px 0;
  color: var(--yellow);
  font-family: var(--font-display);
}

.specialty-desc {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}


/* Chef's Story Section - LIGHT (White) */
.chef-story-section {
  padding: 80px 0;
  background: #ffffff; /* Pure white to contrast with Specialties */
  color: var(--text-color);
  overflow: hidden;
}

.chef-story-section .container {
  overflow: hidden;
}

.chef-story-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.chef-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.chef-image .image-container {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  /* Safari fallback for aspect-ratio */
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  max-width: 520px;
  margin: 0 auto;
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 1) {
  .chef-image .image-container {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 4/5;
  }
}

.chef-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  /* Safari-specific optimizations */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.chef-image:hover img {
  transform: scale(1.05);
}

.chef-image .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.chef-image:hover .image-overlay {
  transform: translateY(0);
}

.chef-image .overlay-text {
  text-align: center;
}

.chef-quote {
  display: block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--cream);
}

.chef-image .quote-translation {
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
}

.chef-image .image-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--cream);
  z-index: 2;
}

.chef-image .image-fallback i {
  font-size: 4rem;
  margin-bottom: 10px;
  display: block;
}

.chef-image .image-fallback span {
  font-size: 1rem;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 6rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.chef-tagline {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.9;
}

.chef-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-green);
  font-weight: 700;
}

.chef-text .decorative-line {
  margin: 0 0 25px 0;
  background: linear-gradient(90deg, var(--red), var(--terracotta));
}

.chef-intro {
  font-size: 1.3rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 25px;
}

.chef-text p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-color);
}

.chef-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-green);
  background: white;
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.credential-item i {
  color: var(--red);
  font-size: 1.2rem;
}


/* Press Section - DARKER/CONTRAST */
.press-section {
  padding: 80px 0;
  background: #f4efeb; /* Slightly darker cream/tan */
  position: relative;
  overflow: hidden;
}

.press-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218, 18, 26, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.press-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.press-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
}

.press-subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 20px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

.press-card {
  background: white;
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
}

.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(218, 18, 26, 0.02) 0%, rgba(235, 179, 55, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.press-card:hover::before {
  opacity: 1;
}

.press-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-top-color: var(--terracotta);
}

.press-publication {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(235, 179, 55, 0.2);
}

.publication-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.publication-date {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.6;
  font-weight: 500;
  white-space: nowrap;
}

.press-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 18px;
  min-height: 70px;
  transition: color 0.3s ease;
}

.press-card:hover .press-title {
  color: var(--red);
}

.press-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.85;
  margin-bottom: 25px;
  min-height: 120px;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--red);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border: 2px solid var(--red);
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.press-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  transition: left 0.3s ease;
  z-index: -1;
}

.press-link:hover {
  color: white;
  border-color: var(--terracotta);
  transform: translateX(5px);
}

.press-link:hover::before {
  left: 0;
}

.press-link i {
  transition: transform 0.3s ease;
}

.press-link:hover i {
  transform: translateX(5px);
}

/* Quote accent for press cards */
.press-card::after {
  content: '"';
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--terracotta);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

/* Mobile responsive for Press Section */
@media (max-width: 992px) {
  .press-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .press-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .press-section {
    padding: 60px 0;
  }

  .press-header {
    margin-bottom: 40px;
  }

  .press-header h2 {
    font-size: 2.2rem;
  }

  .press-subtitle {
    font-size: 1.1rem;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .press-card {
    padding: 30px 25px;
  }
  
  .press-title {
    font-size: 1.2rem;
    min-height: auto;
  }
  
  .press-excerpt {
    min-height: auto;
    font-size: 0.95rem;
  }
  
  .publication-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .press-section {
    padding: 50px 0;
  }
  
  .press-header h2 {
    font-size: 2rem;
  }
  
  .press-subtitle {
    font-size: 1rem;
  }
  
  .press-card {
    padding: 25px 20px;
  }
  
  .press-publication {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .publication-name {
    font-size: 1.1rem;
  }
  
  .publication-date {
    font-size: 0.85rem;
  }

  .press-title {
    font-size: 1.1rem;
  }

  .press-link {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* Google Reviews Section - LIGHT (White) */
.google-reviews-section {
  padding: 80px 0;
  background: #ffffff;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-header h2 {
  color: var(--red);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.reviews-subtitle {
  color: var(--dark);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.rating-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--yellow);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  color: var(--yellow);
  font-size: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.total-reviews {
  color: var(--dark);
  opacity: 0.8;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.loading-reviews {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--dark);
  opacity: 0.6;
}

.loading-reviews i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--terracotta);
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--terracotta), var(--red));
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
}

.reviewer-avatar-fallback {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.reviewer-details h4 {
  color: var(--dark);
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars i {
  color: var(--yellow);
  font-size: 0.9rem;
}

.google-logo {
  opacity: 0.6;
  font-size: 1.5rem;
}

.google-logo i {
  background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-text {
  color: var(--dark);
  line-height: 1.6;
  margin: 15px 0;
  font-style: italic;
  position: relative;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -10px;
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.review-date {
  color: var(--dark);
  opacity: 0.6;
  font-size: 0.9rem;
  font-weight: 500;
}

.reviews-cta {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(235, 179, 55, 0.2);
}

.reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(218, 18, 26, 0.3);
}

.reviews-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 18, 26, 0.4);
  color: white;
  text-decoration: none;
}

.reviews-btn i {
  font-size: 1.2rem;
}

/* Mobile responsive for Google Reviews */
@media (max-width: 768px) {
  .google-reviews-section {
    padding: 60px 0;
  }
  
  .reviews-header h2 {
    font-size: 2rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .rating-display {
    flex-direction: column;
    gap: 10px;
  }
  
  .rating-number {
    font-size: 2.5rem;
  }
  
  .reviewer-avatar,
  .reviewer-avatar-fallback {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .reviews-summary {
    padding: 20px;
  }
}

/* Location Section - DARKER/CONTRAST */
.location-section {
  padding: 80px 0;
  background: #f8f1e5; /* Warm tan matching Specialties */
  text-align: center;
}

.location-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.location-section .decorative-line {
  margin: 0 auto 50px;
}

.location-hours-stack {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.location-hours-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--terracotta), var(--yellow));
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

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

.hours-row:hover {
  background: linear-gradient(90deg, transparent, rgba(218, 18, 26, 0.03), transparent);
  transform: scale(1.02);
}

.hours-row.weekend {
  background: linear-gradient(90deg, rgba(218, 18, 26, 0.05), rgba(235, 179, 55, 0.05), rgba(218, 18, 26, 0.05));
  border-radius: 12px;
  padding: 20px 0;
  margin: 8px 0;
}

.hours-row.weekend:hover {
  background: linear-gradient(90deg, rgba(218, 18, 26, 0.08), rgba(235, 179, 55, 0.08), rgba(218, 18, 26, 0.08));
}

.day-label {
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}

.hours-row.weekend .day-label {
  color: var(--red);
}

.time-dots {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--blue) 20%,
    var(--blue) 40%,
    transparent 40%,
    transparent 60%,
    var(--blue) 60%,
    var(--blue) 80%,
    transparent 100%
  );
  position: relative;
}

.time-dots::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(41, 110, 115, 0.2);
}

.hours-row.weekend .time-dots {
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 20%,
    var(--red) 40%,
    transparent 40%,
    transparent 60%,
    var(--red) 60%,
    var(--red) 80%,
    transparent 100%
  );
}

.hours-row.weekend .time-dots::before {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(218, 18, 26, 0.2);
}

.time-label {
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--blue);
  font-family: "Playfair Display", serif;
}

.hours-row.weekend .time-label {
  color: var(--red);
  font-weight: 700;
}

/* Location Section Grid Layout */
.location-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.location-hours-column {
  width: 100%;
}

.location-map-column {
  width: 100%;
  height: 100%;
}

.location-map-column .map-container {
  height: 100%;
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Ensure the hours stack takes full height if needed */
.location-hours-stack {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive adjustments for the new grid */
@media (max-width: 992px) {
  .location-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .location-map-column .map-container {
    min-height: 400px;
  }
}

/* Responsive Design for Location Section */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }
  

  .home-map-section {
    padding: 60px 0 40px;
  }

  .home-map-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .home-map-wrapper .map-container {
    width: 100%;
  }

  .home-map-wrapper .map-container iframe {
    width: 100%;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .home-map-section .map-address {
    margin-top: 18px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .location-section h2 {
    font-size: 2.5rem;
  }
  
  .location-hours-stack {
    padding: 30px 25px;
    max-width: 90%;
  }
  
  .hours-row {
    gap: 15px;
    padding: 15px 0;
  }
  
  .day-label,
  .time-label {
    font-size: 1rem;
  }
  
  .time-dots {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 50px 0;
  }
  
  .location-section h2 {
    font-size: 2rem;
  }
  
  .location-hours-stack {
    padding: 25px 20px;
  }
  
  .hours-row {
    gap: 10px;
    padding: 12px 0;
  }
  
  .day-label,
  .time-label {
    font-size: 0.9rem;
  }
  
  .time-dots {
    width: 25px;
  }
  
  .time-dots::before {
    width: 6px;
    height: 6px;
  }
}

/* Delivery Section - DARK (Split Design) - Keep as is */
.delivery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);
  color: var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.delivery-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252, 221, 9, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.delivery-section h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--yellow);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.delivery-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.delivery-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.delivery-option {
  background: white;
  padding: 50px 35px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.delivery-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--terracotta));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.delivery-option:hover::before {
  transform: scaleX(1);
}

.delivery-option:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.option-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(218, 18, 26, 0.3);
}

.option-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(218, 18, 26, 0.1), rgba(235, 179, 55, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.delivery-option:hover .option-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, rgba(218, 18, 26, 0.2), rgba(235, 179, 55, 0.2));
}

.option-icon i {
  font-size: 3rem;
  color: var(--red);
  transition: all 0.3s ease;
}

.delivery-option:hover .option-icon i {
  color: var(--terracotta);
}

.delivery-option h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.option-desc {
  color: var(--dark);
  opacity: 0.7;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.option-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(218, 18, 26, 0.3);
  transition: all 0.3s ease;
}

.delivery-option:hover .option-cta {
  background: linear-gradient(135deg, var(--terracotta), var(--yellow));
  transform: translateX(5px);
  box-shadow: 0 12px 30px rgba(218, 18, 26, 0.4);
}

.option-cta i {
  transition: transform 0.3s ease;
}

.delivery-option:hover .option-cta i {
  transform: translateX(5px);
}

.delivery-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.delivery-divider::before,
.delivery-divider::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.delivery-divider::before {
  top: 0;
}

.delivery-divider::after {
  bottom: 0;
}

.delivery-divider span {
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
  padding: 15px 20px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: lowercase;
  font-style: italic;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
