/* ==========================================================================
   Cafe "C'est si bon" - Design System & Custom Stylesheet
   Primary: Dark Emerald (#1D5C4E)
   Secondary: Soft Pink (#F2B8B0)
   Background: Creamy White (#FDFAF7)
   ========================================================================== */

:root {
  --color-primary: #1D5C4E;
  --color-primary-rgb: 29, 92, 78;
  --color-secondary: #F2B8B0;
  --color-secondary-rgb: 242, 184, 176;
  --color-bg: #FDFAF7;
  --color-bg-rgb: 253, 250, 247;
  
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-text: 'DM Sans', sans-serif;
  
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.2s ease;
  
  --shadow-subtle: 0 4px 20px rgba(29, 92, 78, 0.05);
  --shadow-medium: 0 10px 30px rgba(29, 92, 78, 0.08);
  --shadow-hover: 0 15px 35px rgba(29, 92, 78, 0.12);
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 400;
  color: var(--color-primary);
}

p {
  font-weight: 300;
  color: rgba(29, 92, 78, 0.85);
}

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

/* ==========================================================================
   2. Bilingual Display Rules
   ========================================================================== */
body.lang-ge .lang-en {
  display: none !important;
}

body.lang-en .lang-ge {
  display: none !important;
}

/* ==========================================================================
   3. Floating Header & Navigation
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to bottom, rgba(29, 92, 78, 0.2) 0%, rgba(29, 92, 78, 0) 100%);
  pointer-events: none;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.header-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  background-color: var(--color-secondary);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.header-logo:hover {
  transform: scale(1.08);
}

.lang-switch-btn {
  background: rgba(253, 250, 247, 0.15);
  border: 1px solid rgba(242, 184, 176, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color: var(--color-secondary);
  font-family: var(--font-text);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.lang-switch-btn:hover {
  background: rgba(253, 250, 247, 0.25);
  border-color: var(--color-secondary);
  box-shadow: 0 4px 15px rgba(242, 184, 176, 0.2);
}

.lang-switch-btn span.active-lang {
  font-weight: 700;
}

.lang-switch-btn span.divider {
  opacity: 0.5;
  margin: 0 0.2rem;
}

/* Header context changes when scrolled (handled by JS class) */
.main-header.scrolled {
  background: rgba(29, 92, 78, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.5rem;
}

.main-header.scrolled .lang-switch-btn {
  background: rgba(253, 250, 247, 0.1);
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-outline {
  border: 0.5px solid var(--color-secondary);
  background: transparent;
  color: var(--color-secondary);
}

.btn-outline:hover {
  background: rgba(242, 184, 176, 0.08);
  box-shadow: 0 0 15px rgba(242, 184, 176, 0.2);
  transform: translateY(-2px);
}

.btn-filled {
  background-color: var(--color-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-subtle);
}

.btn-filled:hover {
  background-color: rgba(29, 92, 78, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Wolt Sticky Button */
.wolt-sticky-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-medium);
  z-index: 999;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.wolt-sticky-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-hover);
  background-color: #f7cac4;
}

.wolt-icon {
  animation: pulse 2s infinite;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--color-secondary);
  opacity: 0.5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-divider {
  width: 32px;
  height: 1.5px;
  background-color: var(--color-secondary);
  opacity: 0.3;
  margin: 0 auto 2.5rem;
}

.hero-quote-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-quote {
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-secondary);
  opacity: 0.9;
  transition: opacity 0.6s ease;
}

.hero-quote.fade-out {
  opacity: 0;
}

.hero-btn {
  margin-top: 1rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  color: var(--color-secondary);
  opacity: 0.5;
  animation: bounce 2s infinite;
  transition: opacity var(--transition-fast);
}

.scroll-down:hover {
  opacity: 1;
}

/* ==========================================================================
   6. Layout Components
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
  margin-top: 0.5rem;
}

.section-title.text-center::after {
  margin: 0.5rem auto 0;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   7. About Section
   ========================================================================== */
.about-section {
  background-color: var(--color-bg);
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 550px;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-slideshow {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dots wrapper */
.slideshow-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(253, 250, 247, 0.4);
  border: 1px solid rgba(29, 92, 78, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slideshow-dots .dot:hover,
.slideshow-dots .dot.active {
  background-color: var(--color-secondary);
  transform: scale(1.2);
}

/* ==========================================================================
   8. About Section Poster Card & Menu Footer
   ========================================================================== */
.about-image-card {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  background-color: var(--color-secondary);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  display: flex;
}

.about-image-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--shadow-hover);
}

.card-inner-border {
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  width: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(29, 92, 78, 0.1);
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.card-subtitle {
  font-family: var(--font-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.card-divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.card-text {
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.card-decor {
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  opacity: 0.8;
}

/* Menu Footer and Seasonal Card */
.menu-footer {
  width: 100%;
  margin-top: 4rem;
  text-align: center;
}

.seasonal-special-card {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px dashed var(--color-primary);
  box-shadow: var(--shadow-subtle);
  
  /* Scroll reveal starting state */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s, box-shadow 0.2s ease;
}

.menu-section.revealed .seasonal-special-card {
  opacity: 1;
  transform: translateY(0);
}

.seasonal-special-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.seasonal-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.seasonal-emoji {
  display: inline-block;
  animation: pulse 2s infinite;
}

.seasonal-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 1.05rem;
}

.seasonal-name {
  font-weight: 500;
}

.seasonal-price {
  font-weight: 600;
}

.menu-enjoy {
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--color-primary);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   9. Menu Section
   ========================================================================== */
.menu-section {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(29, 92, 78, 0.03);
}

/* Tab Navigation */
.menu-tabs-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.menu-tab-btn {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.menu-tab-btn.active {
  background-color: #1D5C4E;
  color: #F2B8B0;
  border-color: #1D5C4E;
}

.menu-tab-content {
  display: none;
  opacity: 0;
}

.menu-tab-content.active {
  display: block;
  animation: menuFadeIn 0.3s ease forwards;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Coffee Tab Grid styling */
.coffee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.menu-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(29, 92, 78, 0.04);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(242, 184, 176, 0.4);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.menu-card-name {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-primary);
}

.menu-card-price {
  font-family: var(--font-text);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Bonbon Fullscreen Slider styles */
.bonbons-slider-container {
  width: 100%;
  height: 100vh;
  background-color: #1D5C4E;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.bonbons-slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.bonbon-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.bonbon-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.bonbon-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonbon-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15,40,30,0.92) 0%, rgba(15,40,30,0.3) 50%, transparent 100%);
  z-index: 2;
}

.bonbon-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.slide-counter {
  font-family: var(--font-text);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #F2B8B0;
  opacity: 0.5;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.slide-name {
  font-family: var(--font-headings);
  font-size: 42px;
  color: #F2B8B0;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.slide-ingredients {
  font-family: var(--font-text);
  font-size: 13px;
  color: #F2B8B0;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.slide-price {
  border: 0.5px solid rgba(242, 184, 176, 0.4);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 14px;
  color: #F2B8B0;
  display: inline-block;
}

.slider-static-label {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  z-index: 4;
  font-family: var(--font-text);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #F2B8B0;
  opacity: 0.5;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(242, 184, 176, 0.12);
  border: 0.5px solid rgba(242, 184, 176, 0.25);
  color: #F2B8B0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(242, 184, 176, 0.22);
}

.prev-arrow {
  left: 1.5rem;
}

.next-arrow {
  right: 1.5rem;
}

.slider-dots-container {
  position: absolute;
  bottom: 1.2rem;
  right: 2.5rem;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(242, 184, 176, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #F2B8B0;
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .bonbons-slider-container {
    height: 85vh;
  }
  .slider-arrow {
    display: none;
  }
  .bonbon-slide-content {
    padding: 1.5rem 1.5rem;
  }
  .slider-static-label {
    top: 1.5rem;
    left: 1.5rem;
  }
  .slider-dots-container {
    right: 1.5rem;
    bottom: 1rem;
  }
}

/* ==========================================================================
   10. Find Us Section
   ========================================================================== */
.find-us-section {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(29, 92, 78, 0.03);
}

.find-us-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  background: rgba(242, 184, 176, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(29, 92, 78, 0.5);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 400;
}

.wolt-btn {
  gap: 0.6rem;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(29, 92, 78, 0.05);
}

.google-map {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   11. Instagram Section (Mock Grid)
   ========================================================================== */
.instagram-section {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(29, 92, 78, 0.03);
}

.instagram-username {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

.instagram-card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(29, 92, 78, 0.05);
  transition: var(--transition-smooth);
}

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 92, 78, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.instagram-icon {
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: var(--transition-smooth);
  color: var(--color-secondary);
}

.instagram-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

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

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-card:hover .instagram-icon {
  transform: scale(1.1);
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.main-footer {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 4rem 1.5rem 6rem;
  border-top: 1px solid rgba(242, 184, 176, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  background-color: var(--color-secondary);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: scale(1.08);
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(242, 184, 176, 0.65);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 0.5rem;
}

.footer-socials a {
  color: #F2B8B0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   13. Scroll Triggered Animation System
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   14. Animations
   ========================================================================== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   15. Media Queries (Mobile First & Responsiveness)
   ========================================================================== */

/* Mobile Portrait / Landscape Adjustment (Default mobile-first styles) */
@media (max-width: 767px) {
  /* Sticky Wolt Button stays full width at bottom on mobile */
  .wolt-sticky-btn {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .hero-title {
    font-size: 2.85rem;
  }
  
  .hero-quote {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 4rem 1.25rem;
  }
  
  .about-slideshow {
    height: 260px;
  }
}

/* Tablets and up (Width >= 768px) */
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-quote {
    font-size: 1.65rem;
  }
  
  .coffee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .map-wrapper {
    height: 400px;
  }
}

/* Laptops / Desktops (Width >= 1024px) */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
  
  .grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .container {
    padding: 7rem 2rem;
  }
  
  .about-text-content {
    padding-right: 2rem;
  }
}

/* ==========================================================================
   16. Loading Overlay, Blinking Cursor, & Scroll Progress Bar
   ========================================================================== */

/* Prevent scroll during load */
body.loading-active {
  overflow: hidden;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: all;
}

.loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-title {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.loading-subtitle {
  font-family: var(--font-text);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--color-secondary);
  opacity: 0.6;
  text-transform: uppercase;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background-color: var(--color-secondary);
  width: 0%;
  z-index: 10001; /* Above sticky header */
  transition: width 0.1s ease;
  pointer-events: none;
}

/* Blinking cursor for quote */
.quote-cursor {
  color: var(--color-secondary);
  margin-left: 0.2rem;
  font-weight: 300;
  animation: blink 1s infinite;
  display: inline-block;
}

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

/* Find Us 3-Column Layout (Video, Details, Map) */
#find-us .grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.video-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(29, 92, 78, 0.05);
}

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

@media (min-width: 768px) {
  #find-us .grid-container {
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  #find-us .grid-container {
    grid-template-columns: 1fr 1.1fr 1.1fr;
    gap: 4rem;
  }
}
