/*
 * Vila Prestige Sovata — Custom Styles
 *
 * COLOR SCHEME: To change the site's look, edit the CSS variables
 * in :root below. All colors are defined here — change once,
 * applies everywhere.
 *
 * Color palette was chosen to complement the accommodation's
 * interior and exterior photography — warm mahogany wood tones,
 * terracotta roofing, lush green surroundings, and clean white interiors.
 */

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

:root {
  /* ===== COLOR SCHEME — edit these to change the entire site ===== */
  --color-primary: #724232;       /* main brand color (buttons, headings, navbar) — warm cinnamon brown */
  --color-primary-dark: #5A3025;  /* darker shade for hover states */
  --color-primary-light: #F5EBE6; /* lighter tint for backgrounds, cards */
  --color-accent: #25A244;        /* accent/CTA color (WhatsApp btn, highlights) — forest green */
  --color-accent-dark: #1E8A38;   /* accent hover */
  --color-text: #2D2926;          /* main body text */
  --color-text-light: #7A706A;    /* secondary/muted text */
  --color-bg: #FFFFFF;            /* main background */
  --color-bg-alt: #FAF7F5;        /* alternating section background */
  --color-white: #FFFFFF;
  --color-dark: #2C1A12;          /* footer, dark sections */
  --color-hero-overlay: rgba(44, 26, 18, 0.55); /* hero image dark overlay */

  /* ===== SEMI-TRANSPARENT COLORS ===== */
  --color-overlay-dark: rgba(0, 0, 0, 0.5);
  --color-overlay-gradient: rgba(0, 0, 0, 0.3);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-accent-glow: rgba(37, 162, 68, 0.4);
  --color-accent-glow-strong: rgba(37, 162, 68, 0.5);
  --color-accent-glow-soft: rgba(37, 162, 68, 0.1);
  --color-accent-glow-zero: rgba(37, 162, 68, 0);

  /* ===== SHADOWS ===== */
  --shadow-xs: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover-strong: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-btn-hero: 0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-text-hero: 0 2px 10px rgba(0, 0, 0, 0.3);

  /* ===== FONTS ===== */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'DM Sans', Arial, sans-serif;

  /* ===== SPACING & SIZING ===== */
  --navbar-height: 72px;
  --section-padding: 6rem;
  --border-radius: 8px;
}

/* ===== GLOBAL RESETS & BASE ===== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 600;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

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

/* ===== SECTION BASE ===== */

.section-padding {
  padding: var(--section-padding) 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: 0.75rem;
}

.section-title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

/* ===== NAVBAR ===== */

.navbar {
  padding: 1rem 0;
  transition: all 0.4s ease;
  height: var(--navbar-height);
  z-index: 1050;
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.4s ease;
}

.navbar.scrolled .navbar-brand {
  color: var(--color-primary);
}

.navbar-brand:hover {
  color: var(--color-primary-light);
}

.navbar.scrolled .navbar-brand:hover {
  color: var(--color-primary-dark);
}

.navbar .nav-link {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

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

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

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

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

.navbar-phone {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--color-white);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar.scrolled .navbar-phone {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.navbar-phone:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.navbar.scrolled .navbar-phone:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.navbar.scrolled .navbar-toggler {
  color: var(--color-primary);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/main.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--color-white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: var(--shadow-text-hero);
}

.hero .lead {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-heading);
  opacity: 0.95;
}

.hero .btn {
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.btn-hero-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-hero-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hero);
}

.btn-hero-whatsapp {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn-hero-whatsapp:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hero);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-white);
  font-size: 1.5rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

/* Hero entrance animation */

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

.hero h1,
.hero .lead,
.hero .d-flex,
.hero-badges {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.hero h1            { animation-delay: 0.1s; }
.hero .lead         { animation-delay: 0.3s; }
.hero .d-flex       { animation-delay: 0.5s; }
.hero-badges        { animation-delay: 0.7s; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* ===== DESPRE / ABOUT ===== */

.despre-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.despre-img:hover img {
  transform: scale(1.03);
}

.despre-text p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.85;
}

.despre-text p:first-of-type::first-letter {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}

/* ===== FACILITĂȚI / AMENITIES ===== */

.facility-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  height: 100%;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}

.facility-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.facility-card h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0;
}

/* ===== GALERIE / GALLERY ===== */

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-overlay-gradient) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

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

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  color: var(--color-white);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox / Modal */

.lightbox-modal .modal-dialog {
  max-width: 90vw;
  margin: auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.lightbox-modal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.lightbox-modal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-modal .lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.lightbox-modal .btn-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1060;
  background-color: var(--color-white);
  border-radius: 50%;
  padding: 0.75rem;
  opacity: 0.9;
  filter: none;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1060;
  background-color: var(--color-white);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.lightbox-nav:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  background-color: var(--color-overlay-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  z-index: 1060;
}

/* ===== RECENZII / REVIEWS ===== */

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 1.2rem 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.booking-award-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.booking-score {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: var(--border-radius);
  line-height: 1;
}

.booking-label {
  text-align: left;
}

.booking-label strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-text);
}

.booking-label span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.review-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-primary);
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover-strong);
}

.review-card .review-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.review-card .review-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary-light);
  line-height: 0;
  vertical-align: -0.7rem;
  margin-right: 0.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.btn-booking {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-booking:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* ===== CONTACT ===== */

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.contact-icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  min-width: 28px;
  text-align: center;
  margin-top: 0.15rem;
}

.contact-item a {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-primary);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.1rem;
}

.btn-cta-call {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-cta-call:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-cta-whatsapp {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-cta-whatsapp:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* ===== FLOATING WHATSAPP ===== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1040;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px var(--color-accent-glow);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 6px 25px var(--color-accent-glow-strong);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px var(--color-accent-glow);
  }
  50% {
    box-shadow: 0 4px 20px var(--color-accent-glow), 0 0 0 15px var(--color-accent-glow-soft);
  }
  100% {
    box-shadow: 0 4px 20px var(--color-accent-glow), 0 0 0 30px var(--color-accent-glow-zero);
  }
}

/* ===== FOOTER ===== */

.site-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 1.5rem;
}

.footer-description {
  color: var(--color-white-70);
  font-size: 0.95rem;
}

.site-footer h5 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.site-footer a {
  color: var(--color-white-70);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--color-white-70);
}

.footer-contact-item i {
  color: var(--color-accent);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-white-10);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-white-50);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white-10);
  color: var(--color-white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ===== ROOM TYPES / CAMERE ===== */

.room-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover-strong);
}

.room-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.room-card-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.room-card-body p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  list-style: none;
  padding: 0;
}

.room-card-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.room-card-amenities li i {
  color: var(--color-primary);
  font-size: 1rem;
}

.room-card-capacity {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.room-card-capacity i {
  color: var(--color-primary);
  margin-right: 0.3rem;
}

.btn-room-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-room-cta:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* ===== BACK TO TOP BUTTON ===== */

.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 1039;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero h1,
  .hero .lead,
  .hero .d-flex,
  .hero-badges {
    animation: none;
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .lead {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-collapse {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-hover-strong);
  }

  .navbar-collapse .nav-link {
    color: var(--color-text);
    padding: 0.6rem 1rem;
  }

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

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .hero .btn {
    font-size: 1rem;
    padding: 0.75rem 1.8rem;
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0.5rem auto;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

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

  .booking-badge {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
  }

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

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .back-to-top {
    bottom: 5.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .despre-text p:first-of-type::first-letter {
    font-size: 2.8rem;
  }
}

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

  .hero {
    background-attachment: scroll;
  }
}

/* ===== PRINT STYLES ===== */

@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .scroll-indicator,
  .lightbox-modal,
  .btn-cta-call,
  .btn-cta-whatsapp,
  .btn-hero-primary,
  .btn-hero-whatsapp {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
    color: var(--color-text);
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    color: var(--color-primary);
    font-size: 2rem;
  }

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

  .gallery-item img,
  .despre-img img {
    break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: var(--color-text);
  }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  gap: 2px;
}

.lang-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.03em;
}

.lang-link:hover {
  color: #fff;
}

.lang-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}

.navbar.scrolled .lang-link {
  color: var(--color-text-light);
}

.navbar.scrolled .lang-link:hover {
  color: var(--color-primary);
}

.navbar.scrolled .lang-link.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Mobile language dropdown */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.lang-dropdown-toggle i {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.lang-dropdown.open .lang-dropdown-toggle i {
  transform: rotate(180deg);
}

.navbar.scrolled .lang-dropdown-toggle {
  color: var(--color-primary);
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-width: 52px;
  z-index: 1060;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}

.lang-dropdown-item {
  display: block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;
}

.lang-dropdown-item:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.lang-dropdown-item.active {
  color: var(--color-primary);
  font-weight: 600;
}
