﻿
:root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #f5f5f5;
  --dark-color: #000000;
  --light-color: #fafafa;
  --text-color: #333333;
  --white: #ffffff;
  --gold-accent: #d4af37;
  --border-radius: 8px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-height: 96px; 
}


@font-face {
  font-family: 'PP Gatwick';
  src: url('../fonts/PPGatwick-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Gatwick';
  src: url('../fonts/PPGatwick-Ultralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  
  font-family: 'PP Gatwick', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  font-weight: 200; 
}


html, body {
  font-size: 16px; 
}


h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 0.6rem; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 0.6rem; }
h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; line-height: 1.25; margin-bottom: 0.45rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }


p, li, a, span, input, button { font-size: 1rem; }


.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}


.hero-title { font-size: 2.8rem; }
.hero-subtitle { font-size: 1.125rem; }


h1, h2, h3, h4, h5, h6, strong, b {
  font-family: 'PP Gatwick', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

ul {
  list-style: none;
}

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

.section-padding {
  padding: 80px 0;
}

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--dark-color);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title {
  color: var(--dark-color);
}


.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-primary:active {
  background-color: #0a0a0a;
}

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

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}


.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: var(--white);
  padding: 8px 0;
  z-index: 1001;
  font-size: 0.9rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.3s ease, pointer-events 0.3s ease;
  transform: translateY(0);
}



body.home-page .top-bar {
  background-color: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.home-page .top-bar.scrolled {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: #1a1a1a;
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-icon {
  font-size: 1rem;
  color: #ff4444;
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  color: var(--white);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}


.header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 2000; 
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease, backdrop-filter 0.3s ease, pointer-events 0.3s ease;
}



body:not(.home-page) .header {
  top: 0;
}

body:not(.home-page) .header.scrolled {
  top: 0;
}


body:not(.home-page) .top-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: #1a1a1a;
}


body.home-page .header {
  background-color: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.home-page .header.scrolled {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}


.header.scrolled {
  top: 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  position: relative;
  min-height: 68px; 
}

.header.scrolled .container {
  padding: 16px 20px;
  min-height: 68px; 
}

.logo img {
  height: 90px; 
  max-width: 360px;
  object-fit: contain;
  display: block;
  transition: height 0.25s ease;
}


.header.scrolled .logo img {
  height: 64px;
}


.header .container {
  min-height: 96px;
}

.header.scrolled .container {
  min-height: 76px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
}

.nav-item {
  margin: 0 20px;
}

.header.scrolled .nav-menu {
  position: static;
  transform: none;
  left: auto;
}

.header.scrolled .nav-item {
  margin: 0 0 0 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 5px 0;
}


.rooms-list .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.room-item {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}


.room-item.zoomed {
  z-index: 2;
}

.room-item.zoomed .room-image {
  
  position: relative;
  width: auto;
  height: auto;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: auto;
  transition: none;
  z-index: 1;
}

.room-item.zoomed .room-image img {
  
  transform: none !important;
  transition: transform 0.35s ease !important;
  will-change: auto;
}

.room-item.zoomed .room-overlay {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: none;
  z-index: 5;
}

.room-item.zoomed .room-details {
  opacity: 0 !important;
  pointer-events: none !important;
}

.room-image {
  flex: 0 0 42%;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease;
  transform-origin: center center;
  will-change: transform, opacity;
  position: relative;
  z-index: 4;
}

.room-details {
  flex: 1 1 auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 100%);
  z-index: 2;
  transition: opacity 0.35s ease;
}

.room-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s ease;
  z-index: 5;
}

.room-overlay .room-name {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
}


.room-item:hover .room-image img {
  transform: none;
}


.room-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.2,.8,.2,1);
  transform: scale(0.98);
  z-index: 5;
}

.room-item:hover .room-overlay {
  opacity: 1;
  transform: scale(1);
}

.room-item:hover .room-details {
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease 0.06s;
}


@media (max-width: 900px) {
  .room-item { flex-direction: column; }
  .room-image { flex: 0 0 auto; width: 100%; min-width: 0; height: 240px; }
  .room-item:hover .room-image { position: relative; height: 240px; }
  .room-details { padding: 16px; }
}

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

.nav-link.active {
  color: #ff6b35;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
}

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

.header-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 4px;
}

.icon-btn {
  line-height: 0; 
}

.icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  vector-effect: non-scaling-stroke; 
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 15px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: var(--transition);
}


.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 0; 
  overflow: hidden;
  transition: margin-top 0.3s ease;
}



body:not(.home-page) main,
body.home-page .header.scrolled ~ main,
.header.scrolled ~ main {
  padding-top: var(--header-height);
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}


.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 22px;
  min-width: 320px;
  max-width: 420px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 16px;
}

.testimonial-meta {
  color: #666;
  font-size: 0.95rem;
}


.testimonial-text { color: #222; font-size: 1.05rem; }
.testimonial-meta { color: #444; font-size: 0.95rem; }


.testimonial-stars {
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .testimonial-card { min-width: 260px; }
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}


.service-card {
  flex: 0 1 260px;
  max-width: 320px;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}


.rooms-grid {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.room-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-10px);
}


.room-card {
  
  flex: 0 1 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.room-image {
  width: 100%;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease;
  transform-origin: center center;
  will-change: transform, opacity;
  display: block;
}


.room-card:hover .room-image img {
  transform: none;
}


.room-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  padding: 0 12px;
}

.room-card:hover .room-overlay {
  opacity: 1;
  transform: translateY(0);
}


.room-content {
  padding: 14px 16px 18px;
  text-align: center;
}

.room-content h3 {
  margin: 8px 0 6px;
  font-size: 1.125rem;
}

.room-content p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 10px;
}


.rooms-grid::-webkit-scrollbar { height: 8px; }
.rooms-grid::-webkit-scrollbar-track { background: transparent; }
.rooms-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 8px; }

.room-card:hover .room-image img {
  transform: none;
}

.room-content {
  padding: 25px;
}

.room-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.room-features {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.room-features span {
  font-size: 0.9rem;
  color: var(--text-color);
}


.thermal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.thermal-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.thermal-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.thermal-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}


.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-section ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

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

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  padding: 0 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer p,
.footer li,
.footer .newsletter-form input,
.footer .newsletter-form button {
  font-size: 0.95rem;
}


.service-card h3,
.room-content h3,
.value-card h3,
.team-member h3 {
  font-size: 1.25rem;
}


.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/page-header-bg.jpg");
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  color: var(--white);
  text-align: center;
  padding: 120px 0 80px;
  margin-top: 140px;
  transition: margin-top 0.3s ease;
}

.header.scrolled ~ main .page-header {
  margin-top: 80px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--dark-color);
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}


.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--accent-color);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}


.room-filter {
  padding: 40px 0;
}

.filter-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}


.room-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.room-image {
  height: 100%;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.room-item .room-details,
.room-card .room-content {
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: opacity 0.25s ease !important;
}

.room-item.zoomed .room-details,
.room-item:hover .room-details,
.room-card:hover .room-content {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.room-details h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.room-features-list {
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.room-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}


.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}


.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.price small {
  font-size: 1rem;
  font-weight: 400;
}


.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-item {
  flex: 0 1 260px;
  max-width: 320px;
  width: 100%;
}

.service-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item .service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}


.water-analysis {
  margin: 20px 0;
}

.analysis-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.parameter {
  font-weight: 600;
}

.value {
  color: var(--primary-color);
  font-weight: 600;
}


.pools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.pool-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.pool-image {
  height: 250px;
}

.pool-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pool-content {
  padding: 25px;
}

.pool-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.pool-features {
  margin-top: 15px;
}

.pool-features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.pool-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}


.spa-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.spa-services {
  margin-top: 30px;
}

.spa-service {
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.spa-service h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.duration {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  background: var(--accent-color);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
}


.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.facility {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.facility:hover {
  transform: translateY(-10px);
}

.facility-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.facility h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}


.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.video-placeholder {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 15px;
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.play-btn:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}


.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary-color);
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}


.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(193, 154, 107, 0.2);
}

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


.reservation-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}


.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--accent-color);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}


.video-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-intro.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip-intro {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10000;
}

.skip-intro:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.video-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10000;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.intro-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
  text-align: center;
}

.loader-spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid white;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


body.video-playing {
  overflow: hidden;
}


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top span {
  line-height: 1;
}


.newsletter-message {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 20px;
}

.newsletter-message.success {
  color: #28a745;
}

.newsletter-message.error {
  color: #dc3545;
}


.social-links a svg {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.social-links a:hover svg {
  transform: scale(1.2);
}


.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
}


img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}


.form-message {
  padding: 12px 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
  min-height: 20px;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
  border-color: #28a745;
}
