@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/*
Theme Name: Sebastian
Theme URI: 
Author: Deepmind
Author URI: 
Description: A custom premium landing page theme for Sebastian Seafood & Grills.
Version: 1.0
Text Domain: sebastian
*/

/* ==========================================================================
   Global Variables & Reset
   ========================================================================== */
:root {
  --font-brand: 'Libre Baskerville', Georgia, serif;

  /* Color tokens */
  --color-primary: #06447B;
  --color-primary-alt: #07467F;
  --color-cream: #E9D0AE;
  --color-accent: #A31D1D;
  --color-muted: #5D7482;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --section-padding: 100px 20px;
  --split-section-height: 100vh;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Apply globally */
body, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Typography Classes
   ========================================================================== */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--color-cream);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-cream);
}

.btn-primary:hover {
  background-color: var(--color-cream);
  color: var(--color-primary);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary-alt);
  color: var(--color-primary-alt);
}

.btn-outline:hover {
  background-color: var(--color-primary-alt);
  color: var(--color-cream);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: var(--color-primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 15px 0;
  border-bottom: 1px solid var(--color-muted);
}

.site-header.scrolled .site-logo {
  color: var(--color-cream);
}

.site-header.scrolled .nav-links a {
  color: var(--color-cream);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-logo {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-cream);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: currentColor;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-cream);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 5rem;
  font-style: italic;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ==========================================================================
   Luxury About Section
   ========================================================================== */
.about {
  padding: 150px 0;
  background-color: var(--color-primary); /* Deep blue */
  color: var(--color-cream);
  overflow: hidden;
}

.luxury-grid {
  display: flex;
  align-items: center;
  gap: 100px;
}

.luxury-image-wrapper {
  flex: 1;
  position: relative;
}

.luxury-main-img {
  width: 80%;
  margin: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.luxury-main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.luxury-sub-img {
  width: 50%;
  position: absolute;
  bottom: -50px;
  right: 0;
  margin: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 2;
  border: 10px solid var(--color-primary);
}
.luxury-sub-img img {
  width: 100%;
  display: block;
}

.luxury-content {
  flex: 1;
  padding-right: 50px;
}

.luxury-subtitle {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.6;
  margin-bottom: 20px;
}

.luxury-title {
  font-size: 3.5rem;
  font-weight: 300;
  font-family: var(--font-brand);
  color: var(--color-cream);
  margin-bottom: 40px;
  line-height: 1.2;
}

.luxury-body p {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(228, 205, 174, 0.8);
  margin-bottom: 30px;
  font-weight: 300;
}
.luxury-body p:first-child {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-cream);
}

/* ==========================================================================
   The Heart of Sebastian Section
   ========================================================================== */
.brigade-section {
  background: var(--color-cream);
  color: var(--color-primary);
  min-height: var(--split-section-height);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.brigade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--split-section-height);
}

.brigade-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 70px;
  text-align: left;
  border-right: 1px solid var(--color-primary);
}

.brigade-title {
  font-family: var(--font-brand);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: 36px;
  line-height: 1.1;
}

.brigade-text {
  max-width: 540px;
  font-size: 1.12rem;
  line-height: 2;
  color: var(--color-primary-alt);
  margin: 0;
}

.brigade-image-wrap {
  position: relative;
  min-height: var(--split-section-height);
  overflow: hidden;
}

.brigade-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   Signature Menu Section (Split Layout)
   ========================================================================== */
.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--split-section-height);
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-muted);
}

.menu-split-image {
  width: 100%;
  height: 100%;
  min-height: var(--split-section-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-split-content {
  width: 100%;
  min-height: var(--split-section-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-cream);
  padding: 60px;
}

.menu-split-content .section-title {
  color: var(--color-primary);
  font-size: 2.2rem;
}

.menu-split-content .menu-hours-block p {
  color: var(--color-cream);
}

.menu-split-content .menu-hours-block p:last-child {
  color: rgba(233, 208, 174, 0.85);
}

.cote-menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 20px 0;
  border-top: 1px dashed var(--color-accent);
  border-bottom: 1px dashed var(--color-accent);
  color: var(--color-cream);
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}

.cote-menu-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cote-menu-link:hover {
  color: var(--color-cream);
  border-color: var(--color-accent);
  background-color: rgba(233, 208, 174, 0.08);
  padding-left: 10px;
  padding-right: 10px;
}

/* ==========================================================================
   Contact Section (Split Layout)
   ========================================================================== */
.contact-split {
  display: flex;
  min-height: var(--split-section-height);
  background-color: #fff;
  border-top: 1px solid var(--color-muted);
}

.contact-map-side {
  flex: 1;
  min-height: var(--split-section-height);
  position: relative;
  background-color: #222;
  overflow: hidden;
}

.contact-map-side iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(120%);
  pointer-events: none; /* Allows clicks to pass through to the overlay link */
}

.map-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.map-overlay-btn {
  position: absolute;
  top: 40px;
  left: 40px;
  border: 1px solid #fff;
  padding: 12px 24px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
}

.map-link-overlay:hover .map-overlay-btn {
  background: rgba(255,255,255,0.1);
}

.map-pin-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px; /* Adjust visual center */
}

.map-pin {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.map-pin::after {
  content: '';
  width: 24px;
  height: 24px;
  background: #2a2a2a; /* Make it look like a hole over the dark map */
  border-radius: 50%;
}

.contact-info-side {
  flex: 1;
  min-height: var(--split-section-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-cream);
  padding: 60px;
  position: relative;
}

.contact-info-content {
  text-align: center;
  max-width: 500px;
  width: 100%;
  font-family: var(--font-brand);
}

.contact-brand-title {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  color: var(--color-cream);
  margin-bottom: 50px;
  font-weight: 400;
  font-style: italic;
}

.contact-address, .contact-details, .contact-socials, .contact-review {
  margin-bottom: 35px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(228, 205, 174, 0.8);
}

.contact-info-content a {
  color: var(--color-cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.contact-info-content a.text-link {
  color: var(--color-cream);
  border-bottom: 1px solid rgba(228, 205, 174, 0.5);
  font-family: var(--font-brand);
}

.contact-info-content a.text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.contact-info-content a:not(.text-link):hover {
  border-bottom-color: var(--color-cream);
}

.contact-socials a, .contact-review a {
  font-weight: bold;
  border-bottom: 1px solid rgba(228, 205, 174, 0.5);
}

.contact-copyright {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(228, 205, 174, 0.5);
  font-family: sans-serif;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 4rem; }
  
  .luxury-grid {
    flex-direction: column;
    gap: 80px;
  }
  .luxury-image-wrapper {
    width: 100%;
  }
  .luxury-main-img {
    width: 90%;
  }
  .luxury-sub-img {
    width: 60%;
    bottom: -30px;
  }
  .luxury-content {
    padding-right: 0;
  }
  .luxury-title {
    font-size: 2.8rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .brigade-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brigade-content {
    padding: 70px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--color-primary);
  }

  .brigade-title {
    font-size: 2.3rem;
    margin-bottom: 24px;
  }

  .brigade-text {
    font-size: 1rem;
    line-height: 1.85;
  }

  .brigade-image-wrap {
    min-height: 420px;
  }

  .menu-split {
    display: block;
    min-height: auto;
  }
  .menu-split-image {
    width: 100%;
    height: 420px;
    min-height: 420px;
  }
  .menu-split-content {
    min-height: auto;
    padding: 60px 20px;
    width: 100%;
  }
  
  .contact-split {
    flex-direction: column;
    min-height: auto;
  }
  .contact-map-side {
    min-height: 420px;
    width: 100%;
  }
  .contact-info-side {
    min-height: auto;
    padding: 60px 20px;
    width: 100%;
  }

  .slide {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: relative;
  }

  .mobile-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1302;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    line-height: 1;
    font-size: 1.55rem;
    padding: 0;
    color: var(--color-cream);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-primary-alt);
    flex-direction: column;
    padding: 100px 40px;
    transition: var(--transition);
    z-index: 1300;
  }
  .nav-links.active { right: 0; }
  .site-header.scrolled .mobile-toggle { color: var(--color-cream); }
  .nav-links a { color: var(--color-cream) !important; font-size: 1.2rem; }
  
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
  .section-padding { padding: 60px 20px; }
  
  .header-container { padding: 0 20px; }
  
  .slide {
    flex: 0 0 85%;
  }
  .slider-container {
    padding: 0 20px;
  }
  .slider-btn {
    display: none; /* Hide buttons on mobile, rely on swipe */
  }
}

/* ==========================================================================
   Gallery Slider Section
   ========================================================================== */
.gallery {
  padding: 100px 0;
  background-color: var(--color-cream);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4 / 5;
}

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

.slide:hover img {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: var(--color-cream);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--color-accent);
}

.slider-prev {
  left: 10px;
}
.slider-next {
  right: 10px;
}

/* ==========================================================================
   Menu Modal Lightbox (Book Layout)
   ========================================================================== */
.menu-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 57, 106, 0.95);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.menu-modal.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.menu-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--color-cream);
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
}

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

.menu-book-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2500px;
}

.book-wrapper {
  position: relative;
  width: 45%; 
  height: 80vh;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(0); 
}

.menu-book-3d.is-open .book-wrapper {
  transform: translateX(50%);
}

/* Inside page (right side) */
.page-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  box-shadow: inset 20px 0 50px rgba(0,0,0,0.5); /* spine shadow */
  z-index: 1;
}

.page-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Flipping Cover */
.page-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.menu-book-3d.is-open .page-cover {
  transform: rotateY(-180deg);
}

.cover-front, .cover-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: var(--color-primary);
}

.cover-front {
  transform: rotateY(0deg);
  box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

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

.cover-back {
  transform: rotateY(180deg);
  box-shadow: inset -20px 0 50px rgba(0,0,0,0.5); /* inside spine shadow */
}

/* Nav arrows */
.book-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--color-cream);
  border: 1px solid rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-nav:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.prev-page { left: 10px; }
.next-page { right: 10px; }

@media (max-width: 992px) {
  .book-wrapper { width: 90%; transform: translateX(0) !important; }
  .menu-book-3d.is-open .page-cover { transform: rotateY(-90deg); opacity: 0; }
  .page-right { opacity: 0; transition: 0.8s; }
  .menu-book-3d.is-open .page-right { opacity: 1; }
  .prev-page { left: 5px; }
  .next-page { right: 5px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   Interior Slider Section
   ========================================================================== */
.interior-slider-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 92vh;
  background: var(--color-primary);
  overflow: hidden;
}

.interior-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 92vh;
}

.interior-track {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 92vh;
}

.interior-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.interior-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.interior-slide.active {
  opacity: 1;
  visibility: visible;
}

.interior-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(233, 208, 174, 0.7);
  background: rgba(6, 68, 123, 0.25);
  color: var(--color-cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.interior-nav:hover {
  background: rgba(233, 208, 174, 0.15);
  border-color: var(--color-cream);
}

.interior-prev {
  left: 24px;
}

.interior-next {
  right: 24px;
}

@media (max-width: 992px) {
  .interior-slider-section,
  .interior-slider,
  .interior-track {
    min-height: 78vh;
  }

  .interior-slider-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .interior-nav {
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
  }

  .interior-prev {
    left: 12px;
  }

  .interior-next {
    right: 12px;
  }
}

/* ==========================================================================
   Floating Reservation Button
   ========================================================================== */
.floating-reservation-btn {
  position: fixed;
  left: 34px;
  top: 92px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-brand);
  font-size: 0.78rem;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  transition: var(--transition);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.floating-reservation-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

.floating-reservation-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .floating-reservation-btn {
    left: auto;
    right: 58px;
    top: 14px;
    z-index: 1301;
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.55rem;
    letter-spacing: 0.75px;
    border-width: 1px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
}

/* ==========================================================================
   Image Lightbox (Zoom Feature)
   ========================================================================== */
.image-lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding-top: 0;
}

.image-lightbox .lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.close-image-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 100000;
}

.close-image-lightbox:hover,
.close-image-lightbox:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Make images in slider clickable */
.slider-track .slide img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider-track .slide img:hover {
  transform: scale(1.02);
}
