/* ==========================================================================
   Fratello Fast Food - Agency Design System & Master Typography
   Location: Route Nationale 1 (RN1), Hammamet Sud, Tunisia
   Crafted: Editorial Magazine Layout, Authentic Contextual Media, Dynamic Motion
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,700;12..96,800;12..96,900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Official Brand Palette derived from Mascot Logo */
  --brand-black: #08080A;
  --bg-dark: #0D0D11;
  --bg-card: #14141A;
  --bg-card-hover: #1C1C24;
  
  --brand-yellow: #F6C12D;
  --brand-yellow-glow: rgba(246, 193, 45, 0.28);
  --brand-yellow-dark: #D4A219;

  --brand-red: #D32F2F;
  --brand-red-bright: #E53935;
  --brand-red-glow: rgba(229, 57, 53, 0.35);

  --brand-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-muted: #9E9EA8;
  --text-subtle: #6B6B76;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(246, 193, 45, 0.35);
  --border-red: rgba(229, 57, 53, 0.4);

  /* Social Media Palettes */
  --instagram-gradient: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --facebook-color: #1877F2;

  /* Glassmorphism System */
  --glass-bg: rgba(13, 13, 17, 0.88);
  --glass-border: rgba(246, 193, 45, 0.25);
  --glass-blur: blur(20px);

  /* Expressive Agency Typography */
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Cohesive Geometry System */
  --border-radius-xxl: 36px;
  --border-radius-xl: 28px;
  --border-radius-lg: 20px;
  --border-radius-md: 14px;
  --border-radius-sm: 8px;

  /* Motion & Spring Curve Physics */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--brand-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--brand-black);
  color: var(--text-primary);
  line-height: 1.6;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img, video {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-black);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-yellow-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-yellow);
}

/* Accessible Focus Ring & Skip Link */
:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 24px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: var(--border-radius-sm);
  z-index: 10000;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 24px;
}

/* Global Container Utility */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

/* --- Section Typography & Badges --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  font-weight: 800;
  margin-bottom: 16px;
  padding: 6px 18px;
  background: rgba(246, 193, 45, 0.08);
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
}

.section-tag i {
  color: var(--brand-red-bright);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-title span.yellow {
  color: var(--brand-yellow);
  text-shadow: 0 0 30px var(--brand-yellow-glow);
}

.section-title span.red {
  color: var(--brand-red-bright);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  font-weight: 500;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* --- Brand Button System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-brand-yellow {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #E0A812 100%);
  color: var(--brand-black);
  box-shadow: 0 10px 30px var(--brand-yellow-glow);
}
.btn-brand-yellow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(246, 193, 45, 0.45);
}

.btn-brand-red {
  background: linear-gradient(135deg, var(--brand-red-bright) 0%, var(--brand-red) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 30px var(--brand-red-glow);
}
.btn-brand-red:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(229, 57, 53, 0.5);
}

.btn-instagram {
  background: var(--instagram-gradient);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.35);
}
.btn-instagram:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 35px rgba(220, 39, 67, 0.55);
}

.btn-facebook {
  background: var(--facebook-color);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35);
}
.btn-facebook:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 35px rgba(24, 119, 242, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 2px solid var(--border-yellow);
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  background: var(--brand-yellow);
  color: var(--brand-black);
  border-color: var(--brand-yellow);
  transform: translateY(-3px);
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--brand-yellow);
  transition: var(--transition-fast);
}
.btn-icon:hover {
  background: var(--brand-yellow);
  color: var(--brand-black);
  transform: scale(1.1);
}

/* --- 1. FLOATING NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1280px);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 2px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  top: 12px;
  padding: 8px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(246, 193, 45, 0.15);
}

.brand-logo-link {
  display: flex;
  align-items: center;
  padding: 2px 0;
  transition: transform 0.3s ease;
}
.brand-logo-link:hover {
  transform: scale(1.05);
}

.official-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-yellow);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--brand-yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 193, 45, 0.1);
  border: 1px solid var(--border-yellow);
}
.mobile-nav-toggle span {
  width: 22px;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(28px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.mobile-drawer.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer .official-logo-img {
  height: 100px;
  margin-bottom: 8px;
}
.mobile-drawer .nav-links {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.mobile-drawer .nav-link {
  font-size: 1.5rem;
  font-weight: 800;
}

/* --- 2. CINEMATIC HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 170px 5% 90px;
  overflow: hidden;
  background: var(--brand-black);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.88) 85%),
              linear-gradient(to bottom, rgba(8, 8, 10, 0.7) 0%, transparent 40%, var(--brand-black) 98%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mascot-logo {
  height: 165px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 30px rgba(246, 193, 45, 0.35));
  animation: logoFloat 4.5s ease-in-out infinite;
  margin-bottom: 20px;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 100px;
  background: rgba(20, 20, 26, 0.92);
  border: 1.5px solid var(--brand-yellow);
  margin-bottom: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-red-bright);
  box-shadow: 0 0 12px var(--brand-red-bright);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.status-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-yellow);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.hero-headline .yellow {
  color: var(--brand-yellow);
  text-shadow: 0 4px 30px var(--brand-yellow-glow);
}

.hero-headline .red {
  color: var(--brand-red-bright);
}

.hero-subhead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 740px;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--brand-yellow);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--brand-yellow);
  border-radius: 12px;
  position: relative;
}

.wheel-dot {
  width: 4px;
  height: 8px;
  background: var(--brand-red-bright);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* --- 3. EDITORIAL MAGAZINE SPOTLIGHT 1: TACOS & WOOD-BAKED SANDWICHES --- */
.section-editorial-spotlight {
  padding: 110px 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-light);
}

.spotlight-grid-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spotlight-hero-card {
  position: relative;
  border-radius: var(--border-radius-xxl);
  overflow: hidden;
  border: 2px solid var(--border-yellow);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85);
  aspect-ratio: 4 / 3;
}

.spotlight-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spotlight-hero-card:hover img {
  transform: scale(1.06);
}

.spotlight-floating-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 20px;
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--brand-yellow);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-yellow);
}

.editorial-content-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 0 24px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checklist-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

.checklist-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.checklist-text span {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* --- 4. ASYMMETRIC SPOTLIGHT 2: TUNISIAN PLATTERS & HOT OJJA --- */
.section-asymmetric-spotlight {
  padding: 110px 0;
  background: var(--brand-black);
}

.asymmetric-3grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px;
  margin-top: 48px;
}

.asymmetric-main-card {
  grid-row: span 2;
  position: relative;
  border-radius: var(--border-radius-xxl);
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--border-yellow);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
}

.asymmetric-main-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.asymmetric-main-card:hover img {
  transform: scale(1.06);
}

.asymmetric-card-overlay {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.6) 70%, transparent 100%);
}

.asymmetric-side-card {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--transition-smooth);
}

.asymmetric-side-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-4px);
}

.asymmetric-side-card img {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--border-yellow);
}

/* --- 5. 7 PROMOTIONAL VIDEO REEL EXPERIENCE --- */
.section-videos {
  padding: 110px 0;
  background: var(--bg-dark);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin-top: 40px;
}

.featured-video-card {
  position: relative;
  border-radius: var(--border-radius-xxl);
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--border-yellow);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85);
  aspect-ratio: 16 / 9;
}

.featured-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-info {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 36px 32px 28px;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.98), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 3;
}

.video-meta h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-yellow);
}

.video-meta p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.video-side-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.side-video-card {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  aspect-ratio: 16 / 9;
  transition: var(--transition-smooth);
}
.side-video-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-4px);
}

.side-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 16px;
  background: var(--brand-red-bright);
  color: #FFFFFF;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
}

/* --- 6. DEDICATED SOCIAL COMMUNITY FEED SECTION --- */
.section-social {
  padding: 110px 0;
  background: var(--brand-black);
}

.social-cards-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  margin-top: 44px;
}

/* Instagram Custom Card Showcase */
.social-card-insta {
  background: var(--bg-card);
  border-radius: var(--border-radius-xxl);
  border: 2px solid var(--border-yellow);
  padding: 36px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.social-profile-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-profile-avatar-wrapper {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 3px;
  background: var(--instagram-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-profile-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brand-black);
}

.social-handle-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.social-handle-text p {
  font-size: 0.85rem;
  color: var(--brand-yellow);
  font-weight: 700;
}

.insta-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.insta-grid-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-grid-item:hover img {
  transform: scale(1.1);
}

.insta-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.insta-grid-item:hover .insta-hover-overlay {
  opacity: 1;
}

/* Facebook Custom Card Showcase */
.social-card-fb {
  background: var(--bg-card);
  border-radius: var(--border-radius-xxl);
  border: 2px solid var(--border-light);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85);
  transition: var(--transition-smooth);
}
.social-card-fb:hover {
  border-color: var(--facebook-color);
}

.fb-banner-preview {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 210px;
  margin-bottom: 28px;
  border: 1px solid var(--border-light);
}

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

.fb-banner-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1.5px solid var(--facebook-color);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
}

/* Desktop Floating Social Action Dock */
.floating-social-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.social-dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: var(--transition-bounce);
  font-size: 1.25rem;
}

.social-dock-btn.insta {
  background: var(--instagram-gradient);
}
.social-dock-btn.fb {
  background: var(--facebook-color);
}

.social-dock-btn:hover {
  transform: scale(1.15) translateY(-4px);
}

/* --- 7. LOCATION & GOOGLE MAPS --- */
.section-location {
  padding: 110px 0;
  background: var(--bg-dark);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: var(--brand-black);
  border-radius: var(--border-radius-xxl);
  border: 2px solid var(--border-yellow);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}

.location-info-panel {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.location-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-red-bright);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-item-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.location-item-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.location-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.7) invert(0.9) contrast(1.25) hue-rotate(180deg);
}

/* --- 8. VERIFIED GUEST REVIEWS --- */
.section-reviews {
  padding: 110px 0;
  background: var(--brand-black);
}

.reviews-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 2px solid var(--border-yellow);
  border-radius: 100px;
}

.stars {
  color: var(--brand-yellow);
  display: flex;
  gap: 4px;
}

.rating-score {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: #FFFFFF;
}

.reviews-carousel-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--border-radius-xxl);
  border: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-4px);
}

.review-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-family: var(--font-heading);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.reviewer-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- 9. FULL EDITORIAL GALLERY --- */
.section-gallery {
  padding: 110px 0;
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-light);
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

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

.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* --- 10. DIRECT CONTACT & INQUIRIES --- */
.section-contact {
  padding: 110px 0;
  background: var(--brand-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-card-box {
  background: var(--bg-card);
  border-radius: var(--border-radius-xxl);
  padding: 48px;
  border: 2px solid var(--border-yellow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-yellow);
}

.form-control {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-md);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-yellow);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

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

/* --- 11. FOOTER PROMINENT BRANDING & SOCIAL BADGES --- */
.footer {
  padding: 85px 0 40px;
  background: #040406;
  border-top: 2px solid var(--border-yellow);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo-img {
  height: 84px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.footer-social-badge.insta {
  background: var(--instagram-gradient);
}
.footer-social-badge.fb {
  background: var(--facebook-color);
}

.footer-social-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.footer-links-group {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-yellow);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modals Overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-card);
  border: 2px solid var(--brand-yellow);
  border-radius: var(--border-radius-xxl);
  max-width: 600px;
  width: 100%;
  padding: 44px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.95);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal-close:hover {
  background: var(--brand-yellow);
  color: var(--brand-black);
}

/* ==========================================================================
   PRODUCTION RESPONSIVE ARCHITECTURE & MOBILE BREAKPOINTS
   Target Devices: 320px (iPhone SE), 375px/390px/412px (iOS/Android), 768px (Tablet)
   Preserves 100% Desktop Experience & Brand Design Identity
   ========================================================================== */

/* --- TABLET & MEDIUM DESKTOP (<= 1024px) --- */
@media (max-width: 1024px) {
  .spotlight-grid-2col,
  .asymmetric-3grid,
  .social-cards-grid,
  .video-grid,
  .location-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .asymmetric-main-card {
    grid-row: span 1;
    min-height: 420px;
  }

  .navbar .nav-links {
    display: none;
  }

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

  .floating-social-dock {
    bottom: 20px;
    right: 20px;
  }
}

/* --- TABLET PORTRAIT & LARGE MOBILES (<= 768px) --- */
@media (max-width: 768px) {
  .section-editorial-spotlight,
  .section-asymmetric-spotlight,
  .section-dishes,
  .section-videos,
  .section-social,
  .section-location,
  .section-reviews,
  .section-gallery,
  .section-contact {
    padding: 70px 0;
  }

  .hero {
    padding: 130px 16px 60px;
    min-height: 85vh;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 7.5vw, 3.4rem);
    margin-bottom: 18px;
  }

  .hero-subhead {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .status-pill {
    padding: 6px 18px;
    margin-bottom: 22px;
  }

  .status-text {
    font-size: 0.75rem;
  }

  .reviews-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .rating-badge {
    align-self: flex-start;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-links-group {
    width: 100%;
    justify-content: space-between;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .floating-social-dock {
    display: none;
  }
}

/* --- STANDARD MOBILES (<= 640px) --- */
@media (max-width: 640px) {
  .hero-mascot-logo {
    height: 125px;
    margin-bottom: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
  }

  .scroll-indicator {
    display: none;
  }

  .dishes-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .featured-video-card {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .insta-photo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
    max-height: 420px;
    padding: 8px;
  }

  .fb-photo-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .fb-showcase-item {
    height: 130px !important;
  }

  .social-card-insta,
  .social-card-fb {
    padding: 24px 18px;
  }

  .social-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .insta-stats-row,
  .fb-stats-row {
    width: 100%;
    justify-content: space-around;
    padding: 8px 12px;
  }

  .location-info-panel {
    padding: 32px 20px;
  }

  .location-actions {
    flex-direction: column;
    width: 100%;
  }

  .location-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .map-container {
    min-height: 300px;
  }

  .contact-card-box {
    padding: 28px 18px;
  }

  /* Prevent iOS Safari input auto-zoom on field focus */
  .form-control,
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 28px 18px;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}

/* --- SMALL MOBILES (<= 412px, e.g. iPhone SE 320px, Galaxy S8/S20, iPhone 15/16) --- */
@media (max-width: 412px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-subhead {
    font-size: 0.95rem;
  }

  .status-pill {
    padding: 6px 14px;
  }

  .status-text {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

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

  .section-subtitle {
    font-size: 0.9rem;
  }

  .social-profile-info {
    gap: 12px;
  }

  .social-profile-avatar-wrapper {
    width: 52px !important;
    height: 52px !important;
  }

  .social-handle-text h3 {
    font-size: 1.05rem !important;
  }

  .insta-stats-row div strong,
  .fb-stats-row div strong {
    font-size: 0.9rem !important;
  }

  .insta-stats-row div span,
  .fb-stats-row div span {
    font-size: 0.7rem !important;
  }
}



/* Text Overflow & Handle Responsive Adjustments */
.social-handle-text h3 {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  font-size: clamp(0.95rem, 4.5vw, 1.25rem) !important;
}

@media (max-width: 480px) {
  .insta-stats-row, .fb-stats-row {
    padding: 8px 10px !important;
    gap: 8px !important;
    width: 100% !important;
    justify-content: space-between !important;
  }
  
  .insta-stats-row div strong, .fb-stats-row div strong {
    font-size: 0.85rem !important;
  }
  
  .insta-stats-row div span, .fb-stats-row div span {
    font-size: 0.7rem !important;
  }

  .social-card-insta .btn, .social-card-fb .btn {
    font-size: 0.85rem !important;
    padding: 12px 14px !important;
    word-break: break-word !important;
  }
}



/* --- CRITICAL MOBILE HORIZONTAL OVERFLOW PREVENTION --- */
.social-card-insta,
.social-card-fb {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.social-card-insta .btn,
.social-card-fb .btn {
  white-space: normal !important;
  word-wrap: break-word !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.insta-stats-row,
.fb-stats-row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-around !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  padding: 8px 10px !important;
}

.social-profile-info {
  flex-wrap: wrap !important;
  max-width: 100% !important;
}

.social-profile-info h3 {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}
