[file name]: rooms.css
[file content begin]
/* Фирменные цвета из брендбука */
:root {
    --primary: #E19E00; /* Золотой */
    --secondary: #767562; /* Серо-зеленый */
    --accent: #bababa; /* Светло-серый */
    --dark: #333333;
    --light: #f9f9f9;
    --white: #ffffff;
}

/* ДОБАВЛЕННЫЕ СТИЛИ ДЛЯ HEADER'A (из index.html) */
/* Группируем логотип и текст вместе */
.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Фиксируем размер логотипа */
.logo-image img {
    width: 50px; /* НОРМАЛЬНЫЙ РАЗМЕР для страниц комнат */
    height: 50px;
    object-fit: contain;
}

/* Настройки для header-container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    min-height: 80px;
}

/* Размер текстового логотипа */
.logo a {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
}

/* Адаптивность для мобильных */
@media (max-width: 900px) {
    /* На маленьких экранах скрываем десктопное меню */
    .desktop-nav {
        display: none;
    }
    
    .language-switcher {
        display: none; /* Скрываем переключатель языка на мобильных */
    }
    
    /* Уменьшаем логотип для мобильных */
    .logo-image img {
        width: 40px;
        height: 40px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 20px;
    }
    
    .header-container {
        min-height: 70px;
    }
}

/* Для очень маленьких мобильных */
@media (max-width: 480px) {
    .logo-image img {
        width: 35px;
        height: 35px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .logo-group {
        gap: 5px;
    }
}

/* Стили для каталога номеров */
.rooms-catalog {
    padding: 50px 0;
    min-height: 70vh;
}

.rooms-catalog .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.rooms-catalog .section-title h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.rooms-catalog .section-title p {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
    margin-top: 25px;
}

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

.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.room-image {
    height: 250px;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

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

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

.room-content {
    padding: 25px;
}

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

.room-price {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 15px;
}

.room-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.room-details span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--light);
    padding: 5px 10px;
    border-radius: 15px;
}

.room-details i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.8rem;
}

.room-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--dark);
    opacity: 0.9;
}

.room-card .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Стили для страницы детального просмотра номера */
.room-detail {
    padding: 50px 0;
    min-height: 80vh;
}

.room-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent);
}

.room-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.room-header .room-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

/* Галерея */
.room-gallery {
    margin-bottom: 50px;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.02);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover {
    opacity: 0.8;
    border-color: var(--primary);
    transform: scale(1.05);
}

.gallery-thumbs img.active {
    border-color: var(--primary);
    opacity: 1;
}

/* Контент номера */
.room-content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.room-description {
    margin-bottom: 40px;
}

.room-description h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.room-description h3 {
    color: var(--secondary);
    margin: 25px 0 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.room-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--dark);
}

.room-description ul {
    list-style: none;
    padding-left: 0;
}

.room-description li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.room-description li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Удобства */
.room-amenities {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--accent);
}

.room-amenities h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.amenity {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary);
}

.amenity:hover {
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.amenity i {
    color: var(--primary);
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.amenity span {
    font-weight: 500;
    color: var(--dark);
}

/* Боковая панель бронирования */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--accent);
}

.booking-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-card .price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 25px;
}

.booking-card .price small {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
}

.booking-card .btn-large {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 15px;
}

.booking-features {
    margin-top: 25px;
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

.booking-features p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark);
}

.booking-features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Стили для coming soon */
.coming-soon .room-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    position: relative;
}

.coming-soon-label {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
}

.coming-soon .room-content {
    opacity: 0.7;
}

/* Фильтры номеров */
.rooms-filters {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--accent);
    border-radius: 5px;
    background: var(--white);
    color: var(--dark);
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Адаптивность для номеров */
@media (max-width: 1200px) {
    .room-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-sidebar {
        position: static;
        order: -1;
    }
    
    .booking-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-catalog {
        padding: 30px 0;
    }
    
    .rooms-catalog .section-title h1 {
        font-size: 2rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-header h1 {
        font-size: 2rem;
    }
    
    .gallery-main img {
        height: 300px;
    }
    
    .gallery-thumbs img {
        height: 70px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .room-content {
        padding: 20px;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-thumbs img {
        height: 60px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-card {
    animation: fadeIn 0.6s ease-out;
}

.room-card:nth-child(2) {
    animation-delay: 0.1s;
}

.room-card:nth-child(3) {
    animation-delay: 0.2s;
}

.room-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Дополнительные стили для улучшения UX */
.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.room-size {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.room-view {
    color: var(--primary);
    font-style: italic;
    margin-bottom: 15px;
}

/* Стили для рейтинга */
.room-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-stars {
    color: var(--primary);
    margin-right: 10px;
}

.rating-value {
    font-weight: bold;
    color: var(--secondary);
}

/* Стили для кнопки "Избранное" */
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.favorite-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.favorite-btn i {
    color: var(--primary);
    font-size: 1.2rem;
}

.favorite-btn.active i {
    color: #ff4757;
}

/* Стили для модального окна галереи */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.gallery-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.gallery-modal-close:hover {
    color: var(--primary);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-counter {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* Стили для видео-секции */
.room-video-section {
    margin: 50px 0;
}

.room-video-section h2 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.room-video-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.vk-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vk-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Стили для заглушки видео */
.video-placeholder {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px dashed var(--accent);
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.video-placeholder h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.video-placeholder p {
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.video-placeholder p:last-child {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Адаптивность для видео-секции */
@media (max-width: 768px) {
    .room-video-section h2 {
        font-size: 1.6rem;
    }
    
    .vk-video-container {
        border-radius: 10px;
    }
    
    .video-placeholder {
        padding: 30px 20px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
    
    .video-placeholder h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .room-video-section {
        margin: 30px 0;
    }
    
    .room-video-section h2 {
        font-size: 1.4rem;
    }
    
    .video-placeholder {
        padding: 20px 15px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .video-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
    
    .gallery-modal-close {
        top: -40px;
        font-size: 2rem;
    }
}
[file content end]