@import "https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css";
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@200;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

html {
  scroll-behavior: smooth;
}
.no-scroll {
  overflow: hidden;
  width: 100vw; /* Prevents horizontal scroll on iOS */
  position: fixed; /* Prevents background scroll */
}
html, body {
  overflow-x: clip; /* 👈 Better for layout + sticky compatibility */
  max-width: 100%;
}
.scroll-down {
  display: block;
  margin: 2rem auto;
  text-align: center;
  color: rgba(244, 12, 0, 0.247);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}
.scroll-up {
  display: block;
  margin: 2rem auto;
  text-align: center;
  color: rgba(244, 12, 0, 0.247);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
/* Initial h2 state */
h2 {
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
/* When in view */
h2.zoom-in {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}
/*cookies*/
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden; /* Hidden by default */
}
.cookie-banner-content {
  background: rgb(238, 29, 35);
  padding: 20px;
  text-align: center;
  color: white;
  border-radius: 8px;
}
.cookie-banner button {
  background-color: #2b252549;
  color: rgb(238, 29, 35);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  margin: 10px;
  border-radius: 10px;
}
.cookie-banner button:hover {
  background-color: #f0f0f0;
}
.cookie-banner.visible {
  visibility: visible;
}
.flatpickr-calendar .flatpickr-months {
  background-color: rgba(233, 137, 140, 0.11);
}
/* Change day number font */
.flatpickr-day {
  font-family: Arial, sans-serif;
}
/* The navbar container */
/* Sticky Navbar */
nav.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar .logo img {
  max-height: 45px;
  object-fit: contain;
}
/* Reset body margins */
body {
  margin: 0;
  padding: 0;
}
/* The horizontal links on desktop */
.nav-links {
  display: flex;
  list-style: none;
  gap: 11px;
  margin: 0 5px 0 0;
  padding: 0;
  font-family: var(--title-font);
}
/* Link styles */
.nav-links li a {
  color: rgb(238, 29, 35);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}
.nav-links li a:hover {
  transform: scale(1.2);
}
/* The hamburger button (hidden on desktop) */
.menu-btn {
  display: none;        /* only show on mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-btn div {
  width: 30px;
  height: 4px;
  background-color: rgb(238, 29, 35);
  border-radius: 2px;
}
/* ===== FORM WRAPPER ===== */
form {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(255, 250, 241, 0.555);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-family: Arial, sans-serif;
}

/* ===== FORM GROUPS ===== */
form div {
  margin-bottom: 1.5rem;
}

/* ===== LABELS ===== */
label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--title-font);
  font-size: 1rem;
  color: #222;
}

/* ===== INPUTS & SELECT ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

/* Focus effects */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgb(238, 29, 35);
  box-shadow: 0 0 8px rgba(238, 29, 35, 0.6);
  transform: scale(1.02);
}

/* Special styling for <select> */
select {
  appearance: none; /* Removes native arrows in Safari/Chrome */
  color: #333;
}

/* ===== CHECKBOX ===== */
input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* ===== READ-ONLY FIELDS ===== */
input[readonly] {
  background-color: rgba(253, 242, 242, 0.37);
  cursor: not-allowed;
}

/* ===== SUBMIT BUTTON ===== */
input[type="submit"] {
  background-color: rgb(238, 29, 35);
  color: white;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-family: 'Bitter', serif !important; /* 🔥 Explicit Inter font */
  font-weight: 400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: auto;
  display: inline-block;
  text-align: center;
}

input[type="submit"]:hover {
  background-color: rgb(220, 20, 20);
  transform: translateY(-2px); /* lift effect */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* ===== FLATPICKR CALENDAR ===== */
.flatpickr-calendar {
  font-family: Arial, sans-serif;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.flatpickr-months {
  background-color: rgb(238, 29, 35);
  color: white;
  font-weight: bold;
}

.flatpickr-weekdays {
  background-color: #f7f7f7;
  color: #555;
}

.flatpickr-day.today {
  border-color: rgb(238, 29, 35);
  color: rgb(238, 29, 35);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background-color: rgb(238, 29, 35);
  color: white;
  border: none;
}

.flatpickr-day:hover {
  background: #ccc;
}

/* === HOMEPAGE GALLERY LAYOUT === */
.homepage-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  overflow-x: hidden;
  padding: 4rem 2rem;
  background-color: rgb(255, 250, 241);
}
/* === LEFT TEXT SIDE === */
.gallery-text {
  flex: 1 1 45%;
  min-width: 300px;
}
.gallery-text h2 {
  font-size: 2rem;
  color: #1b1919;
  margin-bottom: 1.5rem;
  font-family: "Bitter", serif;
}
.gallery-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery-benefits li {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: start;
  gap: 0.75rem;
  color: #1b1919;
}
.gallery-benefits i {
  color: #d4af37; /* gold accent for check icon */
  font-size: 1.2rem;
  padding-top: 0.2rem;
}
.gallery-benefits p {
  margin: 0;
  color: #4a4a4a;
}
/* === RIGHT IMAGE GRID === */
.gallery-grid {
  flex: 1 1 50%;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  min-width: 320px;
}
.gallery-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.gallery-img:hover {
  filter: brightness(85%);
  transform: scale(1.02);
}
/* === Fullscreen Gallery === */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(15, 14, 14);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.carousel-inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.gallery-img.fullscreen {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  box-shadow: 0 0 20px rgb(126, 123, 123);
  border-radius: 10px;
}
.fullscreen-overlay.hidden {
  display: none;
}
.fullscreen-overlay .close-carousel,
.fullscreen-overlay .prev,
.fullscreen-overlay .next {
  position: absolute;
  color: white;
  font-size: 2rem;
  cursor: pointer;

  padding: 0.5rem;
  border-radius: 5px;
  z-index: 10000;
}
.fullscreen-overlay .close-carousel {
  top: 1rem;
  right: 1rem;
}
.fullscreen-overlay .prev {
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}
.fullscreen-overlay .next {
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
/* === Arrows === */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;

  border-radius: 50%;
  transition: background 0.3s;
}
.gallery-arrow.left {
  left: 1rem;
}
.gallery-arrow.right {
  right: 1rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* flips black to white */
}

/* === Close Button === */
.close-btn {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  z-index: 10001;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: color 0.3s ease;
}
/* ==== HIGHLIGHTED OFFERS ==== */
.highlighted-offers {
  scroll-margin-top: 100px;
  display: flex;
  background-color: rgba(210, 118, 12, 0.106) !important;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4rem 2rem;
}
.offer {
  flex: 1 1 300px;
  max-width: 400px;
}
/* DESPRE page */

.despre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
.despre-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.despre-section h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;

  align-items: center;
  color: #374151;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}
.despre-section i {
  margin-right: 0.6rem;
  font-size: 1.5rem;
  color: #e53935;
}
.despre-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
:root {
  --title-font: 'Bitter', serif;
  --body-font: 'Inter', sans-serif;
}
.bitter-bold {
  font-family: var(--title-font);
  font-weight: 500;
}
body, p {
  font-family: var(--body-font);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* Optional: Set font-weight styles */
h1, h2, h3, h4,h5, h6 {
  font-family: var(--title-font);
  font-weight: 600;
  line-height: 1;
  color: #111827;
}
h1 {
  margin-bottom: 1.5rem;
}
h2 {
  margin-bottom: 1.2rem;
}
h5 {
  font-weight: 400 !important;
  color: #222222c9 !important;
}
.section {
  padding: 4rem 1rem;
}
.section h2, .section p {
  margin-bottom: 2rem;
}
.carousel-animate.delay-1 {
  color: white !important;
}
.section-white {
  background-color: #ffffff;
}
.section-alt {
  background-color: #fffaf5;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
h1 { font-size: clamp(2.2rem, 6vw, 3rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); }
h3 { font-size: 1.4rem; }
.slide-content {
  background-color: rgba(255, 255, 255, 0.685);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.144);
}
button,
input[type="submit"],
.btn {
  color: #fff !important;
}
.despre-hero {
  padding: 2rem 2rem;
  text-align: center;
}
.despre-hero .subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
}


/* === Thumbnail Gallery === */
.floating-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.float-pic,
.gallery-img.float-pic.center {
  max-width: 250px;
  width: 250px;
  height: 250px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  object-fit: cover;
  cursor: zoom-in;
}

.float-pic:hover,
.gallery-img.float-pic.center:hover {
  transform: scale(1.05);
}

/* === Fullscreen Gallery Overlay === */
.fullscreen-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

.fullscreen-overlay.hidden {
  display: none;
}

.fullscreen-img {
  max-width: 85vw;
  max-height: 85vh;
  margin: 2rem;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.37)!important;
  background-color: #131212;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.fullscreen-img:hover {
  transform: scale(1.05)!important;
}


/* HERO SLIDER */
.hero-slider {
  height: 60vh;
  max-height: 500px;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
/* Adjustments for very large screens */
@media (min-width: 1400px) {
  .hero-slider {
    height: 85vh;
    max-height: 800px;
  }
  .nav-links li a {
    padding-right: 2rem;
    letter-spacing: 1.5px; /* subtle wider look */
    font-size: 1.1rem;
  }
  .btn-navbar {
    letter-spacing: 1.5px;
    font-size: 1.1rem;
  }
}
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
  position: relative;
}
.hero-slider .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slide-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  color: white;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.205);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  width: 80%;
  text-align: center;
}
.slide-content h2 {
  font-size: 2.5rem;
  line-height: 1;
}
.slide-content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.slide-content .btn {
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  width: auto;
  align-self: center;
  position: relative;
  z-index: 2000;
}
.btn {
  z-index: 2000;
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 101;
}
.active-link {
  color: gray !important;
}
img, .card, .gallery-img, .form, .btn {
  border-radius: 12px;
}
.footer {
  background: #222;
  color: white;
  padding: 1rem;
  text-align: center;
}
.footer i {
  color: gold;
  margin-right: 0.5rem;
}
.site-footer h4 {
  font-family: var(--title-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1b1b1bee;
}
.site-footer a:hover {
  color: rgb(238, 29, 35)!important;
}

.footer-contact a {
  color: black;
  text-decoration: none;
}

.footer-links a {
  text-decoration: none !important;
}
/* ==== OFFERS PAGE ==== */
/* Hero Section */
.offers-hero {
  padding: 1.5rem 1rem;
  text-align: center;
}
.section-title,
.offers-hero h2,
.despre-hero h2 {
  font-family: var(--title-font);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: rgb(238, 29, 35);
  text-align: center;
  margin-bottom: 1rem;
}
.offers-hero .subtitle {
  font-style: italic;
  color: #6b7280;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
/* Carousel */
.offers-slider {
  margin: 3rem auto;
  max-width: 1100px;
  position: relative;
}
.offers-slider img {
  border-radius: 12px;
  object-fit: cover;
  max-height: 700px;
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  filter: invert(1);
}
.carousel-inner {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
}
.carousel-item img:hover {
  transform: scale(1.01);
}
/* Section Intro */
.offers-intro {
  padding: 2rem 1rem;
  background: #fffefc;
}
.offers-intro h3 {
  font-size: 1.8rem;
  color:rgb(34, 32, 32) ;
  margin-bottom: 1rem;
}
/* Package Cards */
.offers-packages.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 3rem;

}
.offers-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 3rem 1rem;
  background-color: rgb(255, 250, 241);
}
.offer-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  padding: 2rem
}
.offer-card:hover {
  transform: scale(1.01);
}
.offer-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.offer-details {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-details h4 {
  font-size: 1.4rem;
  color: rgb(189, 152, 146);
  margin-bottom: 0.75rem;
}
.offer-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.offer-details ul li {
  margin-bottom: 0.4rem;
  color: #374151;
}
.offer-details p {
  color: #374151;
  margin-bottom: 1rem;
}
.offer-card .btn-golden {
  position: relative;
  z-index: 1;
}
@media (pointer: coarse) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}
@media (max-width: 768px) {
  #fullscreen-carousel img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: cover;
  }
}
.mobile-anchor {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #ee1d242d;
  color: #464444;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;
}

@media (max-width: 768px) {
  .mobile-anchor {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.message-success {
  background-color: #fff9e6b7;
  border: 2px solid #f8e47398;
  padding: 20px;
  margin: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.message-success h2 {
  font-size: 24px;
  color: rgb(238, 29, 35);
  margin-bottom: 10px;
}

.message-success p {
  font-size: 16px;
  color: #333;
}

/* * === RESPONSIVE STYLES ==== */
@media (max-width: 768px) {
  .navbar {
    padding-left: 15px !important;
  }
  .menu-btn {
    display: flex;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
    transition: all 0.3s ease;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li a {
    font-size: 1.1rem;
    padding: 10px 0;
    color: rgb(238, 29, 35);
    text-decoration: none;
    font-weight: 500;
  }
  .nav-links li a:hover {
    background-color: #f8f8f8;
  }
  input[readonly] {
    background-color: #df6c6c0c;
    cursor: not-allowed;
  }
  .carousel-item img {
    height: 300px;
  }
  .slide-content {
    top: 68%;
    padding: 1.5rem 1rem;
    max-width: 98%;
  }
  .slide-content h2 {
    font-size: 1.4rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slide-content h5 {
    font-size: 0.90rem;
  }
  .slide-content .btn {
    width: 100%;
  }
    .homepage-gallery {
      flex-direction: column;
      align-items: stretch;
      padding: 0 1rem; /* Add horizontal padding */
    }
    .gallery-text {
      padding: 0.5rem 0;
    }
    .gallery-title {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }
    .gallery-benefits {
      padding-left: 0;
    }
    .gallery-benefits li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 1.2rem;
    }
    .gallery-benefits li i {
      color: goldenrod;
      font-size: 1.2rem;
      margin-top: 0.3rem;
      flex-shrink: 0;
    }
    .gallery-benefits li p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.4;
      word-break: break-word;
      flex: 1;
    }
    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.2rem;
      margin-top: 1.5rem;
    }

    .gallery-img {
      width: 100%;
      max-width: 300px;
      height: 225px;
      object-fit: cover;
      border-radius: 10px;
    }

  .gallery-arrow {
      display: none !important;
  }
  [data-aos] {
    will-change: transform, opacity;
    transition: all 0.6s ease-out;
  }
}
@media (max-width: 360px) {
  .gallery-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.8rem;
  }
  .gallery-benefits li i {
    font-size: 1rem;
    color: goldenrod;
    flex-shrink: 0;
    margin-top: 0.35rem;
  }
  .gallery-benefits li p {
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
    max-width: 100%;
  }
  .gallery-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .gallery-img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover;
    border-radius: 10px;
  }
  .gallery-grid {

    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-right:2rem;
  }
  .homepage-gallery .container {
    padding: 0 1rem;
  }

}

.site-footer {
  background-color: #f9d4c367;
  color: #1f2937;
  padding: 2rem 2rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-contact h4,
.footer-social h4 {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgb(44, 40, 40);
}
.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-contact li,
.footer-links li {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;

}
.footer-contact i {
  color: rgba(14, 13, 13, 0.534);
  padding: 0.5rem;
}
.footer-social .social-icons a {
  margin-right: 1rem;
  font-size: 1.4rem;
  color: #8b5e3c;
  transition: color 0.3s ease;
}
.footer-social .social-icons a:hover {
  color: rgb(244, 11, 0);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #eaeaea;
  color: #555;
}
.btn-light-hero {
  text-decoration: none;
  background-color:rgb(238, 29, 35);
  color: white;
  font-family: 'Bitter', serif;
  font-weight: 400;
  border: 1px solid white;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;

  &:hover {
    background-color: #f4dfdc;
    color: #815e5e;
    transform: translateY(-2px);
  }
}
.btn-golden {
  background-color: rgb(238, 29, 35) !important;
  color:white !important;
  font-weight: 400 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.4rem;
  box-shadow:0 4px 12px rgba(0, 0, 0, 0.15) !important;
  font-family: 'Bitter', serif !important;
  transition: all 0.3s ease-in-out !important;
}
.btn-golden:hover {
  background-color: #f0d86c25 !important;
  color: rgba(0, 0, 0, 0.664) !important;
  transform: scale(1.05)!important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2)!important;
}
.carousel-item {
  visibility: hidden;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  visibility: visible;
}
.carousel-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.carousel-item.active .carousel-animate {
  opacity: 1;
  transform: translateY(0);
}
/* Optional: stagger delay classes */
.delay-1 {
  transition-delay: 0.3s;
}
.delay-2 {
  transition-delay: 0.6s;
}
.despre-section {
  background: #fffdf9;
  border-left: 4px solid #eec;
  padding: 2rem;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
  border-bottom: 1px dotted #e0cfcf;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.note {
  color: gray;
  font-style: italic;
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-facil {
  opacity: 0;
  animation: fadeSlideIn 0.8s ease-out forwards;
}
.section:nth-of-type(even) {
  background-color: #fff9f2; /* soft warm cream */
}
.section:nth-of-type(odd) {
  background-color: #ffffff;
}
.btn-navbar {
  text-decoration: none;
  color: rgb(238, 29, 35) !important;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgb(238, 29, 35);
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1;
  vertical-align: middle;
}
.btn-navbar:hover {
  background-color: rgb(220, 20, 20);
  color: white !important;
  transform: translateY(-2px); /* lift effect */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
}
.newsletter-input {
  margin-bottom: 0.75rem;
}
.ticker-bar {
  background: rgb(238, 29, 35);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  height: 30px;              /* thinner bar */
  display: flex;
  align-items: center;
  position: sticky;
  top: 50px;                 /* adjust to navbar height */
  z-index: 1000;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  min-width: 200%;
}

/* new */
.ticker-move .ticker-link{
  display: inline-block;        /* keeps the same width and scroll behavior */
  padding-right: 300px;         /* space before the next loop */
  color: #eeeef2;               /* same color as before */
  text-decoration: none;        /* remove underline */
  font-family: var(--title-font);
  font-size: 15px;
  letter-spacing: 1px;
}
.ticker-move .ticker-link:hover { text-decoration: underline; } /* optional */
.ticker-move .ticker-link:focus-visible{
  outline: 2px solid rgba(212,175,55,.6);
  outline-offset: 2px;
}


@keyframes ticker {
  0%   { transform: translateX(50%); }
  100% { transform: translateX(-100%); }
}
/* ----- Ozonoterapie page ----- */
.ozon-hero {
  background: linear-gradient(0deg, rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
              url(/assets/ozon/hero.jpg) center/cover no-repeat;
  border-bottom: 1px solid #eee;
}
.ozon-bullets li { margin-bottom: .4rem; padding-left: .9rem; position: relative; }
.ozon-bullets li::before { content: "•"; position: absolute; left: 0; }

.check-card {
  background: #fff; border: 1px solid #eee; border-radius: 16px;
  padding: 18px; box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.check-icon { font-size: 1.25rem; line-height: 1; }

.ozon-cta { background: #fff6f6; border-top: 1px solid #fde2e2; }

/* optional: tighten container on very wide screens */
@media (min-width: 1400px) {
  .ozon-page .container { max-width: 1100px; }
}
.ozon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* space between icon and text */
}

.ozon-icon {
  height: 70px;
  width: auto;
}
/* Make the photo float right so text appears above AND below it */
.ozon-wrap .ozon-float {
  float: right;
  width: 300px;               /* adjust to taste: 480–640px works well */
  margin: 18px 0 20px 28px;   /* top/right/bottom/left; pushes photo a bit lower */
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* Big, readable lead */
.lead-xl {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Clear the float after the section so following content doesn't wrap */
.ozon-wrap::after {
  content: "";
  display: table;
  clear: both;
}

/* Golden button */
.btn-golden {
  background-color: #d4af37;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: .7rem 1.4rem;
  box-shadow: 0 6px 12px rgba(212,175,55,.25);
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s;
}
.btn-golden:hover { background:#b9972f; color:#fff; transform: translateY(-1px); }

/* Mobile: stack image full width */
@media (max-width: 991px) {
  .ozon-wrap .ozon-float {
    float: none;
    width: 100%;
    margin: 12px 0 16px 0;
  }
}
.ozon-conditions h2 { font-weight: 800; }
.ozon-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.ozon-block ul { margin: 0; padding-left: 1.2rem; }
.ozon-block li { margin-bottom: .35rem; }
.step-title { font-weight: 700; }
/* Show the right label based on aria-expanded without JS */
.accordion-button .label-open { display: none; }
.accordion-button[aria-expanded="true"] .label-open { display: inline; }
.accordion-button[aria-expanded="true"] .label-closed { display: none; }

/* Optional: make the closed text look like a placeholder */
.accordion-button .label-closed { color: #6c757d; }  /* Bootstrap muted */
/* Neutral look – remove Bootstrap blue */
.parcurs-acc .accordion-item { border: 1px solid #eee; border-radius: .5rem; overflow: hidden; }
.parcurs-acc .accordion-button { background: #e8c06425; color: inherit; }
.parcurs-acc .accordion-button:not(.collapsed) { background: #7a87b467; color: inherit; box-shadow: none; }
.parcurs-acc .accordion-button:focus { border-color: #eee; box-shadow: 0 0 0 .2rem rgba(212,175,55,.25); } /* soft golden focus */
.parcurs-acc .accordion-collapse { border-top: 1px solid #eee; }
/* Card look (soft, clean) */
.benefit-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
}

/* Emoji bullets */
.emoji-list { list-style: none; margin: 0; padding: 0; }
.emoji-list li { position: relative; padding-left: 1.8rem; margin-bottom: .5rem; line-height: 1.5; }
.emoji-list li::before { position: absolute; left: 0; top: .1rem; font-size: 1.1rem; }

/* Per-line icons (feel free to swap) */
.e-micro::before   { content: "🧫"; }
.e-shield::before  { content: "🛡️"; }
.e-comfort::before { content: "😊"; }
.e-energy::before  { content: "⚡"; }
.e-glucose::before { content: "🧪"; }
.e-lipid::before   { content: "🧬"; }
.e-circ::before    { content: "🫀"; }
.e-focus::before   { content: "🧠"; }
.e-mood::before    { content: "🧘"; }
.e-detox::before   { content: "✨"; }

/* Tighten on small screens */
@media (max-width: 575px) {
  .emoji-list li { margin-bottom: .4rem; }
}
.benefit-card h3 { font-weight: 700; }
details > summary { cursor: pointer; margin-bottom: .25rem; }
details[open] > summary { color: #7a171a; } /* your theme red if you want */
.card ul { padding-left: 1.2rem; }
/* Hide the default marker and make it look like a link */
.details-toggle { cursor: pointer; list-style: none; }
.details-toggle::-webkit-details-marker { display: none; }

/* Label text swaps based on the open state */
.details-toggle .dt-label::after { content: attr(data-closed); color: #0d6efd; }       /* blue when closed */
details[open] .details-toggle .dt-label::after { content: attr(data-open); color: #6c757d; } /* grey when open */

/* Optional: small chevron that rotates */
.details-toggle::before {
  content: "▸";
  display: inline-block;
  margin-right: .35rem;
  transition: transform .15s ease;
  color: currentColor;
}
details[open] .details-toggle::before { transform: rotate(90deg); }
/* Menu-style dotted leaders */
.price-lines { list-style: none; padding: 0; }
.price-lines li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid #f1f1f1;
}
.price-lines li:last-child { border-bottom: 0; }

.price-lines .label { font-weight: 500; }
.price-lines .price { font-weight: 700; white-space: nowrap; }

/* The “dots” stretch between name and price */
.price-lines .dots {
  height: 1px;
  align-self: center;
  background-image: linear-gradient(to right, #dadada 33%, rgba(255,255,255,0) 0);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  transform: translateY(-.2em);
}

/* Card polish (optional) */
#tarife .card { border: 1px solid #eee; border-radius: 12px; }
/* Wrapper just to scope styles */
.ozon-wrap { position: relative; }

/* Floated image (desktop) */
/* your existing float/sizing */
.ozon-float {
  float: right;
  width: min(520px, 38vw);   /* controls size */
  height: auto;
  margin: 0 0 1rem 2rem;     /* space from text */
}

/* round/crop nicely for the PNG */
.doc-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  background: transparent;
  box-shadow: none;
}

/* optional: nicer on mobile */
@media (max-width: 992px) {
  .ozon-float {
    float: none;
    display: block;
    margin: 1rem auto 1.5rem;
    width: min(360px, 70vw);
  }
}


/* Make the first paragraph feel like a “lead” block of copy */
#dr-filimon-alt .lead { font-size: 1.125rem; line-height: 1.7; }

/* Mobile / tablet: drop the float and make the image full width */

.testimonial-card{
  max-width:900px;
  background:#fff8f6;
  border:1px solid #f0e6e2;
  border-radius:16px;
  padding:1.25rem 1.25rem 1rem;
  position:relative;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.testimonial-card::before{
  content:"“";
  position:absolute;
  top:-12px; left:16px;
  font-size:80px; line-height:1;
  color:rgba(122,23,26,.12);
  pointer-events:none;
}
.testimonial-quote{ margin:0 0 .5rem 0; font-style:italic; color:#333; }
.testimonial-quote p{ margin:0; }
.testimonial-author{ font-weight:600; color:#444; }
/* soft section background that matches the site */
.bg-soft { background: #fafbfd; }

/* cards */
.aff-card .card-title {
  font-weight: 700;
}
.aff-card ul { padding-left: 1.2rem; }
.aff-card li { margin-bottom: .25rem; }

/* tighten on very small screens */
@media (max-width: 480px) {
  .aff-card .card-title { font-size: 1.05rem; }
  .aff-card li { margin-bottom: .2rem; }
}
