/*
Theme Name: Dino-theme
Author: Marin Vujica, Kristijan Horvat and Camille Sulcova
*/

html {
  scroll-behavior: smooth;
}
/* Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Marck+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables */
:root {
    --c-dark: #1A1A1A;
    --c-light: #ffffff;
    --c-red: #8C1C13; 
    --c-gray: #C4C4C4; 
    --h-font: "DM Serif Display", serif;
    --p-font: 'Red Hat Display', sans-serif ;
}

/* Global style */
body {
    font-family: var(--p-font); 
    font-size: 16px;
    background-color: var(--c-light);
    color: var(--c-dark);
    overflow-x: hidden;
}


/* main titles */
h1, .h1 {
    font-family: var(--h-font);
    font-size: 48px;
    line-height: 38px;
    font-weight: 500;
}

h2, .h2 {
    font-family: var(--h-font);
    font-size: 32px;
    line-height: 64px;
    font-weight: bold;
}

h3, .h3 {
    font-family: var(--h-font);
    font-size: 24px;
    line-height: 40px;
}

/* Preloader container */
#preloader.logo-only {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(16px);
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Logo with fade-in and pulse */
.preloader-logo {
  width: 140px;
  opacity: 0;
  animation: logoFadeIn 1.2s ease forwards, pulse 2s ease-in-out 1.2s infinite;
}

/* After load: stop pulsing and start zoom out smoothly */
.preloader-logo.animate {
  animation:
  bigFadeZoom 1s ease-in-out forwards;
  animation-fill-mode: forwards;
}

@keyframes logoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes bigFadeZoom {
  0% {
    opacity: 1;
    transform: scale(1.05); /* start from last pulse size */
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}


/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    margin-top: 0px; /* <-- Forces it to snug up just under the navbar */
  }
  
  .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute; /* <- This is the key fix */
    top: 0;
    left: 0;
    z-index: -1;

  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* adjust for lighter/darker filter */
    z-index: -1; /* Ensure the overlay stays behind the navbar */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-text {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--c-light);
    font-size: clamp(24px, 5vw, 48px) !important;
    font-family: var(--p-font);
    font-weight: 200;
    margin: 0;
    white-space: normal;        /* allow wrapping */
    overflow: hidden;
    max-width: 90vw;
    text-align: center;
    padding: 0 10px;            /* some padding for small screens */
  }
  
  /* Responsive: Adjust for smaller screens */
  @media (max-width: 722px) {
    .hero-text {
      bottom: 110px;
      font-size: clamp(20px, 6vw, 36px); /* smaller but still large enough */
    }
  }
  
	@media (max-width: 767px) {
  .hero-video { display: none !important; }
  .hero-fallback { display: block !important; }
	}

	@media (min-width: 768px) {
  .hero-video { display: block !important; }
  .hero-fallback { display: none !important; }
	}


  .hero-subtext {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
  
  .hero-subtext .dash {
    width: 1200px;
    height: 2px;
    background: linear-gradient(to right, white, rgba(255,255,255,0.3));
    margin: 0 auto 10px auto;
    opacity: 0.7;
  }
  
  .hero-subtext .subtext {
    color: var(--c-light);
    font-size: 20px;
    opacity: 0.85;
    font-family: var(--p-font);
    font-weight: 100;
    margin: 0;
  }
  


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: transparent; /* Start with transparent background */
    transition: background 0.4s ease, backdrop-filter 0.4s ease; /* Smooth transition for background */
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.6); /* Tinted black background */
    backdrop-filter: blur(2px); /* Add the blur effect */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    image-rendering: pixelated;
}


/* Desktop navbar spacing */
@media (min-width: 768px) {
    .nav-links a {
        margin-left: 40px;
    }
  }

.nav-links a {
    text-decoration: none;
    font-size: 25px;
    font-family: var(--p-font);
    color: var(--c-light);
    font-weight: 300;
    
}

/* Target the navigation links */
nav a {
    transition: all 0.3s ease; /* Smooth transition for all properties */
  }
  
  /* Apply hover effect */
  nav a:hover {
    transform: scale(1.2); /* Slightly enlarge the text */
    color: var(--c-red);
  }
  
.logo {
    max-height: 70px;
}




/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* semi-transparent */
  backdrop-filter: blur(5px); /* Apply blur */
  transition: right 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 30px 30px 30px;
  z-index: 1050;
}

/* Show menu */
.mobile-nav.show {
  right: 0;
}

/* Menu links container */
.mobile-links {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Links inside menu */
.mobile-links a {
  transition: all 0.3s ease;
  transform-origin: top center; 
  text-decoration: none;
  color: var(--c-dark);
  font-size: 30px;
  margin: 10px 0;
  text-align: left;
}

/* Hover effect */
.mobile-links a:hover {
  color: var(--c-red);
}

/* New class for positioning reserve button under links */
.mobile-reserve-btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* Adjust mobile-bottom to only contain social icons bottom right */
.mobile-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

/* Remove margin for Reserve button only inside the mobile menu */
#mobileMenu .custom-reserve-btn {
  margin-left: 0 !important;
}

@media (max-width: 768px) {
  #mobileMenu .custom-reserve-btn {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}


/* Social icons */
.mobile-social a {
  color: var(--c-dark);
  transition: transform 0.3s ease;
}

.mobile-social a:hover {
  transform: scale(1.2);
  color: var(--c-red);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 44px;
  color: var(--c-red);
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger menu button (visible only on mobile) */
.menu-btn {
  display: none;
  font-size: 34px;
  color: var(--c-light);;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive: hide desktop nav, show mobile btn */
@media (max-width: 768px) {
  .nav-links {
      display: none !important;
  }
  .menu-btn {
      display: block;
  }
}


/* Custom animation for Bootstrap modal */
@keyframes slideFadeIn {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideFadeOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

/* Override Bootstrap's fade class */
.modal.fade .modal-dialog {
  transition: none;
  animation: slideFadeIn 0.4s ease forwards;
}

/* When modal is fading out */
.modal.fade.showing-out .modal-dialog {
  animation: slideFadeOut 0.3s ease forwards;
}

.custom-reserve-btn {
  padding: 14px;
  margin: 0;
  margin-left: 30px !important;
  border-radius: 20px; 
  font-size: 20px;
  line-height: 1;
  background-color: var(--c-red);
  color: var(--c-light);
  border: none;
}

/* Optional: hover effect */
.custom-reserve-btn:hover {
  background-color: var(--c-light);
  color: var(--c-red) !important;
}

/* Modal base */
.custom-reservation-modal {
  background-color: var(--c-light);
  border-radius: 0;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: var(--p-font); 
}

/* Modal title */
.custom-reservation-modal .modal-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-red);
}

/* Call button */
.custom-call-btn {
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: var(--c-red);
  color: var(--c-light);
}

.custom-call-btn:hover {
  background-color: var(--c-light);
  color: var(--c-red);
  border: 1px solid var(--c-red); 
}

/* Optional: make modal header cleaner */
.custom-reservation-modal .modal-header {
  border-bottom: none;
}



/* Menu Tab Section */
.menu-items ul {
    padding-left: 0;
    margin: 0;
  }
  
  .menu-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
  }
  
  .menu-dish {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--c-dark);
    margin-bottom: 0.3rem;
    font-family: var(--h-font);
  }
  
  .menu-price {
    font-weight: bold;
    font-family: var(--h-font);
  }

  .menu-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  
  .menu-price {
    font-weight: bold;
    color: var(--c-dark);
    min-width: 60px;
    padding-left: 1rem;
    white-space: nowrap;
  }
  
 /* Image Container */
.menu-photo-wrapper {
  display: inline-block;
  transform: rotate(-2deg); /* Adjust the rotation for visual tilt */
  overflow: hidden; /* Prevents image from spilling outside */
  margin-top: 2rem; /* Top margin for spacing */
}

/* Image Styling */
.menu-photo {
  max-width: 100%; /* Ensures image doesn't exceed the container width */
  height: auto; /* Maintain aspect ratio */
  transform: none !important; /* Prevent double rotation if applied */
  display: block; /* Ensures image is block-level */
}


  
  
/* ── MOBILE ACCORDION RESTYLE ───────────────────────── */
@media (max-width: 767px) {
  /* card look */
  .accordion-item {
    background: #fafafa;
    border-radius: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 1rem;
  }

  /* header: transparent + subtle border */
  .accordion-button {
    background: white !important;
    color: var(--c-dark) !important;
    padding: 1rem;
    font-weight: 500;
    border: none;
    border-bottom: 5px solid #5F120D;
    position: relative;
  }

  .accordion-button:not(.collapsed) {
    background-color: white !important;
  }
  .accordion-button:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 5px solid #5F120D !important;
  }

  /* remove Bootstrap’s default arrow */
  .accordion-button::after {
    display: none !important;
  }

  /* add our single, rotating arrow */
  .accordion-button::before {
    content: "▼";
    font-size: 0.9rem;
    color: #5F120D;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
  }
  .accordion-button.collapsed::before {
    transform: translateY(-50%) rotate(-90deg);
  }

  /* panel body: crisp white */
  .accordion-body {
    background: #fff;
    padding: 1rem;
  }
}



/* New section container */
.scrolling-section {
  background-color: var(--c-light);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Scrolling Text Container */
.scrolling-text-container {
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 1rem;
}

/* The Animated Text */
.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 70s linear infinite;
  font-size: 100px;
  color: var(--c-red);
  font-weight: 100;
  font-family: var(--p-font);
}

/* Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

 /* Responsive Styles */
 @media (max-width: 768px) {
  .scrolling-text {
    font-size: 60px;
    bottom: 130px;

  }

  .hero-subtext .dash {
    width: 200px;
  }

}
   
  
/*ABOUT SECTION */
.section-divider {
  border: none;
  border-top: 1px solid var(--c-gray);
  margin: 0 auto 3rem auto;
  width: 90%;
}

.about-section {
  padding: 4rem 1.5rem;
  background-color: var(--c-light);
}

.about-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image,
.about-content {
  flex: 1 1 50%;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-radius: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.about-title {
  font-family: var(--h-font);
  font-size: 2rem;
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--c-dark);
  display: flex
}

.about-text {
  font-family: var(--p-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-dark);
  text-align: left;
  max-width: 600px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-container {
      flex-direction: column;
      text-align: center;
  }

  .about-content {
      padding: 1rem;
  }

  .about-title {
      font-size: 1.9rem;
  }

  .about-title,
  .about-text {
      text-align: center;
  }
}


/* ----------------------------------
   Base Footer
----------------------------------- */
#footer {
  background-color: var(--c-light);
  color: var(--c-dark);
  font-family: var(--p-font) !important;
  font-size: 17px;
  margin-top: 60px;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* wrap long links/text */
#footer a,
#footer li {
  word-break: break-word;
}

/* spacing */
#footer li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* red icons */
#footer i {
  color: var(--c-red);
}

/* link styles */
#footer a {
  color: var(--c-dark);
  text-decoration: none;
  transition: color 0.3s, letter-spacing 0.3s;
}
#footer a:hover {
  color: var(--c-red);
  letter-spacing: 1px;
}



/* 1) Uppercase all column titles */
#footer h4 {
  text-transform: uppercase;
  font-weight: 600; /* optional if you want them bolder */
  font-family: var(--h-font) !important;
}

/* 2) Tweak list spacing globally */
#footer li {
  margin-bottom: 0.5rem;   /* tighter than the 0.75rem default */
  line-height: 1.4;        /* slightly more compact */
}

/* 3) If you need to override Bootstrap’s py-3 on .container: */
#footer .container.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* 4) And shorten the footer-bottom area */
.footer-bottom {
  padding-top: 60px !important;
  font-size: 20px;
  font-weight: bold;
}

/* ----------------------------------
   Responsive
----------------------------------- */
@media (max-width: 767px) {
  #footer .row {
    flex-direction: column;
    text-align: center;
  }
  #footer .col-12 {
    /* full width on xs */
    max-width: 100%;
  }
  #footer li {
    margin-bottom: 0.5rem;
  }
}


/* BOTTLES PART STYLE */

.bottle-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }


  .bottle-section.left-opened::before {
    background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 50%, #f5f5f5 50%, #f5f5f5 100%) !important;
  }
  .bottle-section.right-opened::before {
    background: linear-gradient(to right, #d1d1d1 0%, #d1d1d1 50%, #d1d1d1 50%, #d1d1d1 100%) !important;
  }
  
  .bottle-container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
  }

  .side {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.6s ease-in-out;
  }
  
  .left-side {
    background-color: #f5f5f5;
  }
  
  .right-side {
    background-color: #d1d1d1;
  }
  
  .bottle {
    width: 50%;
    position: relative;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    cursor: pointer;
    z-index: 2;
  }
  
  .bottle img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Text blocks — initially hidden */
  .bottle-text {
    position: absolute;
    width: 50%;
    top: 50%;
    transform: translateY(-50%) scale(0.98);    opacity: 0;
    pointer-events: none;
    transition: background-color 0.6s ease, color 0.6s ease, opacity 0.8s ease, transform 0.8s ease;
    z-index: 1;
    padding: 2rem;
    background: white;
  border-radius: 8px;
  }
  
  .left-text {
    background-color: #d1d1d1;
    color: white;
    right: 0;
    text-align: left;
  }

  .right-text {
  background-color: #f5f5f5;
  color: white;
  left: 0;
  text-align: right;
}
  
  /* Active logic */
  .bottle.left-bottle.clicked ~ .right-bottle {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
  }
  
  .bottle.left-bottle.clicked ~ .left-text {
    opacity: 1;
    pointer-events: auto;
  }
  
  .bottle.right-bottle.clicked ~ .left-bottle {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;  
  }
  
  .bottle.right-bottle.clicked ~ .right-text {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Optional: custom cursor when open */
  .bottle-section.opened .bottle {
    cursor: url('close-icon.svg'), auto;
  }

  .bottle.hide {
    transform: translateX(100%); /* Right goes right */
    opacity: 0;
    pointer-events: none;
  }
  
  .left-bottle.hide {
    transform: translateX(-100%); /* Left goes left */
  }

  .left-bottle {
    background-color: #f5f5f5; /* Lighter red */
  }
  
  .right-bottle {
    background-color: #d1d1d1; /* Darker red */
  }
  
  .bottle-text {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }
  
  .bottle-text.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

  
  /* Custom cursor base */
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(6px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease, transform 0.1s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    mix-blend-mode: normal;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .cursor-text {
    font-size: 15px;
    font-weight: 500;
    color: black;
    font-family: var(--p-font); 
    text-align: center;
    line-height: 1.2;
    padding: 0 8px;
    max-width: 90%;
    pointer-events: none;
  }
  
  .bottle:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.1);
  }
  

  .bottle:hover ~ .custom-cursor,
  .bottle-container:hover ~ .custom-cursor {
  opacity: 1;
  visibility: visible;
}
  
  /* Hide default cursor and show custom one on desktop */
  .bottle-container {
    cursor: default;
  }

  /* Features list */
.bottle-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.bottle-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.bottle-features .feature-icon {
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 1.25rem; /* icon size */
  line-height: 1;
}
.bottle-features .feature-text {
  font-size: 1rem;
}

/* Price */
.bottle-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Buy button */
.bottle-buy-button {
  cursor: pointer !important;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.bottle-buy-button {
  position: relative;
  overflow: hidden;
  /* if you want a transparent / outlined start state: */
  background: transparent;
  border: 2px solid #000;
  color: #000;
  transition: color 0.3s ease;
}

/* 2) the sliding fill layer */
.bottle-buy-button::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  z-index: -1;
  transition: width 0.4s ease;
}

/* 3) pick the “opposite side” color on hover */
.left-text .bottle-buy-button::before {
  background-color: #d1d1d1; /* right-side color */
}
.right-text .bottle-buy-button::before {
  background-color: #f5f5f5; /* left-side color */
}

/* 4) on hover, expand the fill */
.bottle-buy-button:hover::before {
  width: 100%;
}

/* 5) make sure your text stays visible */
.bottle-buy-button:hover {
  color: #000;
}




  
  /* HIDE custom cursor completely on small screens */
  @media screen and (max-width: 1000px) {
    .custom-cursor {
      display: none !important;
    }
  
    .bottle-container {
      cursor: default;
    }

    
      .bottle-text.show {
        opacity: 1;
  transform: translateY(0);
      }
  }

  

.bottle-section.left-opened {
    background-color: #f5f5f5 !important;
  }

  .bottle-section.left-opened .left-text,
.bottle-section.left-opened .right-text {
  background-color: #f5f5f5;
  color: white;
}
  
  .bottle-section.right-opened {
    background-color: #d1d1d1 !important;
  }

  .bottle-section.right-opened .left-text,
.bottle-section.right-opened .right-text {
  background-color: #d1d1d1;
  color: white;
}

  .bottle-section.left-opened .left-text {
    background-color: #f5f5f5;
    color: white;
  }
  
  .bottle-section.right-opened .right-text {
    background-color: #d1d1d1;
    color: white;
  }

  .bottle-section.left-opened .left-bottle,
.bottle-section.left-opened .right-bottle {
  background-color: #f5f5f5 !important;
}

.bottle-section.right-opened .left-bottle,
.bottle-section.right-opened .right-bottle {
  background-color: #d1d1d1 !important;
}


.bottle-section.left-opened .left-text,
.bottle-section.left-opened .right-text,
.bottle-section.left-opened .left-bottle,
.bottle-section.left-opened .right-bottle {
  background-color: #f5f5f5 !important;
  color: black;
}

.bottle-section.right-opened .left-text,
.bottle-section.right-opened .right-text,
.bottle-section.right-opened .left-bottle,
.bottle-section.right-opened .right-bottle {
  background-color: #d1d1d1 !important;
  color: black;
}
  
.bottle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 50%, #d1d1d1 50%, #d1d1d1 100%);
  transition: background 0.8s ease-in-out;
  z-index: 0;
  pointer-events: none;
}
  
  .bottle-section.left-opened::before {
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 50%, #d1d1d1 50%, #d1d1d1 100%);
  }
  
  .bottle-section.right-opened::before {
    background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 50%, #FFFFFF 50%, #FFFFFF 100%);
  }
  
  .bottle-section:not(.left-opened):not(.right-opened)::before {
    background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 50%, #d1d1d1 50%, #d1d1d1 100%);
  }

  @media screen and (max-width: 768px) {
    .bottle-container {
      display: flex !important;
      flex-direction: column !important;
    }
  
    /* force the exact order we want: 
       1) left image, 2) left text, 3) right image, 4) right text */
    .left-bottle  { order: 1 !important; }
    .left-text    { order: 2 !important; }
    .right-bottle { order: 3 !important; }
    .right-text   { order: 4 !important; }
  
    /* full-width & no animations as before */
    .bottle,
    .bottle-text {
      width: 100% !important;
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
      position: static !important;
    }
  
    .bottle-section {
      height: auto !important;
      padding: 2rem 1rem;
    }
    .bottle-section::before,
    .custom-cursor {
      display: none !important;
    }
  
    /* optional spacing */
    .bottle, .bottle-text {
      margin-bottom: 1.5rem;
    }
  }
  
@media screen and (max-width: 768px) {

    .bottle-section {
      height: auto !important;
      overflow: visible !important;   
      padding: 2rem 1rem;          
    }
    .bottle-container {
      flex-direction: column !important;
      height: auto !important;       
    }
  
    .left-bottle  { order: 1 !important; }
    .left-text    { order: 2 !important; }
    .right-bottle { order: 3 !important; }
    .right-text   { order: 4 !important; }
  
    .bottle,
    .bottle-text {
      width: 100% !important;
      position: static !important;
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
      pointer-events: auto !important;
      margin-bottom: 1.5rem;
    }
  
    .bottle-section::before,
    .custom-cursor {
      display: default !important;
    }

    .bottle-section.left-opened .left-text,
.bottle-section.left-opened .right-text,
.bottle-section.left-opened .left-bottle,
.bottle-section.left-opened .right-bottle {
  background-color: none !important;
  color: white;
}

.bottle-section.right-opened .left-text,
.bottle-section.right-opened .right-text,
.bottle-section.right-opened .left-bottle,
.bottle-section.right-opened .right-bottle {
  background-color: none !important;
  color: white;
}
  }

   /* ─────────────────────────────────────────────────────────
   DESKTOP:  instant overlay on open, smooth fade on close
   ───────────────────────────────────────────────────────── */
@media screen and (min-width: 769px) {

    /* base overlay (hidden) – keep the fade‑out transition */
    .bottle-section::after {
      transition: opacity .5s ease;    /* fade‑out only */
      opacity: 0;
    }
  
    /* when OPEN: show overlay immediately (no transition) */
    .bottle-section.left-opened::after,
    .bottle-section.right-opened::after {
      transition: none;                /* kill fade‑in */
      opacity: 1;                      /* jump to visible */
    }
  }

  @media (min-width: 769px) {
     .bottle-section,
    .bottle-container {
      cursor: default !important;
    }
  }
  
  .bottle-section,
  .bottle-section * {
    cursor: default !important;
    color: #000 !important;
  }

  @media screen and (max-width: 1024px) {
    .hero-text {
      font-size: 2rem !important;
    }

    .bottle-section::before {
      display: none !important;
    }
    /* rely solely on the .side backgrounds now */
    .side {
      width: 100%;
      /* ensure we keep their original bg-colors */
      background-color: inherit !important;
    }
  }

  .bottle-section.aos-init::before,
.bottle-section.aos-animate::before {
  /* either hide it entirely: */
  display: none !important;
}
  /* ───────────────── Reviews Section ───────────────── */

.reviews-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}
.reviews-section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

/* grid of review cards */
.wp-google-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* each review card */
.wp-google-review {
  background: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.wp-google-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* review header (avatar, name, stars) */
.wp-google-review .wpg-author {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.wp-google-review .wpg-author img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-right: .75rem;
}
.wp-google-review .wpg-author .wpg-author-name {
  font-weight: 600;
  color: #222;
}
.wp-google-review .wpg-rating {
  margin-left: auto;
  color: #f5a623; /* star color */
}

/* review text */
.wp-google-review .wpg-text {
  font-size: .95rem;
  line-height: 1.5;
  color: #444;
  margin-top: .75rem;
}

/* date/time */
.wp-google-review .wpg-time {
  display: block;
  font-size: .8rem;
  color: #888;
  margin-top: .5rem;
}



/* mobile tweaks */
@media (max-width: 768px) {
  .reviews-section {
    padding: 2.5rem 1rem;
  }
  .reviews-section__title {
    font-size: 1.75rem;
  }
  .wp-google-review {
    padding: 1.25rem;
  }
}

/* ─── Horizontal scroll tweaks ─── */

.reviews-section .wp-google-review-grid {
  display: flex;               /* switch from grid → flex-row */
  overflow-x: auto;            /* enable horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  gap: 1.5rem;                 /* same gap as before */
  padding-bottom: 1rem;        /* room for scrollbar (optional) */
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
}

.reviews-section .wp-google-review {
  flex: 0 0 auto;              /* each card keeps its width */
  width: min(280px, 80%);      /* adapt as you like */
  scroll-snap-align: start;    /* snap alignment */
}

/* Optional: make it snap‑to‑card when you lift your finger */
.reviews-section .wp-google-review-grid {
  scroll-snap-type: x mandatory;
}

/* Hide default scrollbar (WebKit) — optional cosmetic */
.reviews-section .wp-google-review-grid::-webkit-scrollbar {
  height: 6px;
}
.reviews-section .wp-google-review-grid::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}


/* play button */
.scroll-to-video {
  position: absolute;
  bottom: 35px;    /* 20px up from bottom of #video */
  right: 20px;     /* 20px in from right of #video */
  width: 60px;     /* size of the clickable area */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;      /* no background circle */
  padding: 0;
  cursor: pointer;
  z-index: 10;
}

/* 3) big white icon */
.scroll-to-video svg {
  width: 100%;    /* fills the 60×60 box */
  height: 100%;
  fill: #fff;     /* white triangle */
  stroke: none;
}

/* 4) no hover effect needed—static icon */
.scroll-to-video:hover {
  transform: none;
  background: none;
}

#reviews-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  z-index: 1 !important;
}

/* 1) Make sure the Trustindex wrapper and its iframe are forced visible */
.trustindex-widget-container,
.trustindex-widget-container > iframe {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 2) Give it a minimum height so you can spot it */
.trustindex-widget-container {
  min-height: 300px;
}

/* 3) If it loads an iframe, make it fill the container */
.trustindex-widget-container > iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
}



/* LANGUAGE SWITCH */

.dropdown-menu.show {
  margin-top: 20px !important;
  background: transparent;
  border-color: transparent !important;
  justify-content: right;
  justify-items: end;
}

/* Only flags, no text */
.language-dropdown .dropdown-item {
  padding: 0.2rem 0.3rem;
}

/* Center each flag link */
.language-dropdown .dropdown-item {
  text-align: center;
}

/* Ensure no leftover name width */
.language-dropdown .dropdown-item {
  font-size: 0;     /* hides any stray text nodes */
}

/* Flag sizing */
.language-dropdown .dropdown-item img {
  width: 25px;      /* your chosen size */
  height: auto;
  display: inline-block;
}

/* Remove any transform hover */
.language-dropdown .dropdown-item:hover img {
  transform: none !important;
  background: none !important;
}
.dropdown-item:focus, .dropdown-item:hover {
  transform: scale(1.1) !important;
  background: none !important;
}

.language-dropdown .dropdown-item:hover {
  background: #5F120D;

}

.btn, .dropdown-toggle {
  color: white;
}

img[src*="/polylang/"][src*="/flags/"] {
  width: 32px !important;    
  height: auto !important;   
}

@media screen and (max-width: 768px) {

  .dropdown-toggle {
    color: rgb(26, 26, 26) !important;
  }

  .desktop-dropdown {
    display: none !important;
  }
  
  .desktop-nav {
    display: contents;
}
  

  .hero-text {
    font-size: 1rem !important;
  }

.dropdown-menu.show {
  justify-items: start;
}
}


.desktop-dropdown {
  display: inline-block;
}
@media (max-width: 767px) {
  .desktop-dropdown {
    display: none !important;
  }
}

@media screen and (max-width: 458px) {
  .hero-subtext .subtext {
  font-size: 17px;
  }

  .hero-text {
    font-size: 0.8rem !important;
  }
}