/*
  Awedaddy's Bar & Grill - Central Stylesheet (Updated Version)
  Design System: Retro-Modern Waterfront Grill (Neo-Brutalism & Dark Mode Accent)
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #0b0b0a;
  --bg-secondary: #141413;
  --bg-tertiary: #1e1e1d;
  --color-yellow: #ffc834;
  --color-yellow-glow: rgba(255, 200, 52, 0.2);
  --color-yellow-light: #fdfe98;
  --color-red: #ab3f2e;
  --color-orange: #e86f2c;
  --text-light: #f5f5f4;
  --text-muted: #a1a19b;
  --border-color: #2b2b28;
  --border-highlight: #ffc834;
  --border-red: #ab3f2e;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-offset: 6px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

p {
  color: var(--text-muted);
  font-weight: 300;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: var(--border-radius-md);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-yellow);
}

/* Selection Highlight */
::selection {
  background-color: var(--color-yellow);
  color: var(--bg-primary);
}

/* Standard Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  text-transform: uppercase;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-yellow);
  color: var(--bg-primary);
  border: 2px solid var(--color-yellow);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--color-red);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--color-red);
  background-color: var(--color-yellow-light);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--color-red);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
}

.badge-yellow {
  background-color: var(--color-yellow);
  color: var(--bg-primary);
}

.badge-red {
  background-color: var(--color-red);
  color: var(--text-light);
}

/* Sticky Navigation Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(11, 11, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  border-bottom: 2px solid var(--color-yellow);
}

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

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

.nav-logo img {
  height: 55px;
  width: auto;
  transition: var(--transition-normal);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.navbar.scrolled .nav-logo img {
  height: 48px;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.nav-logo-text span {
  font-size: 0.8rem;
  font-family: 'Outfit', sans-serif;
  color: var(--color-yellow);
  letter-spacing: 0.1em;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-item a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  position: relative;
  padding: 0.3rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-item a:hover {
  color: var(--color-yellow);
}

.nav-item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: left;
}

/* Specials Marquee Banner */
.marquee-container {
  margin-top: 80px; /* Offset navbar */
  background-color: var(--color-red);
  border-bottom: 2px solid var(--color-yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  z-index: 10;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--color-yellow-light);
}

.marquee-content span {
  margin-right: 4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.marquee-content span::after {
  content: '★';
  color: var(--color-yellow);
  font-size: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgb(20 20 19 / 0%) 0%, rgb(33 33 33 / 48%) 100%), url(assets/hero.webp) no-repeat center center / cover;
    padding: 8rem 2rem;
    min-height: calc(85vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
}

/* Dot overlay for retro look */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--bg-primary) 20%, transparent 20%);
  background-size: 16px 16px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: var(--container-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(20, 20, 19, 0.8);
  border: 1px solid var(--color-yellow);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.hero h1 {
  font-size: 5rem;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.8);
}

.hero h1 span {
  color: var(--color-yellow);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-card-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background-color: var(--bg-secondary);
  border: 2px solid var(--color-yellow);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  max-width: 420px;
  box-shadow: 8px 8px 0px var(--color-red);
  transform: rotate(1deg);
  transition: var(--transition-normal);
}

.hero-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 12px 12px 0px var(--color-red);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.hero-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--color-yellow);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-rating-stars {
  color: var(--color-yellow);
}

.hero-card-text {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

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

.hero-status {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-status span:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-status span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--color-yellow);
}

/* Quick Features Info Grid */
.features {
  background-color: var(--bg-secondary);
  padding: 4rem 2rem;
  border-bottom: 2px solid var(--border-color);
}

.features-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
}

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

.feature-icon {
  background-color: var(--bg-primary);
  border: 1px solid var(--color-yellow);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--color-yellow);
}

.feature-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-light);
}

.feature-info p {
  font-size: 0.9rem;
}

/* Sections Global Styling */
.section-padding {
  padding: 6rem 2rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--color-yellow);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-red);
  border-radius: 2px;
}

/* Offerings Cards Section (What We Offer) */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.offer-card {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-yellow);
}

.offer-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
  box-shadow: 4px 4px 0px rgba(255, 200, 52, 0.05);
}

.offer-card h3 {
  font-size: 1.8rem;
  color: var(--color-yellow);
  margin-bottom: 0.6rem;
}

.offer-card p {
  font-size: 0.95rem;
}

/* Interactive Menu Section */
.menu-section {
  background-color: var(--bg-primary);
  border-bottom: 2px solid var(--border-color);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.menu-tab {
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  border: 2px solid var(--border-color);
  padding: 0.8rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: uppercase;
}

.menu-tab:hover {
  color: var(--text-light);
  border-color: var(--color-yellow);
}

.menu-tab.active {
  background-color: var(--color-yellow);
  color: var(--bg-primary);
  border-color: var(--color-yellow);
  box-shadow: 4px 4px 0px var(--color-red);
  transform: translate(-2px, -2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: opacity var(--transition-normal);
}

.menu-card {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-normal);
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-yellow);
  box-shadow: 6px 6px 0px var(--bg-primary);
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.menu-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.menu-card-title {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
}

.menu-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--color-yellow);
  flex-shrink: 0;
}

.menu-card-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-card-action {
  width: 100%;
  padding: 0.6rem;
  font-size: 1.1rem;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  background-color: var(--bg-tertiary);
  color: var(--text-light);
  transition: var(--transition-fast);
}

.menu-card:hover .menu-card-action {
  border-color: var(--color-yellow);
  background-color: var(--color-yellow);
  color: var(--bg-primary);
}

/* Feature Drink Promo Block */
.promo-block {
  margin-top: 4rem;
  background-color: var(--bg-secondary);
  border: 2px solid var(--color-yellow);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--color-red);
}

.promo-img {
  height: 100%;
  min-height: 320px;
}

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

.promo-content {
  padding: 3.5rem;
}

.promo-content h3 {
  font-size: 3rem;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}

.promo-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Events Calendar Section */
.calendar-section {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border-color);
}

.calendar-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.calendar-tab {
  background-color: var(--bg-primary);
  color: var(--text-muted);
  border: 2px solid var(--border-color);
  padding: 0.8rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.calendar-tab:hover {
  color: var(--text-light);
  border-color: var(--color-yellow);
}

.calendar-tab.active {
  background-color: var(--color-red);
  color: var(--text-light);
  border-color: var(--color-yellow);
  box-shadow: 4px 4px 0px var(--color-yellow);
  transform: translate(-2px, -2px);
}

.calendar-pane {
  display: none;
}

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

.event-row {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: var(--transition-normal);
}

.event-row:hover {
  border-color: var(--color-yellow);
  transform: scale(1.01);
  box-shadow: 4px 4px 0px rgba(255,200,52,0.05);
}

.event-date-box {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--color-yellow);
  width: 75px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
}

.event-date-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-yellow);
  font-weight: 600;
}

.event-date-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--text-light);
}

.event-details {
  flex-grow: 1;
}

.event-artist {
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.event-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  background-color: var(--color-red);
  color: var(--text-light);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-primary);
  border-bottom: 2px solid var(--border-color);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  border-color: var(--color-yellow);
  box-shadow: 6px 6px 0px rgba(255,200,52,0.1);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 11, 10, 0.9) 0%, rgba(11, 11, 10, 0.2) 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity var(--transition-fast);
}

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

.gallery-overlay h4 {
  font-size: 1.5rem;
  color: var(--color-yellow);
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Fullscreen Lightbox Popup */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 10, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 4px solid var(--color-yellow);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border-radius: var(--border-radius-md);
}

.lightbox-caption {
  margin-top: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--color-yellow);
  text-align: center;
}

.lightbox-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 500px;
  text-align: center;
  margin-top: 0.4rem;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(30, 30, 29, 0.8);
  border: 2px solid var(--border-color);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  transition: var(--transition-fast);
  user-select: none;
}

.lightbox-btn:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background-color: var(--bg-primary);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 2.5rem;
  color: var(--text-light);
  cursor: pointer;
  font-family: sans-serif;
}

.lightbox-close:hover {
  color: var(--color-red);
}

/* Story / Backstory Section */
.story-section {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

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

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.story-img-card {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 380px;
}

.story-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-card:first-child {
  transform: rotate(-2deg);
  border-color: var(--color-yellow);
  box-shadow: 4px 4px 0px var(--color-red);
}

.story-img-card:last-child {
  transform: rotate(2deg);
  margin-top: 2rem;
}

.story-content h3 {
  font-size: 2.5rem;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Google Reviews Widget */
.reviews-section {
  background-color: var(--bg-primary);
  border-bottom: 2px solid var(--border-color);
}

.reviews-summary {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--color-yellow);
}

.reviews-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-yellow);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.reviews-score span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.reviews-summary-info h4 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.reviews-summary-stars {
  color: var(--color-yellow);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.reviews-summary-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.review-card {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.review-card:hover {
  border-color: var(--color-yellow);
  box-shadow: 6px 6px 0px rgba(255,200,52,0.1);
  transform: translateY(-4px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--bg-tertiary);
  border: 2px solid var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-yellow);
  font-size: 1.2rem;
}

.review-author h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-rating {
  color: var(--color-yellow);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
  flex-grow: 1;
}

/* Profile Facts Block Styles */
.profile-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.profile-fact-group h4 {
  font-size: 1.2rem;
  color: var(--color-yellow);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.profile-tag {
  font-size: 0.85rem;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  color: var(--text-light);
}

/* Contact Form Section */
.contact-section {
  background-color: var(--bg-primary);
  border-bottom: 2px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-form-container {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--color-red);
}

.contact-form-container h3 {
  font-size: 2.5rem;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 0.8rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 8px rgba(255, 200, 52, 0.15);
}

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

.form-alert {
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.form-alert-success {
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
}

.form-alert-error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* Contact, Map, Hours Block */
.info-section {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border-color);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

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

.info-block-card {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
}

.info-block-card:hover {
  border-color: var(--color-yellow);
}

.info-card-title {
  font-size: 2rem;
  color: var(--color-yellow);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.info-card-title span {
  color: var(--color-red);
}

.info-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-hours-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.4rem;
}

.info-hours-item.active {
  color: var(--color-yellow);
  font-weight: 600;
  border-bottom: 1px dashed var(--color-yellow);
}

.info-hours-item span:first-child {
  font-weight: 500;
}

.info-alert {
  background-color: rgba(171, 63, 46, 0.15);
  border: 1px solid var(--color-red);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-top: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  gap: 0.8rem;
}

.info-alert-icon {
  color: var(--color-red);
  font-weight: bold;
}

.info-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.info-contact-item:last-child {
  margin-bottom: 0;
}

.info-contact-icon {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-contact-details h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.info-contact-details p {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 400;
}

.info-contact-details a:hover {
  color: var(--color-yellow);
}

.map-container {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--color-red);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Stylized dark map */
}

/* Footer Section */
.footer {
  background-color: var(--bg-primary);
  padding: 4rem 2rem 6rem 2rem; /* extra bottom padding for mobile bar */
  border-top: 2px solid var(--border-color);
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  border-color: var(--color-yellow);
  color: var(--bg-primary);
  background-color: var(--color-yellow);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 1.5rem;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--color-yellow);
  padding-left: 5px;
}

.footer-copyright {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Bottom Navigation Bar (App-like feel) */
.mobile-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(18, 18, 17, 0.96);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--color-yellow);
  z-index: 999;
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 0 1rem;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  gap: 0.2rem;
  padding: 0.5rem 1rem;
}

.mobile-nav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--color-yellow);
}

.mobile-nav-item-order {
  background-color: var(--color-yellow);
  color: var(--bg-primary) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  top: -16px;
  box-shadow: 0 4px 12px rgba(255, 200, 52, 0.4);
  border: 2px solid var(--color-red);
}

.mobile-nav-item-order svg {
  width: 24px;
  height: 24px;
}

/* Pulse animation for active dot */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Media Queries for Responsive Design */

/* Large Screens */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .story-grid {
    gap: 3rem;
  }
  .lightbox-prev {
    left: -50px;
  }
  .lightbox-next {
    right: -50px;
  }
}

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  :root {
    --container-width: 720px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-card-wrapper {
    justify-content: center;
  }
  .features-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calendar-pane.active {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .story-images {
    order: 2;
  }
  .story-img-card {
    height: 300px;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-container {
    min-height: 350px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  :root {
    --container-width: 100%;
  }
  
  .section-padding {
    padding: 4rem 1rem;
  }
  
  /* Show mobile bottom nav */
  .mobile-nav-bar {
    display: flex;
  }
  
  /* Hide normal header CTAs on mobile if header is too crowded */
  .nav-actions .btn {
    display: none;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-bottom: 2px solid var(--color-yellow);
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 998;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    padding: 5rem 1rem 3rem 1rem;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-card {
    max-width: 100%;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .lightbox-content {
    max-width: 95%;
  }
  
  .lightbox-prev, .lightbox-next {
    display: none; /* Hide arrow buttons on small touch screens, swipe/click will do or just simple close */
  }
  
  .promo-block {
    grid-template-columns: 1fr;
  }
  
  .promo-img {
    height: 240px;
    min-height: auto;
  }
  
  .promo-content {
    padding: 2rem 1.5rem;
  }
  
  .promo-content h3 {
    font-size: 2.2rem;
  }
  
  .story-images {
    grid-template-columns: 1fr;
  }
  
  .story-img-card:last-child {
    margin-top: 0;
  }
  
  .reviews-summary {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-facts-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
