/* ===================================
   CHURRASQUETO - Clone CSS 100%
   =================================== */

/* CSS Variables */
:root {
  --primary: #C70512;
  --primary-hover: #a50410;
  --background: #F8F5EC;
  --card-bg: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --border-color: #E5E5E5;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================
   HEADER
   =================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

header.transparent {
  background: transparent;
}

header.scrolled {
  background: rgba(248, 245, 236, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

header.transparent .logo span {
  color: white;
}

header.scrolled .logo span {
  color: var(--text-primary);
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
  position: relative;
}

header.scrolled nav a {
  color: var(--text-primary);
}

nav a:hover {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

header.scrolled .lang-switch button {
  color: var(--text-primary);
}

.lang-switch button:hover,
.lang-switch button.active {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

header.scrolled .menu-toggle span {
  background: var(--text-primary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/meat-skewer.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-info div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-info svg {
  width: 20px;
  height: 20px;
}

/* ===================================
   SECTIONS COMMON
   =================================== */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

/* ===================================
   MENU DE LA SEMAINE
   =================================== */
.menu-semaine-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--background) 0%, #fff 100%);
}

.menu-semaine-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.menu-semaine-container {
  max-width: 600px;
  margin: 0 auto;
}

.menu-semaine-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: white;
}

.menu-semaine-image img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(199, 5, 18, 0.3);
}

.menu-semaine-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===================================
   MENU SECTION (Rodízio & Carte)
   =================================== */
.menu-section {
  background: var(--background);
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.menu-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.menu-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.menu-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

/* ===================================
   EVENTS SECTION
   =================================== */
.events-section {
  background: var(--card-bg);
}

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

.event-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: var(--background);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 5, 18, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

.event-card .icon svg {
  width: 32px;
  height: 32px;
}

.event-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-container {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gradient-bg {
  background: linear-gradient(135deg, rgba(199, 5, 18, 0.15) 0%, rgba(199, 5, 18, 0.05) 100%);
  border: 1px solid rgba(199, 5, 18, 0.1);
}

.quote-content {
  padding: 4rem 2rem;
  text-align: center;
}

.quote-main {
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.quote-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Events Photo Grid */
.events-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .events-photos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.events-photo-item {
  border-radius: 1rem;
  overflow: hidden;
  height: 250px;
}

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

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

/* Gallery Overlay Styles */
.gallery-item {
  position: relative;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item .overlay span {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
  background: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-cta {
  text-align: center;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
  background: var(--card-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-image img {
  width: 100%;
  height: auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item span {
  color: var(--text-secondary);
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 1rem;
  font-size: 0.95rem;
}

.hours-row .day {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-row .time {
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.social-links svg {
  width: 24px;
  height: 24px;
}

/* Map */
.map-container {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-about h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-about p {
  opacity: 0.9;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact p {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.9;
  font-size: 0.875rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

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

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

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero h2 {
    font-size: 1.25rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hours-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0.5rem;
    background: var(--background);
    border-radius: 0.5rem;
  }
}

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

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

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

  .hero-info {
    flex-direction: column;
    gap: 1rem;
  }

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

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

/* Mobile Menu Open State */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 245, 236, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-mobile .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* ===================================
   GLORIAFOOD BUTTONS CUSTOMIZATION
   =================================== */
.glf-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  background: var(--primary) !important;
  color: white !important;
  text-transform: none !important;
  line-height: 1.6 !important;
  font-family: inherit !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.glf-button:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

header .glf-button {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.875rem !important;
}

.hero .glf-button.btn-outline {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.hero .glf-button.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: white !important;
}

.glf-button svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
}