/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary-dark: #1a1a1a;
  --color-accent-red: #ff3344;
  --color-warm-wood: #8b7355;
  --color-amber-glow: #d4a574;
  --color-off-white: #f0ece4;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary-dark);
  color: var(--color-off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.neon-glow {
  text-shadow: 0 0 10px rgba(255, 51, 68, 0.5), 0 0 20px rgba(255, 51, 68, 0.3);
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary {
  background-color: #7e2426;
  color: white;
  box-shadow: 0 4px 10px rgba(90, 18, 19, 0.5);
}

.btn-primary:hover {
  background-color: #8e4546;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(90, 18, 19, 0.6);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-accent-red);
  color: var(--color-accent-red);
}

.btn-outline:hover {
  background-color: var(--color-accent-red);
  color: white;
}

.btn-white {
  background-color: white;
  color: black;
  padding: 1.5rem 2.5rem;
  font-size: 0.875rem;
}

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

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1.5rem 2rem;
  font-size: 0.875rem;
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
  transform: rotate(12deg);
}

.logo-icon {
  height: 2rem;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-full {
  height: 2.7rem;
  width: auto;
  display: block;
}

.hero-logo {
  height: 8rem;
  width: auto;
  margin-bottom: 2rem;
  margin: 0 auto 2rem auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--color-off-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-accent-red);
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 30px;
  height: 24px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-off-white);
  transition: all 0.3s ease;
  position: absolute;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  text-align: center;
  background-color: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255, 51, 68, 0.2);
}

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

.mobile-link {
  color: var(--color-off-white);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--color-accent-red);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #0c0c0c;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

/* Background elements */
.hero-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 51, 68, 0.05), transparent);
  pointer-events: none;
}

.hero-bg-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, var(--color-primary-dark), transparent);
  z-index: 10;
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--color-off-white);
  opacity: 0.02;
  pointer-events: none;
  user-select: none;
}

/* Grid layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 20;
}

/* Content column */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  order: 2;
}

.hero-text .section-label {
  margin-bottom: 1rem;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  color: var(--color-off-white);
}

.hero-description {
  max-width: 36rem;
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  color: rgba(240, 236, 228, 0.8);
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .reservanto-widget-container {
  display: flex;
}

.hero .reservanto-widget {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #7e2426;
  color: white;
  padding: 1.25rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(90, 18, 19, 0.3);
}

.hero .reservanto-widget:hover {
  background-color: #8e4546;
}

.hero-link {
  color: rgba(240, 236, 228, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease;
}

.hero-link:hover {
  color: var(--color-off-white);
}

.hero-link svg {
  transition: transform 0.3s ease;
}

.hero-link:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat:nth-child(3) {
  display: none;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent-red);
}

.hero-stat-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240, 236, 228, 0.4);
}

/* Hero Video Column */
.hero-video-col {
  order: 1;
}

.hero-video-frame-outer {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-video-frame {
  position: absolute;
  inset: -1rem;
  border: 1px solid rgba(255, 51, 68, 0.2);
  border-radius: 2rem;
  pointer-events: none;
  transition: transform 0.7s ease;
}

.hero-video-frame-outer:hover .hero-video-frame {
  transform: scale(1.05);
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: black;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
  pointer-events: none;
}

.hero-video-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
}

.hero-video-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-accent-red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-video-footer {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 5;
}

.hero-video-quote {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Floating logo circle */
.hero-video-floating-logo {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--color-accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 20;
  transition: transform 0.5s ease;
}

.hero-video-frame-outer:hover .hero-video-floating-logo {
  transform: rotate(12deg);
}

.hero-video-logo-img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Info Section */
.info-section {
  padding: 6rem 0;
  background-color: var(--color-primary-dark);
}

.info-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

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

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-accent-red);
  margin-bottom: 0.5rem;
}

.section-label .line {
  height: 1px;
  width: 3rem;
  background-color: var(--color-accent-red);
}

.section-label span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-description {
  color: rgba(240, 236, 228, 0.7);
  line-height: 1.6;
  font-size: 1.125rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 51, 68, 0.2);
}

.day {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.time {
  color: var(--color-accent-red);
  font-weight: 700;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.location-info:hover {
  transform: translateX(5px);
  opacity: 0.8;
}

.location-info:hover .icon-circle {
  background-color: rgba(255, 51, 68, 0.2);
  border-color: rgba(255, 51, 68, 0.4);
}

.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 51, 68, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 51, 68, 0.2);
  color: var(--color-accent-red);
  flex-shrink: 0;
}

.location-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-address {
  color: rgba(240, 236, 228, 0.5);
  font-size: 0.75rem;
}

/* Promo Card */
.promo-card {
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 51, 68, 0.2), transparent, rgba(212, 165, 116, 0.2));
}

.promo-inner {
  background-color: #1a1a1a;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 51, 68, 0.1);
}

.promo-watermark {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  opacity: 0.05;
  width: 10rem;
  height: auto;
}

.promo-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-amber-glow);
  margin-bottom: 1.5rem;
}

.promo-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-quote {
  color: rgba(240, 236, 228, 0.7);
  margin-bottom: 2rem;
  font-style: italic;
}

.drink-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.drink-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.drink-item:hover {
  transform: translateX(10px);
}

.drink-item:hover .drink-dot {
  transform: scale(1.5);
}

.drink-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-accent-red);
  transition: transform 0.3s ease;
}

.drink-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.drink-name {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.drink-ingredients {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: rgba(240, 236, 228, 0.5);
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
}

.promo-note {
  font-size: 0.875rem;
  color: rgba(240, 236, 228, 0.6);
  margin-bottom: 2rem;
}

/* Menu Section */
.menu-section {
  padding: 6rem 0;
  background-color: #111;
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-pdf-btn {
  color: rgba(240, 236, 228, 0.6);
  border-color: rgba(240, 236, 228, 0.2);
}

.menu-pdf-btn:hover {
  background-color: rgba(240, 236, 228, 0.1);
  color: var(--color-off-white);
  border-color: rgba(240, 236, 228, 0.4);
}

.menu-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.menu-description {
  max-width: 48rem;
  margin: 0 auto 3rem;
  color: rgba(240, 236, 228, 0.7);
  font-size: 1.125rem;
  line-height: 1.6;
}

.menu-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.7s ease;
}

.gallery-item:hover .gallery-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Instagram Section */
.instagram-section {
  padding: 6rem 0;
  background-color: var(--color-primary-dark);
}

.instagram-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.instagram-section .section-description {
  color: rgba(240, 236, 228, 0.6);
  margin-bottom: 3rem;
  max-width: 42rem;
}

.instagram-feed {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 51, 68, 0.1);
  border-radius: 0.75rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#instagram-feed-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Instagram Posts Grid */
.instagram-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Style Instagram embeds */
.instagram-posts-grid .instagram-media {
  margin: 0 !important;
  min-width: auto !important;
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  border-radius: 8px;
  overflow: hidden;
}

.instagram-cta-card {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.instagram-icon-wrapper {
  color: var(--color-accent-red);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.instagram-handle {
  color: var(--color-off-white);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.instagram-description {
  color: rgba(240, 236, 228, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.125rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.feed-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-red), transparent);
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: #0a0a0a;
}

.gallery-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-subtitle {
  color: rgba(240, 236, 228, 0.5);
  margin-top: 0.5rem;
}

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

.gallery-card {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.gallery-card.stagger-1 {
  animation: fadeIn 0.6s ease-out 0.1s both;
}

.gallery-card.stagger-2 {
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.gallery-card.stagger-3 {
  animation: fadeIn 0.6s ease-out 0.3s both;
}

.gallery-card.stagger-4 {
  animation: fadeIn 0.6s ease-out 0.4s both;
}

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

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

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption p {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  color: var(--color-accent-red);
  font-weight: 700;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: var(--color-primary-dark);
}

.contact-grid {
  display: grid;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info .section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.contact-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-link:hover {
  transform: translateX(5px);
  opacity: 0.8;
}

.contact-link:hover .contact-icon {
  color: var(--color-accent-red);
}

.contact-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent-red);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact-value {
  font-size: 1.125rem;
}

.map-container {
  width: 100%;
  height: 20rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  pointer-events: none;
  transition: background-color 0.3s ease;
}

.map-container:hover .map-overlay {
  background-color: transparent;
}

/* Conference Promo */
.conference-sticky {
  position: sticky;
  top: 8rem;
}

.conference-card {
  background-color: #151515;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.conference-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  margin-bottom: 2rem;
  overflow: hidden;
}

.conference-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conference-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.conference-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.conference-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.conference-description {
  color: rgba(240, 236, 228, 0.8);
  line-height: 1.6;
}

.conference-cta {
  padding: 0 2rem 2rem;
}

/* ============================================
   Menu Page (nabidka.html)
   ============================================ */

.menu-page-header {
  padding: 10rem 0 5rem;
  background-color: #0c0c0c;
  border-bottom: 1px solid rgba(255, 51, 68, 0.1);
  position: relative;
  overflow: hidden;
}

.menu-page-header-bg-text {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-size: 20rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--color-off-white);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
}

.menu-page-header-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(to top, var(--color-primary-dark), transparent);
  pointer-events: none;
}

.menu-page-title {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
}

.menu-page-description {
  color: rgba(240, 236, 228, 0.6);
  font-size: 1rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.menu-page-header-content {
  position: relative;
  z-index: 2;
}

.menu-page-pdf-btn {
  display: inline-flex;
}

.menu-page-content {
  padding: 5rem 0 8rem;
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-category {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-category:last-child {
  border-bottom: none;
}

.menu-category-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-red);
  margin-bottom: 1.5rem;
}

.menu-subbrand {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.35);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-subbrand--first {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-size: 0.9375rem;
  color: var(--color-off-white);
  line-height: 1.4;
}

.menu-item-volume {
  font-size: 0.75rem;
  color: rgba(240, 236, 228, 0.4);
  white-space: nowrap;
  text-align: right;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-off-white);
  white-space: nowrap;
  min-width: 4rem;
  text-align: right;
}

.menu-item-tbd {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(240, 236, 228, 0.25);
  font-style: italic;
}

.menu-limo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-limo-col {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-limo-col:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-limo-col:first-child {
  padding-top: 0;
}

@media (min-width: 768px) {
  .menu-page-title {
    font-size: 6rem;
  }

  .menu-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 5rem;
  }

  .menu-category {
    border-bottom: none;
    border-top: 1px solid rgba(255, 51, 68, 0.12);
    padding: 3rem 0;
  }

  .menu-category--wide {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 51, 68, 0.12);
  }

  .menu-limo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 3rem;
  }

  .menu-limo-col {
    padding: 0;
    border-bottom: none;
  }
}

/* Footer */
.footer {
  background-color: #000;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-logo {
  height: 2rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.footer-description {
  color: rgba(240, 236, 228, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-off-white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-accent-red);
  border-color: var(--color-accent-red);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-heading {
  color: var(--color-accent-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-content {
  color: rgba(240, 236, 228, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-content .highlight {
  color: var(--color-off-white);
  font-weight: 700;
}

.footer-link {
  color: rgba(240, 236, 228, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-accent-red);
  transform: translateX(5px);
}

.footer-small {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(240, 236, 228, 0.5);
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240, 236, 228, 0.3);
  font-weight: 700;
}

.footer-bottom a {
  color: var(--color-accent-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff5566;
}

/* Reservation Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(1rem) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(240, 236, 228, 0.5);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-off-white);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-off-white);
}

.modal-text {
  font-size: 0.9375rem;
  color: rgba(240, 236, 228, 0.6);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.75rem;
  width: auto;
}

/* Announcement Popup */
.announcement-overlay {
  z-index: 2000;
}

.announcement-modal {
  max-width: 460px;
}

.announcement-icon-wrap {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 51, 68, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 51, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-red);
  margin: 0 auto 1.5rem;
}

.announcement-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-red);
  margin-bottom: 0.75rem;
}

.announcement-date {
  color: var(--color-off-white);
  font-weight: 700;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stat:nth-child(3) {
    display: flex;
  }

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

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .hero-heading {
    font-size: 6rem;
  }

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

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

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

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

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .instagram-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }

  .hero-text {
    order: 1;
  }

  .hero-video-col {
    order: 2;
  }

  .hero-heading {
    font-size: 8rem;
  }
}

@media (max-width: 767px) {
  .menu-title {
    font-size: 2rem;
  }

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

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

  .conference-title {
    font-size: 1.5rem;
  }
}
