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

body {
  font-family: "Georgia", "Garamond", serif;
  line-height: 1.6;
  color: #2c1810;
  background: #fef9f3;
}

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

/* Navbar - Spanish style with warm tones */
.navbar {
  background: linear-gradient(to bottom, #fff5e6, #ffffff);
  box-shadow: 0 4px 15px rgba(212, 106, 39, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #d46a27;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 20px;
}

.nav-brand a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d46a27;
  text-decoration: none;
  text-shadow: 2px 2px 0px rgba(212, 106, 39, 0.1);
  font-family: "Georgia", serif;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #5a3825;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 5px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d46a27;
  transition: width 0.3s;
}

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

.nav-menu a:hover,
.nav-menu a.active {
  color: #d46a27;
}

/* Index page - Hero section with Spanish flair */
.hero {
  background: linear-gradient(135deg, #8b4513 0%, #d46a27 50%, #ff8c42 100%);
  color: white;
  padding: 8rem 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Spanish tile pattern overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.03) 35px,
      rgba(255, 255, 255, 0.03) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.03) 35px,
      rgba(255, 255, 255, 0.03) 70px
    );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.8rem;
  letter-spacing: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
  font-family: "Georgia", serif;
}

.hero-description {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff5e6;
  font-weight: 300;
  font-style: italic;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Index page - About section with Spanish warmth */
.about {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fef9f3, #fff5e6);
  position: relative;
}

/* Decorative Spanish border */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #d46a27 0px,
    #d46a27 20px,
    #c85a1f 20px,
    #c85a1f 40px,
    #ff8c42 40px,
    #ff8c42 60px
  );
}

.about-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Georgia", serif;
}

.about-title-normal {
  font-weight: 400;
  color: #5a3825;
}

.about-title-highlight {
  font-weight: 700;
  color: #d46a27;
  text-shadow: 2px 2px 0px rgba(212, 106, 39, 0.1);
}

.about-content {
  max-width: 1100px;
  margin: 0 auto 3rem;
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(212, 106, 39, 0.15);
  border: 3px solid #ff8c42;
}

.about-description {
  font-size: 1.1rem;
  line-height: 2;
  color: #5a3825;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.underline-text {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #d46a27;
}

.underline-text::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -2px;
  height: 10px;
  background: #ff8c42;
  opacity: 0.4;
  border-radius: 3px;
  z-index: -1;
}

.dots {
  color: #d46a27;
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 1.5rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  border: 5px solid #d46a27;
  box-shadow: 0 8px 25px rgba(212, 106, 39, 0.25);
  position: relative;
}

/* Spanish tile corner decoration */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #d46a27 0%, transparent 100%);
  z-index: 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(-45deg, #d46a27 0%, transparent 100%);
  z-index: 2;
}

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

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

.gallery-large {
  height: 100%;
  min-height: 500px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-medium {
  height: 300px;
}

.gallery-row {
  display: grid;
  gap: 2rem;
}

.gallery-small {
  height: 180px;
}

/* Index page - Contact section with Spanish orange */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #d46a27 0%, #ff8c42 100%);
  position: relative;
  overflow: hidden;
}

/* Spanish pattern background */
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.bullet {
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-hours {
  line-height: 1.9;
}

.contact-hours strong {
  font-weight: 700;
  color: #fff5e6;
}

.contact-qr {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #fff5e6;
}

.contact-qr img {
  width: 200px;
  height: 200px;
  display: block;
}

/* Menu page - Spanish themed sections */
.menu-hero-banner {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.menu-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(139, 69, 19, 0.8), rgba(212, 106, 39, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Spanish tile pattern on hero */
.menu-hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.05) 40px,
    rgba(255, 255, 255, 0.05) 80px
  );
  pointer-events: none;
}

.menu-hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.4rem;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
  font-family: "Georgia", serif;
  position: relative;
  z-index: 2;
}

.menu-hero-subtitle {
  font-size: 1.6rem;
  color: #fff5e6;
  letter-spacing: 0.3rem;
  font-weight: 300;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Featured dishes section - Spanish style */
.menu-featured-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  position: relative;
}

.menu-featured-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, #d46a27 0px, #d46a27 30px, #ff8c42 30px, #ff8c42 60px);
}

.featured-title {
  text-align: center;
  font-size: 3rem;
  color: #d46a27;
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-family: "Georgia", serif;
  text-shadow: 2px 2px 0px rgba(212, 106, 39, 0.1);
  position: relative;
}

.featured-title::after {
  content: "✦";
  display: block;
  font-size: 1.5rem;
  color: #ff8c42;
  margin-top: 0.5rem;
}

.featured-dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-dish-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 106, 39, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 4px solid #ff8c42;
  position: relative;
}

/* Spanish corner decoration */
.featured-dish-card::before {
  content: "❋";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #d46a27;
  z-index: 3;
}

.featured-dish-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(212, 106, 39, 0.3);
}

.featured-dish-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-dish-info {
  padding: 1.8rem;
  text-align: center;
  background: linear-gradient(to bottom, #fff, #fff5e6);
}

.featured-dish-info h3 {
  font-size: 1.4rem;
  color: #5a3825;
  margin-bottom: 0.5rem;
  font-family: "Georgia", serif;
  font-weight: 700;
}

.featured-dish-info p {
  color: #8b6f47;
  font-size: 1rem;
  font-style: italic;
}

/* Updated Spanish-themed color blocks with light to deep orange gradient from top to bottom */
.menu-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Light Orange - First category (Ensaladas) */
.menu-section-light-orange {
  background: linear-gradient(135deg, #ffb366 0%, #ff9d4d 50%, #ff8c42 100%);
  color: #3d2817;
  border-top: 8px solid #ffd699;
  border-bottom: 8px solid #ff7a29;
}

.menu-section-light-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.08) 50px,
      rgba(255, 255, 255, 0.08) 100px
    ), radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Medium-Light Orange - Second category (Entrantes) */
.menu-section-medium-light-orange {
  background: linear-gradient(135deg, #ff9d4d 0%, #ff8533 50%, #ff7a29 100%);
  color: white;
  border-top: 8px solid #ffb366;
  border-bottom: 8px solid #e66a1f;
}

.menu-section-medium-light-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.06) 50px,
    rgba(255, 255, 255, 0.06) 100px
  );
  pointer-events: none;
}

/* Medium Orange - Third category (Sopas) */
.menu-section-medium-orange {
  background: linear-gradient(135deg, #ff7a29 0%, #f46b1f 50%, #e85d1a 100%);
  color: white;
  border-top: 8px solid #ff9d4d;
  border-bottom: 8px solid #d44f15;
}

.menu-section-medium-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.05) 60px,
    rgba(255, 255, 255, 0.05) 120px
  );
  pointer-events: none;
}

/* Medium-Deep Orange - Fourth category (Platos Principales) */
.menu-section-medium-deep-orange {
  background: linear-gradient(135deg, #e85d1a 0%, #d94f15 50%, #d46a27 100%);
  color: white;
  border-top: 8px solid #ff7a29;
  border-bottom: 8px solid #c04010;
}

.menu-section-medium-deep-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.04) 50px,
      rgba(255, 255, 255, 0.04) 100px
    ), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Deep Orange - Fifth category (Platos Especiales) */
.menu-section-deep-orange {
  background: linear-gradient(135deg, #d46a27 0%, #c04010 50%, #b8360b 100%);
  color: white;
  border-top: 8px solid #e85d1a;
  border-bottom: 8px solid #a02c08;
}

.menu-section-deep-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.03) 50px,
    rgba(255, 255, 255, 0.03) 100px
  );
  pointer-events: none;
}

/* Deeper Orange - Sixth category (Postre) */
.menu-section-deeper-orange {
  background: linear-gradient(135deg, #b8360b 0%, #a02c08 50%, #8b2406 100%);
  color: white;
  border-top: 8px solid #d46a27;
  border-bottom: 8px solid #751c04;
}

.menu-section-deeper-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.04) 60px,
    rgba(255, 255, 255, 0.04) 120px
  );
  pointer-events: none;
}

/* Very Deep Orange - Seventh category (Refresco) */
.menu-section-very-deep-orange {
  background: linear-gradient(135deg, #8b2406 0%, #751c04 50%, #5f1403 100%);
  color: white;
  border-top: 8px solid #b8360b;
  border-bottom: 8px solid #4a0f02;
}

.menu-section-very-deep-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.05) 50px,
      rgba(255, 255, 255, 0.05) 100px
    ), radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Darkest Orange - Eighth category (Cerveza) */
.menu-section-darkest-orange {
  background: linear-gradient(135deg, #5f1403 0%, #4a0f02 50%, #3d0c01 100%);
  color: #ffd699;
  border-top: 8px solid #8b2406;
  border-bottom: 8px solid #2f0901;
}

.menu-section-darkest-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.06) 50px,
    rgba(255, 255, 255, 0.06) 100px
  );
  pointer-events: none;
}

/* Wine sections - alternating between medium and deep oranges */
.menu-section-wine-light {
  background: linear-gradient(135deg, #ff8533 0%, #e85d1a 50%, #d94f15 100%);
  color: white;
  border-top: 8px solid #ff9d4d;
  border-bottom: 8px solid #c04010;
}

.menu-section-wine-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.05) 60px,
    rgba(255, 255, 255, 0.05) 120px
  );
  pointer-events: none;
}

.menu-section-wine-deep {
  background: linear-gradient(135deg, #d94f15 0%, #b8360b 50%, #a02c08 100%);
  color: white;
  border-top: 8px solid #e85d1a;
  border-bottom: 8px solid #8b2406;
}

.menu-section-wine-deep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.04) 50px,
    rgba(255, 255, 255, 0.04) 100px
  );
  pointer-events: none;
}

/* Remove old color block classes */
.menu-section-red,
.menu-section-burgundy,
.menu-section-olive {
  display: none;
}

/* Spanish tile border decoration */
.menu-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0px,
    rgba(255, 255, 255, 0.3) 20px,
    rgba(255, 255, 255, 0.1) 20px,
    rgba(255, 255, 255, 0.1) 40px
  );
}

.category-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.menu-category {
  font-size: 2.8rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-family: "Georgia", serif;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}

/* Spanish decorative circle */
.circle-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 420px;
  height: 110px;
  border: 6px solid;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.circle-pink {
  border-color: rgba(255, 255, 255, 0.6);
}

.circle-coral {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Enhanced category headers with Spanish flair */
.category-header-enhanced {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* Fixed category-icon rule and completed remaining CSS */
.category-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* Enhanced menu items with Spanish tile inspiration */
.menu-items-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.menu-item-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-enhanced:hover {
  background: rgba(255, 255, 255, 0.25);
  border-left-color: rgba(255, 255, 255, 0.8);
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.menu-item-enhanced.featured-item {
  background: rgba(255, 255, 255, 0.25);
  border-left-color: #ffd700;
  border-left-width: 8px;
}

.menu-item-enhanced.featured-item::before {
  content: "★";
  position: absolute;
  left: -15px;
  font-size: 1.5rem;
  color: #ffd700;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.item-number {
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
  font-family: "Georgia", serif;
}

.item-name {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Georgia", serif;
  letter-spacing: 0.5px;
}

.item-description {
  font-size: 0.95rem;
  opacity: 0.85;
  font-style: italic;
}

.item-price {
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1.5rem;
  font-family: "Georgia", serif;
}

.popular-badge {
  display: inline-block;
  background: #ffd700;
  color: #3d2817;
  padding: 0.3rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.4rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Grid layout for drinks */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

/* Main dishes showcase with Spanish style */
.main-dishes-showcase {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.showcase-item {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  position: relative;
}

.showcase-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.showcase-item:hover {
  transform: scale(1.15) rotate(8deg);
}

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

/* Call to action section - Spanish orange gradient */
.menu-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #d46a27 0%, #ff8c42 50%, #ffb366 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: "Georgia", serif;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Georgia", serif;
}

.cta-btn-primary {
  background: white;
  color: #d46a27;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
  background: #fff5e6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.cta-btn-secondary:hover {
  background: white;
  color: #d46a27;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Added light orange Spanish tile backgrounds for dishes page sections */
/* Dishes page - Banner with Spanish style */
.dishes-banner {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-bottom: 6px solid #d46a27;
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to bottom, rgba(139, 69, 19, 0.7), rgba(212, 106, 39, 0.4)); */
  padding: 2rem;
}

/* Dishes page - Function buttons with light orange Spanish tile background */
.function-buttons {
  padding: 3rem 0;
  background: linear-gradient(135deg, #ffd9b3 0%, #ffcc99 50%, #ffb366 100%);
  position: relative;
  overflow: hidden;
  border-top: 5px solid #ff8c42;
  border-bottom: 5px solid #ff8c42;
}

.function-buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(212, 106, 39, 0.08) 40px,
      rgba(212, 106, 39, 0.08) 80px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(212, 106, 39, 0.08) 40px,
      rgba(212, 106, 39, 0.08) 80px
    );
  pointer-events: none;
}

.buttons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.func-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: white;
  border: 3px solid #ff8c42;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 106, 39, 0.15);
}

.func-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(212, 106, 39, 0.25);
  border-color: #d46a27;
}

.func-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.func-btn span {
  font-size: 1rem;
  color: #5a3825;
  font-weight: 600;
}

/* Dishes page - Recommendations tabs with golden orange Spanish tile background */
.recommendations-tabs {
  padding: 2rem 0;
  background: linear-gradient(135deg, #ffe6cc 0%, #ffd9b3 50%, #ffcc99 100%);
  border-top: 3px solid #ff8c42;
  border-bottom: 3px solid #ff8c42;
  position: relative;
  overflow: hidden;
}

.recommendations-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(212, 106, 39, 0.06) 50px,
      rgba(212, 106, 39, 0.06) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(212, 106, 39, 0.06) 50px,
      rgba(212, 106, 39, 0.06) 100px
    );
  pointer-events: none;
}

.tabs-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.tab-label {
  color: #d46a27;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Georgia", serif;
}

.tabs-list {
  display: flex;
  gap: 1rem;
}

.tab {
  background: white;
  border: 2px solid #ff8c42;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #5a3825;
  transition: all 0.3s ease;
}

.tab:hover {
  background: #fff5e6;
  transform: translateY(-2px);
}

.tab.active {
  background: linear-gradient(135deg, #d46a27, #ff8c42);
  color: white;
  border-color: #d46a27;
  box-shadow: 0 4px 15px rgba(212, 106, 39, 0.3);
}

/* Dishes page - Dishes grid with light beige-orange Spanish tile background */
.dishes-showcase-v2 {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 50%, #ffd9b3 100%);
  position: relative;
  overflow: hidden;
}

.dishes-showcase-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(212, 106, 39, 0.05) 60px,
      rgba(212, 106, 39, 0.05) 120px
    ), radial-gradient(circle at 20% 30%, rgba(255, 140, 66, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.dishes-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.dish-item-v2 {
  text-align: center;
  transition: transform 0.3s ease;
}

.dish-item-v2:hover {
  transform: translateY(-10px);
}

.dish-item-v2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 0.8rem;
  border: 4px solid #ff8c42;
  box-shadow: 0 6px 20px rgba(212, 106, 39, 0.2);
}

.dish-item-v2 h3 {
  font-size: 1.05rem;
  color: #5a3825;
  font-weight: 700;
  font-family: "Georgia", serif;
}

/* Dishes page - About us */
.about-us-v2 {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fef9f3, #fff5e6);
}

.section-title-red {
  color: #d46a27;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-family: "Georgia", serif;
  font-weight: 700;
  text-shadow: 2px 2px 0px rgba(212, 106, 39, 0.1);
}

.about-content-v2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}

.about-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 5px solid #d46a27;
  box-shadow: 0 8px 25px rgba(212, 106, 39, 0.2);
}

.about-text-v2 p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
  color: #5a3825;
  font-size: 1.05rem;
}

/* Dishes page - Food info */
.food-info-v2 {
  padding: 4rem 0;
  background: white;
}

.food-info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.info-list-v2 ul {
  list-style: none;
}

.info-list-v2 li {
  padding: 1rem 0;
  border-bottom: 2px solid #fff5e6;
  color: #5a3825;
  font-size: 1.05rem;
}

.info-list-v2 li::before {
  content: "❋";
  color: #d46a27;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.featured-dish-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 5px solid #ff8c42;
  box-shadow: 0 8px 25px rgba(212, 106, 39, 0.2);
}

/* Footer with Spanish warmth */
.footer-v2 {
  background: linear-gradient(135deg, #5a3825, #3d2817);
  color: #fff5e6;
  padding: 3.5rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-col h3 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: #ff8c42;
  font-family: "Georgia", serif;
}

.footer-col p {
  color: #d4a574;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

footer {
  background: #3d2817;
  color: #d4a574;
  padding: 2.5rem 0;
  text-align: center;
  border-top: 3px solid #d46a27;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .menu-hero-title {
    font-size: 3rem;
  }

  .menu-hero-subtitle {
    font-size: 1.1rem;
  }

  .featured-dishes-grid {
    grid-template-columns: 1fr;
  }

  .category-header-enhanced {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .main-dishes-showcase {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-content-v2,
  .food-info-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .menu-hero-banner {
    height: 350px;
  }

  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  .item-price {
    font-size: 1.2rem;
  }

  .circle-decoration {
    width: 250px;
    height: 80px;
  }

  .dishes-grid-v2 {
    grid-template-columns: 1fr;
  }
}
