/* El Sarape Restaurant Website */

/* CSS Variables */
:root {
  --color-bg: #F5F0E6;
  --color-accent: #C45A3F;
  --color-accent-soft: #E8D5C4;
  --color-text: #4A3F35;
  --color-text-light: #6B5D52;
  --color-card-bg: #FFFFFF;
  --color-border: #D4C8B8;
  
  --color-brown-dark: #5D4037;
  --color-brown-muted: #8D6E63;
  --color-red-orange: #D35400;
  --color-tan-beige: #D7CCC8;
  --color-green-muted: #7CB342;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  
  --spacing-section-mobile: 3rem;
  --spacing-section-desktop: 5rem;
  --spacing-card: 1.5rem;
  --spacing-gap: 1rem;
  
  --radius-button: 8px;
  --radius-card: 12px;
  --radius-logo: 8px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Serif+Display:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

h4 {
  font-family: var(--font-heading);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-left,
.header-center,
.header-right {
  display: none;
}

.header-left {
  display: flex;
}

.header-center {
  display: none;
}

.header-right {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}

.header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-brand:hover {
  transform: scale(1.02);
}

.header-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
  font-family: "Rye", serif;
}

.header-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.header-nav-links a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.header-nav-links a:hover::after {
  width: 100%;
}

.header-nav-links a.active {
  color: var(--color-accent);
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Rye", serif;
  box-shadow: 0 4px 12px rgba(196, 90, 63, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-cta-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.header-cta:hover .header-cta-icon {
  transform: rotate(15deg) scale(1.1);
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-accent);
  font-family: "Rye", serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: var(--color-accent-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-phone-link:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.header-phone-link:active {
  transform: translateY(0);
}

.header-phone-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.header-phone-link:hover .header-phone-icon {
  transform: rotate(-10deg) scale(1.1);
}

.header-cta:hover {
  background: linear-gradient(135deg, #d06a4f 0%, #c45a3f 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(196, 90, 63, 0.45), 0 3px 8px rgba(196, 90, 63, 0.3);
  transform: translateY(-2px);
}

.header-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(196, 90, 63, 0.3);
}

.header-logo {
  height: 40px;
  width: auto;
  border-radius: var(--radius-logo);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.header-brand:hover .header-logo {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(196, 90, 63, 0.3);
}

.header-brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: "Rye", serif;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.header-brand:hover .header-brand-text {
  color: var(--color-accent);
  transform: translateX(4px);
}

.header-brand-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #c45a3f);
  transition: width 0.3s ease;
}

.header-brand:hover .header-brand-text::after {
  width: 100%;
}


.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.hamburger:hover span {
  background-color: var(--color-accent);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(253, 248, 243, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.95);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  line-height: 1;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav-close:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.8);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.2);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}

.mobile-nav-links a {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-button);
}

.mobile-nav-links a:hover {
  color: var(--color-accent);
  background-color: rgba(224, 122, 95, 0.08);
  transform: translateX(12px) scale(1.02);
}

.mobile-nav-links a.active {
  color: var(--color-accent);
  font-weight: 600;
}

.mobile-nav-links .btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d06a4f 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-button);
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.35);
  font-family: var(--font-main);
  font-weight: 500;
}

.mobile-nav-links .btn-primary:hover {
  color: white;
  background: linear-gradient(135deg, #d06a4f 0%, #c45a3f 100%);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.mobile-nav-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(196, 90, 63, 0.08);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 1rem;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-socials a svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.mobile-nav-socials a:hover {
  background-color: var(--color-accent);
  color: white;
  transform: scale(1.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  min-height: 48px;
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(196, 90, 63, 0.35), 0 2px 4px rgba(196, 90, 63, 0.2);
  font-family: "Rye", serif;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d06a4f 0%, #c45a3f 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(196, 90, 63, 0.5);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 90, 63, 0.3);
}

.btn-secondary {
  background-color: black;
  color: white;
  border: 2px solid black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 4px rgba(224, 122, 95, 0.1);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: white;
  box-shadow: 0 6px 16px rgba(224, 122, 95, 0.4);
  transform: translateY(-3px);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* Cards */
.card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: var(--spacing-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* Sections */
.section {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* About Us Section */
.about-section {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.about-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.about-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.about-text {
  text-align: left;
  flex: 1;
}

.about-text h2 {
  margin-bottom: 1rem;
  font-family: "Rye", serif;
}

.about-text p:last-child {
  margin-bottom: 0;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .about-text {
    text-align: left;
  }
  .about-logo-img {
    width: 160px;
    height: 160px;
  }
  .about-section {
    padding: var(--spacing-section-desktop) 2rem;
  }
}

/* Takeout Section */
.takeout-section {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}

.takeout-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.takeout-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.takeout-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.takeout-text {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.takeout-title {
  font-family: "Rye", serif;
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.takeout-description {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.takeout-cta {
  display: inline-block;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .takeout-content {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
  }

  .takeout-text {
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
  }

  .takeout-title {
    font-size: 3.5rem;
  }

  .takeout-section {
    padding: var(--spacing-section-desktop) 2rem;
    min-height: 500px;
  }
}

/* Contact/Map Section */
.contact-section {
  padding: var(--spacing-section-mobile) 1.5rem;
  background-color: var(--color-accent-soft);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0;
}

.contact-section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.contact-info-block h2 {
  margin-bottom: 1rem;
  font-family: "Rye", serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 1rem;
  font-family: "Rye", serif;
  text-align: center;
}

.contact-info-list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-list a:hover {
  color: var(--color-accent);
}

.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .contact-section {
    padding: var(--spacing-section-desktop) 2rem;
  }
  .contact-section-content {
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
}

.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .contact-section {
    padding: var(--spacing-section-desktop) 2rem;
  }
}

/* Contact/Map Section */
.contact-section {
  padding: var(--spacing-section-mobile) 1.5rem;
  background-color: var(--color-accent-soft);
}

.contact-section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section-content h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 1.5rem;
}

.contact-info-item p {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.contact-info-item a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .contact-section {
    padding: var(--spacing-section-desktop) 2rem;
  }
}

/* Hero Section */
.hero {
  width: 100%;
  height: 85vh;
  margin: 0;
  padding-top: 70px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.hero-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-taco-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--hero-image-position, 60%);
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content-overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero-logo {
  width: 260px;
  opacity: 0.9;
  max-width: 70vw;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
  z-index: 10;
}

.hero-text {
  text-align: center;
  margin-top: 0.5rem;
  z-index: 10;
}

.hero-title {
  font-family: "Rye", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffa632;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: "Rye", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f7d89f;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin: 0;
  line-height: 1.2;
}

.hero-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .hero-logo {
    width: 360px;
  }
  .hero-title {
    font-size: 3.5rem;
    color: #ffa632;
  }
  .hero-subtitle {
    font-size: 1.75rem;
    color: #f7d89f;
  }
  .hero-tagline {
    font-size: 1.1rem;
  }
}

/* Hero Info Section */
.hero-info-section {
  padding: 1rem 1.5rem;
  background-color: var(--color-bg);
  border-bottom: none;
}

.hero-info-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  background: var(--color-accent-soft);
  padding: 1rem 2rem;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .hero-info-section {
    padding: 1.25rem 1.5rem;
  }

  .hero-info-socials {
    display: flex !important;
  }

  .hero-info-content {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    text-align: left;
  }
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: var(--color-text);
  font-weight: 500;
  font-family: "Rye", serif;
}

@media (max-width: 767px) {
  .hero-info-item {
    font-size: 0.9rem;
  }
}

.hero-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.hero-info-item a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-info-item a:hover {
  color: var(--color-accent);
}

.hero-info-socials {
  display: none;
  align-items: center;
  gap: 1rem;
}

.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  border: 2px solid var(--color-text);
  border-radius: 50%;
}

.hero-social-icon {
  width: 20px;
  height: 20px;
}

.hero-social-link:hover {
  color: var(--color-accent);
  transform: scale(1.1);
  border-color: var(--color-accent);
}

/* Experience/Highlights Strip */
.experience-strip {
  padding: 2rem 1.5rem;
  background-color: var(--color-accent-soft);
}

.experience-strip-content {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-strip h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.experience-item {
  text-align: center;
  padding: 1rem;
}

.experience-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.experience-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Featured Menu Preview */
.menu-preview {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
}

.menu-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('Photos/papelpicado.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: -1;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.section-header {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  position: relative;
  top: -1px;
}

.section-icon:hover {
  transform: rotate(15deg) scale(1.1);
  color: #d06a4f;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.menu-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.menu-card h4 {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.story-preview p {
  margin-bottom: 0;
}

/* Our Story Preview */
.story-preview-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-card);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.story-preview-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.story-preview {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-preview h2 {
  margin-bottom: 1.5rem;
}

/* Contact/Visit Section */
.contact-visit {
  padding: var(--spacing-section-mobile) 1.5rem;
  background-color: var(--color-accent-soft);
}

.contact-visit-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-visit h2 {
  margin-bottom: 1.5rem;
}

.contact-visit p {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.contact-visit .hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.location-preview {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-preview:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.location-preview-info {
  margin-bottom: 1.5rem;
}

.location-preview-info p {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.location-preview-map {
  width: 100%;
  height: 200px;
  background-color: #f0f0f0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.location-preview-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Preview Cards Section */
.preview-cards {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.preview-cards h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.preview-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.preview-cards-grid .card.emphasized {
  border: 2px solid var(--color-accent);
}

/* Page Hero */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #666;
}

/* Content Block */
.content-block {
  padding: 0 1.5rem var(--spacing-section-mobile);
  max-width: 800px;
  margin: 0 auto;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Location Page */
.location-info {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.location-info p {
  margin-bottom: 0.5rem;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* Contact Page */
.contact-info {
  padding: var(--spacing-section-mobile) 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.form-placeholder {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-placeholder p {
  color: #666;
  text-align: center;
}

/* Menu Page */
.menu-pdf-viewer {
  padding: 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-pdf-viewer iframe {
  width: 100%;
  height: calc(100vh - 250px);
  min-height: 600px;
  border: none;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.menu-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  background-color: #EDE4D8;
  color: var(--color-text-light);
  font-size: 0.875rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  height: 50px;
  width: auto;
  border-radius: var(--radius-logo);
  margin-bottom: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin-bottom: 0.25rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--color-accent);
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-card-bg);
  border-radius: 50%;
  color: var(--color-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-nav:hover {
  color: var(--color-accent);
}

/* Desktop Styles */
@media (min-width: 768px) {
  .section {
    padding: var(--spacing-section-desktop) 2rem;
  }
  
  .header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  .header-left,
  .header-center,
  .header-right {
    display: flex;
  }
  
  .header-center {
    justify-content: center;
  }
  
  .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
  }

  .hamburger {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-content {
    display: flex;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-text {
    flex: 1;
    margin-bottom: 0;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-images {
    flex: 1;
  }
  
  .hero-images img {
    height: 200px;
  }
  
  .hero-images .large {
    height: 250px;
  }
  
  .experience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .preview-cards {
    padding: var(--spacing-section-desktop) 2rem;
  }
  
  .preview-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-hero {
    padding: 10rem 2rem 5rem;
  }
  
  .content-block {
    padding: 0 2rem var(--spacing-section-desktop);
  }
  
  .story-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  
  .story-text {
    flex: 1;
  }
  
  .story-image {
    flex: 1;
  }
  
  .story-image img {
    max-width: 100%;
  }
  
  .location-info,
  .contact-info {
    padding: var(--spacing-section-desktop) 2rem;
  }
  
  .menu-embed {
    padding: var(--spacing-section-desktop) 2rem;
  }
}

@media (min-width: 1024px) {
  .preview-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .menu-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
