/* --- BASE SETTINGS --- */
:root {
  --bg-dark: #1a0000; /* Deep Red/Black Base */
  --hibachi-red: #ff3e3e;
  --fire-orange: #ff8c00;
  --text-white: #ffffff;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--bg-dark);
  /* RADIAL GRADIENT: Glowing dark red center, fading to pitch black edges */
  background-image: 
      radial-gradient(circle at center, #3d0000 0%, #000000 90%);
  background-attachment: fixed;
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

/* --- TYPOGRAPHY & GLOWS --- */
h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.red-accent {
  color: var(--hibachi-red);
  text-shadow: 0 0 15px rgba(255, 62, 62, 0.6);
}

.price-badge {
  background-color: var(--hibachi-red);
  color: white;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: 600;
  vertical-align: middle;
}

/* --- MENU TOGGLE --- */
.menu-toggle-btn {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1001;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
}
.menu-toggle-btn:hover { transform: scale(1.1); border-color: var(--hibachi-red); }
.menu-toggle-btn .bar { width: 25px; height: 2px; background-color: white; margin: 5px 0; transition: 0.3s; }

/* --- NAV OVERLAY --- */
.nav-overlay {
  height: 100%; width: 100%; position: fixed; z-index: 1002; top: 0; left: 0;
  background-color: rgba(5, 5, 5, 0.98);
  opacity: 0; pointer-events: none; transition: 0.5s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.overlay-content { text-align: center; width: 100%; }
.overlay-content a {
  padding: 15px; text-decoration: none; font-size: 2.5rem;
  font-family: var(--font-head); color: #818181; display: block; transition: 0.3s;
}
.overlay-content a:hover { color: var(--hibachi-red); transform: scale(1.05); }
.nav-close-btn { position: absolute; top: 20px; right: 35px; font-size: 60px; color: white; cursor: pointer; }
.overlay-lang-btn {
  margin-top: 30px; background: transparent; border: 1px solid #444; color: white;
  padding: 15px 30px; font-family: var(--font-body); cursor: pointer; transition: 0.3s;
}
.overlay-lang-btn:hover { border-color: var(--hibachi-red); color: var(--hibachi-red); }

/* --- HERO SECTION --- */
.hero { height: 100vh; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.hero-content-centered { position: relative; z-index: 20; text-align: center; width: 100%; padding: 20px; }
.hero-logo { width: 180px; margin-bottom: 20px; filter: drop-shadow(0 0 20px rgba(255, 62, 62, 0.4)); }
.logo-text { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; text-shadow: 0 4px 30px rgba(0,0,0,0.9); margin-bottom: 10px; }
.tagline { font-size: 1.1rem; margin-bottom: 40px; color: #e2e8f0; text-shadow: 0 2px 4px black; }

.cta-btn {
  display: inline-block; padding: 18px 50px;
  background: var(--hibachi-red); border: 2px solid var(--hibachi-red);
  color: white; font-family: var(--font-head); font-size: 1.3rem; font-weight: bold;
  text-decoration: none; transition: 0.3s; border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 62, 62, 0.4);
}
.cta-btn:hover { background: white; color: var(--hibachi-red); transform: scale(1.05); }

/* --- ABOUT SECTION (Fixed for Full Image Scaling) --- */
.about-section { padding: 80px 20px; background: rgba(0,0,0,0.3); }
.about-container { max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 40px; }
.about-image { flex: 1 1 400px; }

/* The Grid Container */
.about-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 10px;
    align-items: start; /* Aligns images to the top to prevent stretching */
}
/* The Main Top Photo */
.about-main-photo {
    grid-column: span 2; /* Spans full width across top */
    width: 100%;
    height: auto; /* Allow full height naturally */
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    display: block; 
}
/* The Sub Photos */
.about-sub-photo {
    width: 100%;
    height: auto; /* Allow full height naturally */
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.3s;
    display: block; 
}
.about-sub-photo:hover { opacity: 0.8; border-color: var(--hibachi-red); }

.about-text { flex: 1 1 400px; margin-top: 10px; }
.about-text h2 { margin-bottom: 20px; color: var(--hibachi-red); }
.about-text p { margin-bottom: 15px; color: #ccc; }

/* --- SUB-PAGE STYLES --- */
.sub-header { padding: 40px 20px; text-align: center; background: #000; border-bottom: 1px solid #222; position: relative; }
.back-btn { position: absolute; top: 40px; left: 20px; color: white; text-decoration: none; font-weight: bold; }

/* --- MENU & EXTRAS (Used in menu.html) --- */
.menu-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; padding: 40px 20px; }
.menu-column { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 16px; }
.menu-column h3 { font-size: 1.8rem; color: var(--fire-orange); border-bottom: 2px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; margin-bottom: 25px; }
.menu-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.1); }
.highlight-text { font-weight: 700; color: white; }

.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto 60px; padding: 0 20px; }
.extra-box { background: #111; padding: 20px; text-align: center; border: 1px solid #222; }
.extra-box h4 { color: var(--hibachi-red); margin-bottom: 15px; }
.extra-box ul { list-style: none; }
.extra-box li { color: #888; margin: 5px 0; }

/* --- GALLERY --- */
.gallery-section { padding: 40px 20px; background: #0a0a0a; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; max-width: 1200px; margin: 0 auto; }
.photo-item { height: 250px; overflow: hidden; border-radius: 8px; border: 1px solid #222; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.photo-item:hover img { transform: scale(1.1); }

/* --- SETUP & FAQ (Used in info.html) --- */
.setup-section { padding: 0; }
.parallax-bg { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('setup.jpg'); background-attachment: fixed; background-size: cover; min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; }
.setup-content { max-width: 800px; padding: 60px 20px; }
.setup-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px;}
.setup-tag { border: 1px solid var(--hibachi-red); color: white; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; background: rgba(0,0,0,0.5); }

.faq-section { padding: 60px 20px; background: #080808; border-top: 1px solid #222; }
.faq-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 20px; }
.faq-item { background: #151515; padding: 20px; border-left: 3px solid #333; }
.faq-item h4 { color: white; margin-bottom: 5px; }
.faq-item p { color: #888; font-size: 0.95rem; }

/* --- POLICIES --- */
.policy-section { padding: 60px 20px; background: rgba(0,0,0,0.2); }
.policy-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.policy-card { background: rgba(30, 41, 59, 0.3); padding: 30px; border-radius: 8px; border: 1px solid #333; }
.policy-card h4 { color: var(--hibachi-red); font-size: 1.4rem; margin-bottom: 15px; }

/* --- REVIEWS --- */
.testimonials-section { background: #0b1120; padding: 80px 20px; }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #1e293b; padding: 40px; border-radius: 8px; border: 1px solid #334155; position: relative; }
.quote-icon { font-family: var(--font-head); font-size: 4rem; color: #334155; position: absolute; top: 10px; left: 20px; }
.review-text { position: relative; z-index: 2; font-style: italic; margin-bottom: 20px; color: #cbd5e1; }
.verified-link { color: #4ade80; text-decoration: none; font-weight: bold; font-size: 0.8rem; margin-left: 5px; }

/* --- VIDEO GRID --- */
.video-grid-section { padding: 80px 20px; background: #000; }
.video-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
a.video-card { display: block; position: relative; height: 500px; overflow: hidden; border-radius: 12px; border: 1px solid #333; transition: 0.4s; text-decoration: none; }
a.video-card:hover { transform: scale(1.02); border-color: var(--hibachi-red); }
.interactive-video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.8); transition: 0.5s; }
a.video-card:hover .interactive-video { filter: grayscale(0%) brightness(1.1); transform: scale(1.1); }
.vid-overlay { position: absolute; bottom: 20px; left: 0; width: 100%; text-align: center; pointer-events: none; z-index: 2; }
.vid-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: bold; color: white; letter-spacing: 4px; }
.click-indicator { font-family: var(--font-body); font-size: 0.8rem; border: 1px solid rgba(255, 255, 255, 0.3); padding: 5px 15px; border-radius: 20px; display: inline-block; color: white; margin-top: 5px; }

/* --- FOOTER --- */
footer { background: #000000; padding: 60px 20px; text-align: center; border-top: 2px solid var(--hibachi-red); }
.footer-logo-text { font-family: var(--font-head); font-size: 2rem; font-weight: bold; color: white; margin-bottom: 5px; }
.footer-sub { color: #64748b; margin-bottom: 40px; font-size: 0.9rem; letter-spacing: 1px; }
.contact-link, .social-link { display: block; color: white; text-decoration: none; font-size: 1.5rem; margin-bottom: 20px; font-weight: bold; }
.copyright { margin-top: 60px; color: #475569; font-size: 0.8rem; border-top: 1px solid #1e293b; padding-top: 20px; }

/* Mobile Tweaks */
@media (max-width: 768px) {
  .logo-text { font-size: 2.5rem; }
  .about-photo-grid { height: auto; }
  .video-card { height: 350px; }
  .back-btn { position: static; display: block; margin-bottom: 20px; }
  .about-container { flex-direction: column; }
}

/* Lang Logic */
body.english-active .lang-es { display: none !important; }
body.spanish-active .lang-en { display: none !important; }