/* ==========================================================================
   PATATRAC CAFFÈ - EXCLUSIVE STYLE SYSTEM
   Sleek modern-classic aesthetic for Lido di Jesolo's premium cafe & bar
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Color Palette - Premium Dark/Warm Theme */
  --bg-primary: #12100e;      /* Ultra deep warm charcoal */
  --bg-secondary: #1a1714;    /* Slightly lighter brown-charcoal for containers */
  --bg-tertiary: #231f1c;     /* Card background */
  
  --accent-gold: #d4af37;     /* Classic refined gold */
  --accent-gold-rgb: 212, 175, 55;
  --accent-amber: #e5a93c;    /* Brighter glowing amber */
  --accent-cream: #f4eade;    /* Sophisticated light off-white for text/highlights */
  
  --text-primary: #f5efeb;    /* High contrast cream-white */
  --text-secondary: #a89f95;  /* Muted silver-brown for subtext */
  --text-muted: #7d7367;      /* Low contrast description text */
  
  --border-color: #2e2823;    /* Subtle warm dividers */
  --border-glow: rgba(212, 175, 55, 0.15);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- Global Utilities & Typography --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6.5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 0;
  }
}

.gold-text {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.serif-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
  font-weight: 600;
}

.section-title {
  font-size: 2.75rem;
  line-height: 1.2;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 1.25rem auto 0;
}

/* --- Modern Glassy Navigation Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
  height: 38px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Menu Toggle Button (Mobile) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  /* Menu Open State Styles */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #292119 0%, var(--bg-primary) 70%);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(18, 16, 14, 0.4) 0%, rgba(18, 16, 14, 0.9) 100%),
    url('foto-tramezzini.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: grayscale(20%) contrast(1.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-logo-container {
  margin-bottom: 2rem;
}

.hero-logo-img {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 180px;
  }
}

.hero-tagline {
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--text-primary);
  font-family: var(--font-serif);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  color: #12100e;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-4px);
  background: rgba(212, 175, 55, 0.03);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-icon {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Animations */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Section: Chi Siamo --- */
.about-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.about-highlight {
  font-size: 1.35rem;
  color: var(--accent-cream);
  font-family: var(--font-serif);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.25rem;
  font-style: italic;
}

.about-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-desc strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon-wrapper {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Beautiful overlapping image composition */
.about-image-collage {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .about-image-collage {
    height: 400px;
    margin-top: 2rem;
  }
}

.collage-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
  transition: var(--transition-smooth);
}

.collage-img-badge {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 45%;
  height: 45%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  border: 3px solid var(--bg-secondary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transform: rotate(4deg);
  transition: var(--transition-smooth);
}

.about-image-collage:hover .collage-img-main {
  transform: rotate(0deg) scale(1.02);
}

.about-image-collage:hover .collage-img-badge {
  transform: rotate(0deg) translateY(-10px);
}

/* --- Section: Menu Interactive Promo --- */
.menu-section {
  position: relative;
  background: radial-gradient(circle at 10% 10%, #201b17 0%, var(--bg-primary) 80%);
  text-align: center;
  overflow: hidden;
}

.menu-overlay-shape {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.menu-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

@media (max-width: 768px) {
  .menu-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.menu-showcase-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.menu-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.menu-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.menu-showcase-card:hover::before {
  opacity: 1;
}

.menu-card-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  display: block;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.menu-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.menu-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.menu-btn-large {
  padding: 1.25rem 3.5rem;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.menu-btn-large:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

.menu-cta-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 16, 14, 0.85) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all var(--transition-smooth);
}

.gallery-caption {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  transform: translateY(15px);
  transition: transform var(--transition-smooth);
}

.gallery-tag {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(15px);
  transition: transform var(--transition-smooth) 0.05s;
}

/* Hover effects for gallery items */
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

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

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover .gallery-caption,
.gallery-item:hover .gallery-tag {
  transform: translateY(0);
}

/* --- Section: Info (Orari & Dove Siamo) --- */
.info-section {
  background-color: var(--bg-primary);
}

.info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* Column 1: Opening Hours */
.hours-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hours-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.hours-title-wrapper {
  margin-bottom: 2rem;
}

.hours-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Dynamic Live Status Badge */
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  transition: all var(--transition-smooth);
}

.live-status.open {
  background: rgba(46, 125, 50, 0.12);
  color: #81c784;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.live-status.closed {
  background: rgba(198, 40, 40, 0.12);
  color: #e57373;
  border: 1px solid rgba(198, 40, 40, 0.3);
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  position: relative;
}

.live-status.open .live-status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: currentColor;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.98rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

.hours-day {
  text-transform: capitalize;
  font-weight: 500;
}

.hours-time {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text-primary);
}

.hours-item.closed-day .hours-time {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Styled active/current day highlight */
.hours-item.current-day {
  color: var(--accent-gold);
  border-bottom-style: solid;
  border-bottom-color: rgba(212, 175, 55, 0.3);
  padding: 0.9rem 1rem;
  background: rgba(212, 175, 55, 0.03);
  border-radius: var(--border-radius-sm);
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hours-item.current-day .hours-day {
  font-weight: 700;
}

.hours-item.current-day .hours-time {
  color: var(--accent-gold);
}

/* Column 2: Contact & Map */
.contact-map-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 500;
}

.contact-info-text address {
  font-style: normal;
}

/* Google Map Wrapper */
.map-wrapper {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 320px;
  filter: grayscale(80%) invert(92%) contrast(100%) hue-rotate(180deg) saturate(30%);
  /* Custom dark map look */
  transition: var(--transition-smooth);
}

.map-wrapper:hover .map-iframe {
  filter: grayscale(20%) contrast(100%);
}

/* --- Lightbox Modal --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  transform: scale(0.95);
  transition: transform var(--transition-bounce);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption-wrapper {
  margin-top: 1.25rem;
  text-align: center;
}

.lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.lightbox-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

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

/* --- Footer --- */
.site-footer {
  background-color: #0c0a09;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

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

@media (max-width: 992px) {
  .footer-brand {
    align-items: center;
  }
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .footer-social-wrapper {
    align-items: center;
  }
}

.footer-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-bounce);
}

.social-btn:hover {
  background: var(--accent-gold);
  color: #12100e;
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-biz-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.biz-detail-item {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.biz-detail-item strong {
  color: var(--text-primary);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credits {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credits a:hover {
  color: var(--accent-gold);
}
