/* ========================================
   HOTEL L'AMORE - MAIN STYLESHEET
   ======================================== */

/* === CSS VARIABLES === */
:root {
  --color-bg:          #FDFAF6;
  --color-sand:        #F5ECD7;
  --color-accent:      #C9714A;
  --color-accent-dark: #A85A37;
  --color-sea:         #6B9BAE;
  --color-text:        #2C2416;
  --color-text-muted:  #8C7B6B;
  --color-white:       #FFFFFF;
  --color-border:      #E8DDD0;
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 80px;
  font-style: italic;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 28px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
}

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sea) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  width: 100%;
  height: 100%;
}

/* === PRELOADER === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

#preloader.visible {
  opacity: 1;
  pointer-events: all;
}

#preloader.fade-out {
  opacity: 0;
}

.smiley {
  width: 80px;
  height: 80px;
}

.smiley__eye1,
.smiley__eye2 {
  transform-origin: 64px 64px;
  animation: eye1 3s ease-in-out infinite;
}

.smiley__eye2 {
  animation-name: eye2;
}

.smiley__mouth1 {
  animation: mouth1 3s ease-in-out infinite;
}

.smiley__mouth2 {
  animation: mouth2 3s ease-in-out infinite;
  visibility: hidden;
}

@keyframes eye1 {
  0% { transform: rotate(-40deg) translate(0, -56px); }
  24%, 48% { transform: rotate(-40deg) translate(0, -56px); }
  52%, 72% { transform: rotate(0deg) translate(0, -56px); }
  76%, 100% { transform: rotate(-40deg) translate(0, -56px); }
}

@keyframes eye2 {
  0% { transform: rotate(40deg) translate(0, -56px); }
  24%, 48% { transform: rotate(40deg) translate(0, -56px); }
  52%, 72% { transform: rotate(0deg) translate(0, -56px); }
  76%, 100% { transform: rotate(40deg) translate(0, -56px); }
}

@keyframes mouth1 {
  0% { stroke-dashoffset: 0; visibility: visible; }
  24% { stroke-dashoffset: 0; visibility: visible; }
  28%, 48% { stroke-dashoffset: 175.93; visibility: hidden; }
  52% { stroke-dashoffset: 175.93; visibility: hidden; }
  56%, 100% { stroke-dashoffset: 0; visibility: visible; }
}

@keyframes mouth2 {
  0%, 28% { stroke-dashoffset: 175.93; visibility: hidden; }
  32%, 48% { stroke-dashoffset: 0; visibility: visible; }
  52%, 100% { stroke-dashoffset: 175.93; visibility: hidden; }
}

/* === POPUP === */
#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8888;
  opacity: 0;
  transition: opacity 0.4s;
}

#popup-overlay.visible {
  opacity: 1;
}

#popup-overlay.fade-out {
  opacity: 0;
}

#popup-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s;
}

#popup-overlay.visible #popup-card {
  transform: translateY(0);
}

.popup-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

#popup-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 16px;
}

#popup-card p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

#popup-btn {
  color: var(--color-white);
  text-decoration: none;
  border: 2px solid var(--color-accent);
  background: var(--color-accent);
  border-radius: 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  display: inline-block;
  cursor: pointer;
}

#popup-btn::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-white);
  top: 80px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  animation: wave-btn 5s infinite linear;
  transition: top 1s;
}

#popup-btn:hover {
  color: var(--color-accent);
}

#popup-btn:hover::before {
  top: 20px;
}

#popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

#popup-close:hover {
  color: var(--color-accent);
}

/* === BUTTONS === */

/* Type 1: Book Button (Primary, Dark) */
.btn-book {
  color: var(--color-white);
  text-decoration: none;
  border: 2px solid var(--color-accent);
  background: var(--color-accent);
  border-radius: 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  display: inline-block;
  z-index: 1;
}

.btn-book::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-white);
  top: 80px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  animation: wave-btn 5s infinite linear;
  transition: top 1s;
  z-index: -1;
}

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

.btn-book:hover::before {
  top: 20px;
}

@keyframes wave-btn {
  0%   { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

/* Type 2: Shimmer Button */
.btn-shimmer {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  perspective: 80px;
  transform-style: preserve-3d;
}

.btn-shimmer span {
  display: inline-block;
  animation: shimmer-wave 2.4s ease infinite;
  transform-style: preserve-3d;
}

.btn-shimmer span:nth-child(1)  { animation-delay: 0.00s; }
.btn-shimmer span:nth-child(2)  { animation-delay: 0.05s; }
.btn-shimmer span:nth-child(3)  { animation-delay: 0.10s; }
.btn-shimmer span:nth-child(4)  { animation-delay: 0.15s; }
.btn-shimmer span:nth-child(5)  { animation-delay: 0.20s; }
.btn-shimmer span:nth-child(6)  { animation-delay: 0.25s; }
.btn-shimmer span:nth-child(7)  { animation-delay: 0.30s; }
.btn-shimmer span:nth-child(8)  { animation-delay: 0.35s; }
.btn-shimmer span:nth-child(9)  { animation-delay: 0.40s; }
.btn-shimmer span:nth-child(10) { animation-delay: 0.45s; }
.btn-shimmer span:nth-child(11) { animation-delay: 0.50s; }
.btn-shimmer span:nth-child(12) { animation-delay: 0.55s; }
.btn-shimmer span:nth-child(13) { animation-delay: 0.60s; }
.btn-shimmer span:nth-child(14) { animation-delay: 0.65s; }
.btn-shimmer span:nth-child(15) { animation-delay: 0.70s; }
.btn-shimmer span:nth-child(16) { animation-delay: 0.75s; }
.btn-shimmer span:nth-child(17) { animation-delay: 0.80s; }
.btn-shimmer span:nth-child(18) { animation-delay: 0.85s; }
.btn-shimmer span:nth-child(19) { animation-delay: 0.90s; }
.btn-shimmer span:nth-child(20) { animation-delay: 0.95s; }

@keyframes shimmer-wave {
  0%   { transform: translate3D(0,0,0) scale(1) rotateY(0); color: var(--color-accent); }
  12%  { transform: translate3D(2px,-1px,2px) scale(1.18) rotateY(6deg); color: var(--color-accent-dark); }
  24%  { transform: translate3D(0,0,0) scale(1) rotateY(0); color: var(--color-accent); }
  100% { transform: scale(1); opacity: 0.8; }
}

/* === HEADER === */
.site-header {
  position: relative;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  transition: background 0.3s, padding 0.3s, transform 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.header-top.scrolled {
  background: var(--color-bg);
  box-shadow: 0 2px 20px rgba(44,36,22,0.08);
  padding: 14px 40px;
}

.header-top.hidden {
  transform: translateY(-100%);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--color-accent);
  width: 56px;
  height: 56px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--color-text);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s;
  white-space: nowrap;
}

.logo-wrap:hover .logo-text {
  opacity: 1;
  transform: translateX(0);
}

.logo-wrap:hover .logo-letter {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Burger Button */
.toggle {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  box-shadow: 0 4px 15px rgba(44,36,22,0.1);
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.toggle span {
  position: absolute;
  width: 28px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
  transition: 0.5s;
}

.toggle span:nth-child(1) {
  transform: translateY(-10px);
  width: 18px;
  left: 11px;
}

.toggle span:nth-child(2) {
  transform: translateY(10px);
  width: 11px;
  left: 11px;
}

.toggle.active span:nth-child(1) {
  width: 28px;
  transform: translateY(0) rotate(45deg);
}

.toggle.active span:nth-child(2) {
  width: 28px;
  transform: translateY(0) rotate(-45deg);
}

.toggle.active span:nth-child(3) {
  transform: translateX(60px);
}

/* Header Book Button */
#btn-book {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .header-top {
    padding: 16px 20px;
  }
  .header-top.scrolled {
    padding: 12px 20px;
  }
  #btn-book {
    display: none;
  }
  .logo-letter {
    width: 48px;
    height: 48px;
    font-size: 32px;
  }
}

/* Announcement Bar */
.announcement-bar {
  background: var(--color-sand);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.5px;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: top 0.3s;
}

.header-top.scrolled ~ .announcement-bar {
  top: 78px;
}

@media (max-width: 768px) {
  .announcement-bar {
    top: 80px;
    font-size: 11px;
    padding: 8px 16px;
  }
  .header-top.scrolled ~ .announcement-bar {
    top: 72px;
  }
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 888;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.menu-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.menu-link:hover {
  color: var(--color-accent);
}

.menu-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .menu-link {
    font-size: 32px;
  }
  .menu-nav {
    gap: 24px;
  }
}

/* === FOOTER === */
.site-footer {
  background: var(--color-sand);
  border-top: 1px solid var(--color-border);
  padding: 48px 40px 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-contacts p,
.footer-contacts a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  line-height: 2;
}

.footer-contacts a:hover {
  color: var(--color-accent);
}

.footer-max-icon {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text-muted);
  transition: border-color 0.3s, color 0.3s;
}

.footer-max-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pay-icon {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-legal a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 24px 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-payments {
    margin: 16px 0;
  }
}

/* === GLOW CARD EFFECT === */
.glow-card {
  --grad-size: min(270vh, 90vw);
  border-radius: 12px;
  background-image: radial-gradient(#fff 0%, var(--color-sand) 30%, var(--color-text) 50%);
  background-color: var(--color-text);
  background-position: calc(var(--mouse-x, 0) * 1px - var(--grad-size) / 2)
                       calc(var(--mouse-y, 0) * 1px - var(--grad-size) / 2);
  background-attachment: fixed;
  background-size: var(--grad-size) var(--grad-size);
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
  transition: background-position 2s cubic-bezier(0,0,0,1);
  position: relative;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-image: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.5) 48% 52%, transparent 55%);
  background-size: 300% 300%;
  background-position: 100% 100%;
  transition: background-position 0.3s linear;
  z-index: 1;
}

.glow-card:hover::before {
  background-position: 0% 0%;
}

.glow-card > .img-placeholder:first-child {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  border-radius: 12px;
  filter: blur(4px) brightness(0%);
  transition: filter 0.5s ease;
}

.glow-card:hover > .img-placeholder:first-child {
  filter: blur(6px) brightness(100%);
}

.glow-card > .img-placeholder:nth-child(2) {
  mix-blend-mode: plus-lighter;
}

/* === SCROLL FADE EFFECT === */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  inset: 0;
}

.slideshow-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 16s;
  transform: scale(1.2);
}

/* Ken Burns effect for 4 slides */
.slideshow-image:nth-child(1) { animation-name: kb1; z-index: 3; }
.slideshow-image:nth-child(2) { animation-name: kb2; z-index: 2; }
.slideshow-image:nth-child(3) { animation-name: kb3; z-index: 1; }
.slideshow-image:nth-child(4) { animation-name: kb4; z-index: 0; }

@keyframes kb1 {
  0%    { opacity: 1; transform: scale(1.2); }
  3.1%  { opacity: 1; }
  25%   { opacity: 1; }
  28.1% { opacity: 0; transform: scale(1); }
  99%   { opacity: 0; transform: scale(1.2); }
  100%  { opacity: 1; }
}

@keyframes kb2 {
  0%    { opacity: 0; transform: scale(1.2); }
  25%   { opacity: 0; }
  28.1% { opacity: 1; }
  50%   { opacity: 1; }
  53.1% { opacity: 0; transform: scale(1); }
  100%  { opacity: 0; transform: scale(1.2); }
}

@keyframes kb3 {
  0%    { opacity: 0; transform: scale(1.2); }
  50%   { opacity: 0; }
  53.1% { opacity: 1; }
  75%   { opacity: 1; }
  78.1% { opacity: 0; transform: scale(1); }
  100%  { opacity: 0; transform: scale(1.2); }
}

@keyframes kb4 {
  0%    { opacity: 0; transform: scale(1.2); }
  75%   { opacity: 0; }
  78.1% { opacity: 1; }
  96.9% { opacity: 1; }
  100%  { opacity: 0; transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,36,22,0.1), rgba(44,36,22,0.5));
  z-index: 10;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-style: italic;
  color: var(--color-white);
  margin: 0 0 12px;
  line-height: 1;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
  .hero-content {
    padding: 40px 24px;
  }
  .hero-sub {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

/* === SECTION: ABOUT === */
.section-about {
  padding: 80px 0;
  background: var(--color-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.6;
  color: var(--color-text);
}

.about-action {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .section-about {
    padding: 60px 0;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .about-lead {
    font-size: 20px;
  }
  .about-action {
    justify-content: flex-start;
  }
}

/* === SECTION: CARDS (Services) === */
.section-cards {
  padding: 80px 0;
  background: var(--color-sand);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card .glow-card {
  height: 280px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--color-text);
  margin: 0;
}

.service-card p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-cards {
    padding: 60px 0;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

/* === SECTION: ROOMS BANNER === */
.section-rooms {
  padding: 0;
}

.rooms-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.rooms-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rooms-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,36,22,0.7) 40%, transparent);
}

.rooms-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  z-index: 10;
}

.rooms-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.rooms-banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0 0 20px;
}

.rooms-banner-content h2 em {
  font-style: italic;
}

.rooms-banner-content p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
}

.rooms-btn {
  color: var(--color-white) !important;
}

@media (max-width: 768px) {
  .rooms-banner {
    height: 60vh;
    min-height: 400px;
  }
  .rooms-banner-content {
    padding: 40px 24px;
  }
  .rooms-banner-content h2 {
    font-size: 40px;
  }
  .rooms-banner-overlay {
    background: linear-gradient(to top, rgba(44,36,22,0.8), rgba(44,36,22,0.3));
  }
}

/* === SECTION: GALLERY (Swiper) === */
.section-gallery {
  padding: 0;
  overflow: hidden;
}

.gallery-swiper {
  padding: 40px 0;
}

.gallery-img {
  height: 300px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .gallery-img {
    height: 200px;
  }
}

/* === SECTION: CONTACT FORM === */
.section-contact {
  padding: 80px 0;
  background: var(--color-bg);
}

.section-contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 48px;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-accent);
}

.contact-form .btn-book {
  align-self: flex-start;
}

@media (max-width: 600px) {
  .section-contact {
    padding: 60px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-contact h2 {
    font-size: 32px;
  }
}

/* === HOTEL PAGE: HISTORY === */
.section-history {
  padding: 120px 0 80px;
  background: var(--color-bg);
}

.history-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.history-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.history-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-history {
    padding: 100px 0 60px;
  }
  .history-text {
    padding: 0 24px;
  }
  .history-text p {
    font-size: 18px;
  }
}

/* === HOTEL PAGE: SPLIT SECTIONS === */
.section-split {
  padding: 80px 0;
}

.section-split:nth-child(even) {
  background: var(--color-sand);
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-split--reverse .split-inner {
  direction: rtl;
}

.section-split--reverse .split-inner > * {
  direction: ltr;
}

.split-slider {
  border-radius: 12px;
  overflow: hidden;
}

.split-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.split-text p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.split-text p:last-child {
  margin-bottom: 0;
}

/* Swiper custom arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}

@media (max-width: 768px) {
  .section-split {
    padding: 60px 0;
  }
  .split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .section-split--reverse .split-inner {
    direction: ltr;
  }
  .split-text h2 {
    font-size: 28px;
  }
}

/* === ROOMS PAGE === */
.section-rooms-intro {
  padding: 120px 0 60px;
  background: var(--color-bg);
}

.rooms-intro-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.rooms-intro-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.7;
  color: var(--color-text);
}

.section-rooms-list {
  padding: 60px 0 80px;
  background: var(--color-bg);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.room-category-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-card-img {
  height: 300px;
  position: relative;
}

.room-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--color-text);
  margin: 0;
}

.room-card-info p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.room-meta {
  display: flex;
  gap: 20px;
}

.room-meta span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .section-rooms-intro {
    padding: 100px 0 40px;
  }
  .rooms-intro-text {
    padding: 0 24px;
  }
  .rooms-intro-text p {
    font-size: 18px;
  }
  .section-rooms-list {
    padding: 40px 0 60px;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

/* === ROOM DETAIL PAGES === */
.section-room-detail {
  padding: 120px 0 80px;
  background: var(--color-bg);
}

.room-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.room-detail-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,36,22,0.06);
}

.room-detail-card .swiper {
  height: 320px;
}

.room-detail-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-detail-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 768px) {
  .section-room-detail {
    padding: 100px 0 60px;
  }
  .room-detail-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .room-detail-card .swiper {
    height: 240px;
  }
}

/* === FOOD PAGE === */
.section-food-intro {
  padding: 120px 0 60px;
  background: var(--color-bg);
}

.food-intro-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.food-intro-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.7;
  color: var(--color-text);
}

.food-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.food-meta p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.food-meta p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-food-intro {
    padding: 100px 0 40px;
  }
  .food-intro-text {
    padding: 0 24px;
  }
  .food-intro-text p {
    font-size: 18px;
  }
}

/* === ENTERTAINMENT PAGE === */
.section-entertainment-intro {
  padding: 120px 0 60px;
  background: var(--color-bg);
}

/* === OFFERS PAGE === */
.section-offers {
  padding: 120px 0 80px;
  background: var(--color-bg);
  min-height: 100vh;
}

.section-offers h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 16px;
}

.offers-sub {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.offer-card {
  position: relative;
  background: var(--color-sand);
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
}

.offer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
}

.offer-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
}

.offer-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.offer-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.offer-content p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .section-offers {
    padding: 100px 0 60px;
  }
  .offers-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .section-offers h1 {
    font-size: 36px;
  }
}

/* === CONTACTS PAGE === */
.section-map {
  padding: 96px 0 0;
}

#map {
  height: 450px;
  width: 100%;
  border-radius: 0;
}

.map-btn-wrap {
  padding: 24px 40px;
  background: var(--color-sand);
  text-align: center;
}

.section-contacts-info {
  padding: 80px 0;
  background: var(--color-bg);
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contacts-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.contacts-text p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.contacts-text a {
  color: var(--color-accent);
}

.contacts-text a:hover {
  color: var(--color-accent-dark);
}

.contacts-form {
  background: var(--color-sand);
  border-radius: 16px;
  padding: 32px;
}

.contacts-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 24px;
}

/* Tab Navigation for "How to get" */
.et-hero-tabs {
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.et-hero-tabs-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.et-hero-tab {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 20px 24px;
  position: relative;
  transition: color 0.3s, background 0.3s;
}

.et-hero-tab:hover {
  background: var(--color-sand);
  color: var(--color-text);
}

.et-hero-tab.active {
  color: var(--color-accent);
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--color-accent);
  transition: left 0.3s, width 0.3s;
}

.et-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.et-slide {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}

.et-slide:last-child {
  border-bottom: none;
}

.et-slide h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.et-slide p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.et-slide p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-map {
    padding: 80px 0 0;
  }
  #map {
    height: 300px;
  }
  .map-btn-wrap {
    padding: 20px 24px;
  }
  .section-contacts-info {
    padding: 60px 0;
  }
  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .et-hero-tabs-container {
    flex-wrap: wrap;
  }
  .et-hero-tab {
    font-size: 12px;
    padding: 14px 16px;
  }
  .et-main {
    padding: 0 24px;
  }
  .et-slide {
    padding: 40px 0;
  }
  .et-slide h2 {
    font-size: 24px;
  }
}

/* Custom Leaflet marker */
.custom-marker {
  background: transparent;
  border: none;
}

/* === LEGAL PAGE === */
.legal-page {
  padding: 120px 0 80px;
  background: var(--color-bg);
}

.legal-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 48px;
}

.legal-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 16px;
}

.legal-section p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-sand);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-text);
  transition: background 0.3s;
}

.doc-link:hover {
  background: var(--color-border);
}

.doc-icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }
  .legal-page h1 {
    font-size: 36px;
  }
  .legal-section {
    padding: 0 24px;
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* === PAGE TOP PADDING (for fixed header) === */
.page-content {
  padding-top: 96px;
}

@media (max-width: 768px) {
  .page-content {
    padding-top: 80px;
  }
}
