/* =========================
   Normalize
   ========================= */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

:root {
  /* Colors */
  --primary-brown: #916952;
  --light-brown: rgba(145, 105, 82, 0.25);
  --background-light: #F5F5F5;
  --text-dark: #000;
  --text-light: #575757;
  --accent-gold: #FBB002;

  /* Typography */
  --font-primary: 'Inria Serif', serif;
  --font-secondary: 'Inria Sans', sans-serif;
  --font-accent: 'Jomolhari', serif;
  --font-kapakana: 'Kapakana', cursive;

  /* Spacing */
  --container-max: 120rem;
  --container-padding: clamp(1rem, 5vw, 6.25rem);
  --section-gap: clamp(3rem, 8vw, 8rem);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 800px; /* Базовая высота для обычных мониторов */
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

/* Для ультрашироких мониторов увеличиваем высоту */
@media (min-width: 2560px) and (min-aspect-ratio: 21/9) {
    .hero-section {
        height: 70vh;
        min-height: 1200px;
        max-height: 1400px;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 0 20px;
}

.hero-logo {
    position: absolute;
    top: 90px; /* Сразу под хедером */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-logo-title {
    color: white;
    font-size: 33px;
    font-family: 'Inria Serif', serif;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.99px;
    margin-bottom: 10px;
}

.hero-logo-subtitle {
    color: white;
    font-size: 17px;
    font-family: 'Inria Serif', serif;
    font-weight: 400;
    line-height: 17px;
}

.hero-title {
    position: absolute;
    top: 350px; /* Фиксированная позиция для обычных мониторов */
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-family: 'Jomolhari', serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 110px;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    position: absolute;
    top: 480px; /* Фиксированная позиция для обычных мониторов */
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-family: 'Jomolhari', serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 110px;
    text-align: center;
    width: 100%;
}

/* Для ультрашироких мониторов корректируем позиции */
@media (min-width: 2560px) and (min-aspect-ratio: 21/9) {
    .hero-title {
        top: 45%; /* На ультрашироких используем проценты */
    }
    
    .hero-subtitle {
        top: 60%; /* На ультрашироких используем проценты */
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
        line-height: 80px;
    }
    
    .hero-subtitle {
        font-size: 50px;
        line-height: 80px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    .hero-subtitle {
        font-size: 35px;
        line-height: 50px;
    }
    
    .hero-logo-title {
        font-size: 24px;
    }
    
    .hero-logo-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero-subtitle {
        font-size: 28px;
        line-height: 40px;
    }
}
/* ========== AMENITIES SECTION ========== */
.amenities-section {
    width: 100%;
    background: #F5F5F5;
    padding: 54px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

/* ========== BOOKING FORM ========== */
.booking-form-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.booking-form {
    width: 100%;
    height: 70px;
    background: white;
    border-radius: 5px;
    border: 1px solid #916952;
    display: flex;
    align-items: center;
    position: relative;
}

.form-field {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
    height: 100%;
    flex: 1;
    position: relative;
}

.form-field .field-icon {
    width: 25px;
    height: 25px;
    background-image: url('https://hotel.mkweb.agency/wp-content/uploads/2025/08/Icon awesome-calendar-brown.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.checkout-field .field-icon {
    background-image: url('https://hotel.mkweb.agency/wp-content/uploads/2025/08/Icon awesome-calendar-brown.svg');
}

.guests-field .guests-icon {
    width: 27px;
    height: 25px;
    background-image: url('https://hotel.mkweb.agency/wp-content/uploads/2025/08/Icon awesome-user-plus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.field-label {
    color: #666;
    font-size: 20px;
    font-family: 'Inria Sans', sans-serif;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
}

.form-divider {
    width: 1px;
    height: 40px;
    background: #E0E0E0;
    flex-shrink: 0;
}

.search-btn {
    background: #916952;
    border: none;
    border-radius: 5px;
    padding: 16px 30px;
    margin: 0 16px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 160px;
    justify-content: center;
    flex-shrink: 0;
}

.search-btn .btn-text {
    color: white;
    font-size: 22px;
    font-family: 'Inria Sans', sans-serif;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.search-btn .search-icon {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    background: transparent;
    flex-shrink: 0;
}

.search-btn .search-icon::after {
    content: '';
    width: 6px;
    height: 2px;
    background: white;
    position: absolute;
    right: -4px;
    bottom: -4px;
    transform: rotate(45deg);
    border-radius: 1px;
}

/* ========== HOVER EFFECTS ========== */
.amenity-item:hover .amenity-icon img {
    filter: brightness(0.5) saturate(1.5) contrast(1.3);
    transition: filter 0.3s ease;
}

.amenity-item:hover .amenity-title {
    color: #5C4A3A;
    transition: color 0.3s ease;
}

/* ========== AMENITIES GRID ========== */
.amenities-grid {
    width: 100%;
    max-width: none;
    padding: 0 50px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: clamp(60px, 8vw, 120px);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: 150px;
}

.amenity-icon {
    width: clamp(120px, 12vw, 170px);
    height: clamp(120px, 12vw, 170px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.amenity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amenity-title {
    color: black;
    font-size: 20px;
    font-family: 'Inria Serif', serif;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Specific amenity sizes based on design */
.amenity-item:nth-child(1) .amenity-icon {
    height: clamp(150px, 15vw, 200px);
}

.amenity-item:nth-child(2) .amenity-icon {
    width: clamp(120px, 11vw, 160px);
    height: clamp(120px, 12vw, 170px);
}

.amenity-item:nth-child(3) .amenity-icon {
    width: clamp(120px, 11vw, 155px);
    height: clamp(130px, 13vw, 180px);
}

.amenity-item:nth-child(4) .amenity-icon {
    width: clamp(120px, 11vw, 160px);
    height: clamp(140px, 14vw, 185px);
}

.amenity-item:nth-child(5) .amenity-icon {
    width: clamp(120px, 11vw, 160px);
    height: clamp(130px, 13vw, 175px);
}

.amenity-item:nth-child(6) .amenity-icon {
    width: clamp(130px, 12vw, 170px);
    height: clamp(90px, 9vw, 120px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1600px) {
    .amenities-grid {
        gap: 80px;
        padding: 0 60px;
        max-width: 1600px;
    }
}

@media (max-width: 1200px) {
    .amenities-grid {
        gap: 60px;
        padding: 0 40px;
        max-width: 1400px;
    }
    
    .booking-form-container {
        max-width: 1000px;
    }
    
    .field-label {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .amenities-grid {
        gap: 40px;
        padding: 0 20px;
    }
    
    .booking-form {
        flex-wrap: wrap;
        height: auto;
        padding: 20px;
    }
    
    .form-field, .guests-field {
        flex: 1;
        min-width: 200px;
        padding: 10px;
    }
    
    .form-divider {
        display: none;
    }
    
    .search-btn {
        width: 100%;
        margin: 10px 0 0 0;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 40px 0;
    }
    
    .amenities-grid {
        gap: 30px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenity-item {
        min-width: 150px;
        max-width: 170px;
    }
    
    .amenity-icon {
        width: 150px !important;
        height: 150px !important;
    }
    
    .amenity-title {
        font-size: 16px;
    }
    
    .booking-form-container {
        padding: 0 15px;
    }
    
    .field-label {
        font-size: 14px;
    }
    
    .search-btn .btn-text {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .amenities-grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenity-item {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 30px 0;
        gap: 25px;
    }
    
    .booking-form {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .form-field, .guests-field {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .amenity-icon {
        width: 120px !important;
        height: 120px !important;
    }
    
    .amenity-title {
        font-size: 14px;
        line-height: 18px;
    }
}
/* Invitations Section */
.invitations-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 45px 0;
}

.invitations-container {
    width: 100%;
    max-width: none;
}

/* Section Title */
.section-title {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
    padding: 0 20px;
}

.section-title h2 {
    color: black;
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: clamp(400px, 50vw, 500px);
}

/* Carousel Slides */
.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

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

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Slide Content */
.slide-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: clamp(300px, 35vw, 520px);
    background: rgba(145, 105, 82, 0.25);
    padding: clamp(60px, 10vw, 119px) clamp(15px, 2vw, 17px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.slide-content h3 {
    color: white;
    font-size: clamp(20px, 3vw, 24px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.slide-content p {
    color: white;
    font-size: clamp(18px, 2.5vw, 24px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.72px;
    margin: 0;
}

.cta-button {
    background: rgba(255, 255, 255, 0.30);
    color: white;
    font-size: clamp(14px, 2vw, 17px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 400;
    padding: 8px 33px;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.50);
}

/* Decorative Element */
.decorative-element {
    position: relative; 
    margin-top: 20px; 
    width: 100%;
    height: auto;
}

.decorative-element img {
	display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: brightness(1.2);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: clamp(30px, 5vw, 50px);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: clamp(20px, 3vw, 30px);
    height: clamp(20px, 3vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.carousel-arrow:hover {
    opacity: 0.7;
}

.carousel-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-prev {
    right: clamp(40px, 6vw, 80px);
}

.carousel-next {
    right: clamp(10px, 2vw, 30px);
}

/* Pagination Dots */
.carousel-pagination {
    position: absolute;
    bottom: clamp(20px, 5vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.active {
    background: #916952;
}

.pagination-dot:hover {
    opacity: 0.8;
}

/* Ultra-wide screens optimization - ТОЛЬКО для больших экранов */
@media (min-width: 3440px) {
    .carousel-wrapper {
        height: clamp(500px, 40vw, 700px);
    }
    .slide-content {
        width: clamp(600px, 30vw, 800px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .invitations-section {
        padding: 30px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .carousel-wrapper {
        height: clamp(350px, 60vw, 400px);
    }
    
    .slide-content {
        width: clamp(280px, 45vw, 350px);
        gap: 20px;
        padding: clamp(40px, 8vw, 80px) clamp(15px, 3vw, 20px);
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .decorative-element {
        bottom: 15px;
    }
    
    .carousel-pagination {
        bottom: 15px;
        gap: 12px;
    }
    
    .pagination-dot {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        width: clamp(250px, 50vw, 300px);
        gap: 15px;
    }
    
    .carousel-pagination {
        gap: 10px;
    }
    
    .pagination-dot {
        width: 14px;
        height: 14px;
    }
}
/* Rooms Section */
.rooms-section {
    width: 100%;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 3vw, 40px);
    background-color: #f8f8f8;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    padding: 0 clamp(10px, 2vw, 20px);
}

.section-title {
    color: black;
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

.explore-button {
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    font-size: clamp(18px, 2vw, 24px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 400;
    padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 33px);
    border: 1px solid #916952;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-button:hover {
    color: #916952;
    border-color: #916952;
}

/* Rooms Grid */
.rooms-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(30px, 4vw, 60px);
    flex-wrap: wrap;
}

/* Room Card */
.room-card {
    width: clamp(280px, 20vw, 385px);
    position: relative;
    transition: transform 0.3s ease;
}

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

/* Room Image Container */
.room-image {
    width: 100%;
    height: clamp(400px, 35vw, 550px);
    position: relative;
    border-radius: 5px;
    border: 1px solid #916952;
    overflow: hidden;
    margin-bottom: clamp(15px, 2vw, 20px);
}

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

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

/* Room Overlay */
.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: clamp(20px, 3vw, 40px);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-description {
    text-align: center;
    color: white;
}

.room-description h3 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.room-description p {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 300;
    line-height: 1.4;
    max-width: clamp(250px, 18vw, 350px);
    margin: 0 auto;
}

/* Room Info */
.room-info {
    text-align: center;
    padding: clamp(10px, 2vw, 20px) 0;
}

.room-title {
    color: black;
    font-size: clamp(24px, 3vw, 34px);
    font-family: 'Inria Serif', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 clamp(15px, 2vw, 20px) 0;
}

/* Stars */
.room-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
}

.room-stars img {
    width: clamp(18px, 2vw, 24px);
    height: clamp(18px, 2vw, 24px);
    filter: brightness(0) saturate(100%) invert(22%) sepia(14%) saturate(654%) hue-rotate(44deg) brightness(95%) contrast(89%);
    transition: filter 0.3s ease;
}

.room-card:hover .room-stars img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(29%) saturate(1157%) hue-rotate(352deg) brightness(95%) contrast(84%);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .rooms-grid {
        gap: clamp(20px, 3vw, 40px);
    }
    
    .room-card {
        width: clamp(300px, 40vw, 385px);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .rooms-grid {
        flex-direction: column;
        align-items: center;
        gap: clamp(30px, 5vw, 40px);
    }
    
    .room-card {
        width: clamp(280px, 80vw, 400px);
    }
    
    .room-image {
        height: clamp(300px, 50vw, 400px);
    }
}

@media (max-width: 480px) {
    .rooms-section {
        padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 20px);
    }
    
    .room-card {
        width: clamp(260px, 90vw, 320px);
    }
    
    .room-image {
        height: clamp(250px, 60vw, 350px);
    }
    
    .room-overlay {
        padding: 20px 15px;
    }
    
    .room-description p {
        font-size: 14px;
        line-height: 1.3;
    }
}
/* Hotel Services Section */
.hotel-services-section {
    height: 700px;
    position: relative;
    overflow: hidden;
    font-family: 'Inria Serif', serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: #000;
    
    /* Убираем sticky из CSS - будем применять динамически через JS */
}

/* Маркеры для определения активной зоны */
.section-top-marker,
.section-bottom-marker {
    height: 1px;
    width: 100%;
    position: absolute;
    pointer-events: none;
}

.section-top-marker {
    top: 0;
}

.section-bottom-marker {
    bottom: 0;
}

/* Контейнер слайдера */
.hotel-services-container {
    display: flex;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Left Panel Styles */
.hotel-left-panel {
    width: clamp(300px, 25.26vw, 485px);
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.hotel-left-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hotel-left-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hotel-left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(145, 105, 82, 0.30) 0%, rgba(145, 105, 82, 0.30) 100%);
}

.hotel-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 4vw, 60px);
    color: white;
}

.hotel-logo-section {
    position: absolute;
    top: clamp(20px, 3vw, 40px);
    left: 50%;
    transform: translateX(-50%);
}

.hotel-hr-logo {
    width: clamp(40px, 6vw, 80px);
    height: auto;
}

.hotel-main-title {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
}

.hotel-main-title h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: 1.08px;
    margin-bottom: clamp(10px, 2vw, 20px);
    line-height: 1.2;
    color: white;
    font-family: 'Inria Serif', serif;
}

.hotel-main-title p {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    opacity: 0.9;
    background: rgba(157, 128, 113, 0.20);
    padding: clamp(15px, 2vw, 25px) clamp(20px, 3vw, 40px);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    color: white;
    font-family: 'Inria Serif', serif;
    margin: 0;
}

.hotel-navigation-dots {
    display: flex;
    gap: clamp(8px, 1vw, 12px);
    align-items: center;
}

.hotel-dot {
    width: clamp(12px, 1.5vw, 15px);
    height: clamp(12px, 1.5vw, 15px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hotel-dot.active {
    background: white;
    transform: scale(1.1);
}

/* Визуальная обратная связь для активного состояния слайдера */
.hotel-services-section.hotel-slider-active .hotel-navigation-dots {
    transform: scale(1.05);
}

.hotel-services-section.hotel-slider-active .hotel-arrow-btn {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

/* Right Panel Styles */
.hotel-right-panel {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hotel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hotel-slide.active {
    opacity: 1;
    visibility: visible;
}

.hotel-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hotel-slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hotel-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(145, 105, 82, 0.80);
}

.hotel-slide-content {
    position: relative;
    z-index: 2;
    width: clamp(600px, 58vw, 900px);
    max-width: 90%;
    padding: clamp(30px, 4vw, 60px);
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hotel-slide-header {
    position: relative;
    margin-bottom: clamp(30px, 4vw, 50px);
}

.hotel-brand-elements {
    position: absolute;
    top: clamp(-80px, -8vw, -100px);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hotel-slide-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(70px, 9vw, 95px);
    font-weight: 400;
    line-height: 0.8;
    color: white;
}

.hotel-navigation-arrows {
    position: absolute;
    top: clamp(-60px, -6vw, -80px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 12px);
}

.hotel-arrow-btn {
    width: clamp(40px, 5vw, 62px);
    height: clamp(40px, 5vw, 62px);
    background: transparent;
    border: 1.5px solid white;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.hotel-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.hotel-arrow-btn img {
    width: clamp(16px, 2vw, 20px);
    height: auto;
    filter: brightness(0) invert(1);
}

.hotel-slide-info h3 {
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 400;
    margin-bottom: clamp(20px, 3vw, 30px);
    line-height: 1.2;
    font-family: 'Inria Serif', serif;
    color: white;
    margin-top: 0;
}

.hotel-slide-info p {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: clamp(25px, 4vw, 35px);
    opacity: 0.95;
    font-family: 'Inria Serif', serif;
    color: white;
    margin-top: 0;
}

.hotel-learn-more-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: clamp(8px, 1.5vw, 12px) clamp(40px, 6vw, 54px);
    border-radius: 5px;
    font-family: 'Inria Serif', serif;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-learn-more-btn:hover {
    background: white;
    color: #916952;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hotel-services-section {
        height: 600px;
    }
    
    .hotel-services-container {
        flex-direction: column;
    }
    
    .hotel-left-panel {
        width: 100%;
        height: clamp(200px, 35vh, 300px);
    }
    
    .hotel-left-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: clamp(20px, 4vw, 40px);
    }
    
    .hotel-logo-section {
        position: static;
        transform: none;
    }
    
    .hotel-main-title {
        margin-bottom: 0;
        flex: 1;
        margin-left: clamp(20px, 4vw, 40px);
        margin-right: clamp(20px, 4vw, 40px);
        text-align: left;
    }
    
    .hotel-slide-content {
        width: clamp(400px, 80vw, 600px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hotel-services-section {
        height: 500px;
    }
    
    .hotel-left-panel {
        height: clamp(180px, 30vh, 250px);
    }
    
    .hotel-left-content {
        padding: clamp(15px, 3vw, 25px);
    }
    
    .hotel-main-title {
        margin-left: clamp(15px, 3vw, 20px);
        margin-right: clamp(15px, 3vw, 20px);
    }
    
    .hotel-main-title h2 {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .hotel-main-title p {
        font-size: clamp(14px, 3.5vw, 18px);
        padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    }
    
    .hotel-slide-content {
        width: clamp(300px, 90vw, 500px);
        padding: clamp(20px, 4vw, 30px);
    }
    
    .hotel-brand-elements {
        top: clamp(-60px, -10vw, -80px);
    }
    
    .hotel-navigation-arrows {
        top: clamp(-50px, -8vw, -60px);
    }
}
/* =========================
   Testimonials Section - АДАПТИВ (ИСПРАВЛЕНО)
   ========================= */
.testimonials-section {
  width: 100%;
  min-height: 600px;
  background: #F5F5F5;
  padding: 55px 35px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  box-sizing: border-box;
}

/* Левая колонка */
.testimonials-left-column {
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Заголовки */
.testimonials-title {
  color: black;
  font-size: clamp(28px, 4vw, 34px);
  font-family: 'Inria Sans', sans-serif;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}

.testimonials-subtitle {
  color: black;
  font-size: 14px;
  font-family: 'Inria Serif', serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* Рейтинг Google */
.testimonials-rating-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonials-google-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.rating-stars {
  display: flex;
  gap: 5px;
  align-items: center;
}

.rating-stars .star {
  width: 18px;
  height: 18px;
}

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

/* Кнопки */
.testimonials-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.testimonials-btn {
  width: 283px;
  max-width: 100%;
  height: 40px;
  background: transparent;
  border: 1px solid #916952;
  border-radius: 5px;
  color: #916952;
  font-size: 17px;
  font-family: 'Inria Serif', serif;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-btn:hover {
  background: #916952;
  color: white;
}

.testimonials-divider {
  color: black;
  font-size: 17px;
  font-family: 'Inria Serif', serif;
  font-weight: 400;
  text-align: center;
}

/* Правая колонка - ОСНОВНЫЕ ИСПРАВЛЕНИЯ */
.testimonials-reviews-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  /* Убираем margin auto и max-width - они мешали */
}

/* Стрелки навигации - ИСПРАВЛЕНО */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #916952;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(145, 105, 82, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left {
  left: 10px;
}

.slider-arrow-right {
  right: 10px;
}

.slider-arrow img {
  max-width: 60%;
  height: auto;
  object-fit: contain;
}

/* Контейнер карточек - ГЛАВНОЕ ИСПРАВЛЕНИЕ */
.testimonials-cards-container {
  width: 100%;
  padding: 0 70px; /* Увеличиваем padding для стрелок */
  overflow: hidden;
}

.testimonials-cards-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
}

/* Карточки отзывов - ИСПРАВЛЕНО */
.testimonial-card {
  flex: 0 0 auto; /* Убираем calc - пусть JS считает */
  width: 350px; /* Фиксированная ширина */
  min-width: 280px;
  max-width: 400px;
  background: white;
  border: 1px solid #916952;
  border-radius: 5px;
  padding: 15px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Элементы карточки */
.reviewer-name,
.review-date,
.review-text {
  color: black;
  font-size: 16px;
  font-family: 'Inria Serif', serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 10px 0;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.review-stars .star {
  width: 15px;
  height: 15px;
}

.hotel-logo {
  position: absolute;
  right: 15px;
  top: 20px;
  width: 100px;
  height: 70px;
}

.hotel-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== АДАПТИВ ЧЕРЕЗ CLAMP ===== */

/* Планшеты */
@media (max-width: 1200px) {
  .testimonials-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .testimonials-left-column {
    order: -1;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .testimonials-google-rating {
    justify-content: center;
  }

  .testimonials-buttons {
    align-items: center;
  }

  .testimonial-card {
    width: clamp(280px, calc((100vw - 160px) / 2 - 20px), 350px); /* 2 карточки */
  }
}

/* Мобильные */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 20px;
    gap: 30px;
  }

  .testimonials-left-column {
    gap: 20px;
    order: -1;
  }

  .testimonials-btn {
    width: 100%;
    max-width: 300px;
  }

  .testimonial-card {
    width: clamp(250px, calc(100vw - 120px), 350px); /* 1 карточка на всю ширину */
    height: auto;
    min-height: 250px;
  }

  .hotel-logo {
    position: static;
    width: 80px;
    height: 60px;
    margin: 10px 0 0 auto;
  }
}

/* Маленькие экраны */
@media (max-width: 480px) {
  .testimonials-section {
    padding: 30px 15px;
  }

  .testimonial-card {
    padding: 15px;
  }
}
/* Contacts Section Styles */
.contacts-section {
  padding: clamp(2rem, 4vw, 4rem) 0;
  background-color: #f8f8f8;
}

.contacts-section .container {
  max-width: clamp(320px, 90vw, 1920px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Map Container */
.map-container {
  width: 100%;
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  max-height: clamp(300px, 26vw, 500px);
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #916952;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
}

.contact-header {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.address-block {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.address {
  color: black;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-family: 'Inria Serif', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.contact-icon {
  width: clamp(20px, 2vw, 24px);
  height: clamp(20px, 2vw, 24px);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.contact-text {
  color: black;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-family: 'Inria Serif', serif;
  font-weight: 700;
  line-height: 1.4;
}

/* Operating Hours */
.operating-hours {
  color: #916952;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: 'Inria Serif', serif;
  font-weight: 700;
  line-height: 1.3;
}

.operating-hours p {
  margin: 0 0 clamp(0.25rem, 0.5vw, 0.5rem) 0;
}

/* Reviews Block */
.reviews-block {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  align-items: flex-start;
  margin: clamp(1rem, 2vw, 2rem) 0;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.rating-score {
  color: #916952;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.reviews-icon {
  width: clamp(40px, 4vw, 44px);
  height: clamp(40px, 4vw, 44px);
}

.stars-rating {
  display: flex;
  gap: clamp(0.25rem, 0.5vw, 0.375rem);
}

.star {
  width: clamp(16px, 1.5vw, 18.81px);
  height: clamp(16px, 1.5vw, 18px);
  background: #FBB002;
  border-radius: 1px;
}

.reviews-text {
  color: black;
  font-size: clamp(0.875rem, 1.2vw, 0.875rem);
  font-family: 'Inria Serif', serif;
  font-weight: 700;
  line-height: 1.7;
}

/* Review Form */
.review-form {
  width: 100%;
}

.form-title {
  color: black;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: 'Inria Serif', serif;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 clamp(1rem, 1.5vw, 1.5rem) 0;
}

.review-input {
  width: 100%;
}

.review-textarea {
  width: 100%;
  height: clamp(60px, 6vw, 80px);
  padding: clamp(0.75rem, 1.5vw, 1.75rem) clamp(0.5rem, 1vw, 0.625rem);
  background: white;
  border: 1px solid black;
  border-radius: 5px;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: 'Inria Serif', serif;
  font-weight: 300;
  line-height: 1;
  resize: vertical;
  box-sizing: border-box;
}

.review-textarea::placeholder {
  color: rgba(0, 0, 0, 0.50);
}

.review-textarea:focus {
  outline: none;
  border-color: #916952;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contacts-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .map-container {
    order: 2;
  }
  
  .contact-info {
    order: 1;
  }
  
  .map-image {
    max-height: clamp(250px, 30vw, 400px);
  }
}

@media (max-width: 768px) {
  .address-block {
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
    align-items: flex-start;
  }
  
  .contact-icon {
    align-self: flex-start;
  }
  
  .reviews-block {
    align-items: center;
    text-align: center;
  }
  
  .reviews-header {
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
  }
}

@media (max-width: 480px) {
  .contact-details {
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.5rem, 2vw, 0.75rem);
  }
  
  .stars-rating {
    justify-content: center;
  }
}

/* Ultra-wide screens optimization */
@media (min-width: 2560px) {
  .contacts-section .container {
    max-width: 2400px;
  }
  
  .contacts-content {
    max-width: 1920px;
    margin: 0 auto;
  }
}

@media (min-width: 3600px) {
  .contacts-section .container {
    max-width: 3200px;
  }
  
  .contacts-content {
    max-width: 2400px;
    margin: 0 auto;
  }
}