/* ============================================
   ENCANTO CAFE - Complete Stylesheet
   Encanto Cafe, Uppal | Best Cafe in Uppal
   Responsive: Desktop | iPad | Mobile
   Elementor-Compatible Structure
   ============================================ */

/* ----- CSS Custom Properties ----- */
:root {
  --clr-primary: #4A2C2A;
  --clr-primary-light: #6B3F3A;
  --clr-secondary: #C4956A;
  --clr-secondary-light: #D4A574;
  --clr-accent: #E8C88A;
  --clr-bg: #FFF8F0;
  --clr-bg-alt: #F5EDE0;
  --clr-dark: #2C1810;
  --clr-text: #3D2B1F;
  --clr-text-light: #8B7355;
  --clr-white: #FFFFFF;
  --clr-overlay: rgba(44, 24, 16, 0.7);
  --clr-whatsapp: #25D366;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-padding: 6rem 2rem;
  --container-max: 1200px;
  --grid-gap: 2rem;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
  --shadow-xl: 0 12px 60px rgba(44, 24, 16, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ============================================
   BUTTONS - Enhanced Animations
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: var(--clr-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 44, 42, 0.35);
  letter-spacing: 0.5px;
}

.btn-secondary {
  background: var(--clr-secondary);
  color: var(--clr-white);
}

.btn-secondary:hover {
  background: var(--clr-secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 149, 106, 0.4);
  letter-spacing: 0.5px;
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 44, 42, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Button shimmer effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-shimmer:hover::after {
  left: 100%;
}

/* Button pulse on hover */
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(196, 149, 106, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(196, 149, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 149, 106, 0); }
}

.btn:hover {
  animation: btnPulse 1.5s infinite;
}

.btn:active {
  animation: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(255, 248, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--clr-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-white);
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(10deg) scale(1.05);
}

.scrolled .logo { color: var(--clr-dark); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-white);
  position: relative;
  padding: 0.25rem 0;
}

.scrolled .nav-links a { color: var(--clr-text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active {
  color: var(--clr-secondary);
}

.scrolled .nav-links a.active { color: var(--clr-secondary); }

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}

.scrolled .nav-toggle span { background: var(--clr-dark); }

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.85) 0%,
    rgba(44, 24, 16, 0.5) 50%,
    rgba(44, 24, 16, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease-out;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badgeSlide 1s ease-out 0.3s both;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: heroTitleIn 1s ease-out 0.5s both;
}

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

.hero h1 span {
  color: var(--clr-secondary);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s ease-out 1.2s forwards;
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: heroFadeIn 1s ease-out 0.7s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: heroFadeIn 1s ease-out 0.9s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

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

.hero-scroll a {
  color: var(--clr-white);
  opacity: 0.7;
  font-size: 1.5rem;
}

.hero-scroll a:hover { opacity: 1; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: var(--section-padding);
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-bg-alt {
  background: var(--clr-bg-alt);
}

/* ============================================
   FEATURED / MENU CARDS
   ============================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.featured-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.featured-card-img {
  height: 240px;
  overflow: hidden;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.1);
}

.featured-card-body {
  padding: 1.5rem;
}

.featured-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.featured-card-body p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-secondary);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--clr-accent);
  color: var(--clr-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CHEF'S SPECIAL
   ============================================ */
.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.special-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.special-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

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

.special-image::after {
  content: "Chef's Special";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--clr-secondary);
  color: var(--clr-white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.special-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.special-content p {
  color: var(--clr-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.special-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.special-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.special-list li::before {
  content: '\2726';
  color: var(--clr-secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.testimonial-card {
  background: var(--clr-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--clr-text-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--clr-text-light);
}

/* ============================================
   HOURS & OFFERS
   ============================================ */
.hours-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hours-card,
.offer-card {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hours-card h3,
.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--clr-secondary);
}

.hours-table tr:last-child td { border-bottom: none; }

.offer-card {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  color: var(--clr-white);
}

.offer-card h3 { color: var(--clr-white); }

.offer-highlight {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--clr-accent);
  margin-bottom: 0.5rem;
}

.offer-card p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--clr-primary);
  padding: 4rem 2rem;
  text-align: center;
  width: 100%;
}

.newsletter h2 {
  color: var(--clr-white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  color: var(--clr-white);
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--clr-white);
}

.about-hero .hero-bg::after {
  background: linear-gradient(135deg, rgba(44,24,16,0.8) 0%, rgba(44,24,16,0.4) 100%);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--clr-secondary);
  color: var(--clr-white);
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

/* ============================================
   MENU PAGE STYLES
   ============================================ */
.page-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--clr-white);
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero h1 {
  color: var(--clr-white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.menu-cat-btn {
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--clr-secondary);
  background: transparent;
  color: var(--clr-primary);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3);
}

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

.menu-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-info { flex: 1; }

.menu-item-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.menu-item-info p {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  line-height: 1.4;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-secondary);
  flex-shrink: 0;
}

.menu-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--clr-primary);
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--clr-white);
  font-size: 1.5rem;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay span {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
  animation: lightboxIn 0.3s ease-out;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--clr-white);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 1rem;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--clr-secondary);
  color: var(--clr-white);
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form h2,
.map-container h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--clr-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-secondary);
  background: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(196, 149, 106, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.map-container {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 2rem 2rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand .logo {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  color: var(--clr-white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--clr-secondary);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1rem;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background: var(--clr-secondary);
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.6;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--clr-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--clr-white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--clr-white);
  color: var(--clr-dark);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation delays for grid items */
.featured-grid .featured-card:nth-child(1) { transition-delay: 0.1s; }
.featured-grid .featured-card:nth-child(2) { transition-delay: 0.2s; }
.featured-grid .featured-card:nth-child(3) { transition-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.values-grid .value-card:nth-child(1) { transition-delay: 0.1s; }
.values-grid .value-card:nth-child(2) { transition-delay: 0.2s; }
.values-grid .value-card:nth-child(3) { transition-delay: 0.3s; }
.values-grid .value-card:nth-child(4) { transition-delay: 0.4s; }

.contact-info-grid .contact-info-card:nth-child(1) { transition-delay: 0.1s; }
.contact-info-grid .contact-info-card:nth-child(2) { transition-delay: 0.2s; }
.contact-info-grid .contact-info-card:nth-child(3) { transition-delay: 0.3s; }
.contact-info-grid .contact-info-card:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding-top: 80px;
}

/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation-section {
  background: var(--clr-bg-alt);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.reservation-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.reservation-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   LOADING STATES
   ============================================ */
img {
  background: var(--clr-bg-alt);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-secondary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary-light); }

/* Selection */
::selection {
  background: var(--clr-secondary);
  color: var(--clr-white);
}

/* ============================================
   RESPONSIVE NAV (Mobile/Tablet Drawer)
   ============================================ */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--clr-dark);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--clr-white);
    font-size: 1.1rem;
  }

  .nav-links a::after { background: var(--clr-secondary); }

  .scrolled .nav-links a { color: var(--clr-white); }
  .scrolled .nav-links a.active { color: var(--clr-secondary); }

  .nav-toggle { display: flex; }

  .nav-cta { display: none; }

  .nav-links .mobile-cta {
    display: inline-flex;
    margin-top: 1rem;
  }
}

@media (min-width: 1025px) {
  .nav-links .mobile-cta { display: none; }
}

/* ============================================
   RESPONSIVE: iPad Pro / Large Tablets (1024px - 1199px)
   ============================================ */
@media (max-width: 1199px) and (min-width: 1025px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* ============================================
   RESPONSIVE: iPad (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }

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

  .special-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .special-image img {
    height: 350px;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .hours-offers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

  .about-story-image img {
    height: 350px;
  }

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

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .contact-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reservation-image img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .map-container iframe {
    min-height: 350px;
  }
}

/* ============================================
   RESPONSIVE: Mobile Large (481px - 767px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --section-padding: 3rem 1rem;
    --grid-gap: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 100vh;
    height: auto;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .featured-card-img {
    height: 200px;
  }

  .special-image img {
    height: 280px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .hours-offers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

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

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .reservation-image img {
    height: 250px;
  }

  .newsletter {
    padding: 3rem 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .map-container iframe {
    min-height: 280px;
  }

  .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
}

/* ============================================
   RESPONSIVE: Mobile Small (max 480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-padding: 2.5rem 1rem;
  }

  html {
    font-size: 15px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

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

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item {
    aspect-ratio: 1;
  }

  .menu-item {
    padding: 1rem;
    gap: 1rem;
  }

  .menu-item-img {
    width: 65px;
    height: 65px;
  }

  .about-story-image img {
    height: 250px;
  }

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

  .reservation-image img {
    height: 200px;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .hours-card,
  .offer-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .newsletter h2 {
    font-size: 1.3rem;
  }
}

/* ============================================
   LANDSCAPE MOBILE FIX
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 6rem 1rem 3rem;
  }

  .page-hero {
    height: auto;
    min-height: 250px;
    padding: 6rem 1rem 3rem;
  }

  .about-hero {
    height: auto;
    min-height: 250px;
    padding: 6rem 1rem 3rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .whatsapp-float,
  .hero-scroll,
  .newsletter,
  .site-footer { display: none; }
}

/* ============================================
   ELEMENTOR-COMPATIBLE UTILITY CLASSES
   ============================================ */
.elementor-section {
  width: 100%;
}

.elementor-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.elementor-row {
  display: flex;
  flex-wrap: wrap;
}

.elementor-column {
  flex: 1;
}

/* Full-width background sections (Elementor pattern) */
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
