/* Основные стили для сайта */
:root {
    --primary-color: #5d4037;
    --secondary-color: #8d6e63;
    --accent-color: #d7ccc8;
    --text-light: #ffffff;
    --text-dark: #3e2723;
    --background-light: #f5f5f5;
    --background-dark: #3e2723;
    --border-color: #d7ccc8;
    --highlight-color: #a1887f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: var(--background-dark);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Белая шапка */
.header-white {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.header-white .logo a span {
    color: var(--text-dark);
}

.header-white .nav-main a {
    color: var(--text-dark);
}

.header-white .nav-main a:hover {
    color: var(--secondary-color);
}

.header-white .header-phone {
    color: var(--text-dark);
    font-weight: bold;
}

.header-social {
    display: flex;
    margin-top: 5px;
}

.header-social a {
    color: var(--secondary-color);
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-social a:hover {
    color: var(--accent-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 5px;
}

.nav-main {
    display: flex;
    gap: 20px;
    flex-grow: 1;
}

.nav-main a {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-main a:hover {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-actions .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.lang-select {
    position: relative;
    cursor: pointer;
}

.lang-select .current-lang {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--background-dark);
    min-width: 120px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
}

.lang-select:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 8px 15px;
    color: var(--text-light);
}

.lang-dropdown a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-image: url('../images/banner/sun_territory0.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* Booking Form */
.booking-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.btn-search {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background-color: #e6b800;
}

/* Room Cards */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: #6c757d;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.room-card {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 20px;
    background-color: var(--text-light);
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.room-buttons {
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Features Section */
.features {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 70px 0;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about p {
    margin-bottom: 15px;
    color: #6c757d;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #adb5bd;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Activities Page */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.activity-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-info {
    padding: 20px;
    background-color: #fff;
}

.activity-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Room Detail Page */
.room-detail {
    padding: 50px 0;
}

.room-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.gallery-thumb {
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover img {
    opacity: 0.8;
}

.room-details-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.room-details-content {
    flex: 2;
    min-width: 300px;
}

.room-booking-box {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    align-self: flex-start;
}

.room-details-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.room-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.room-highlight {
    background-color: #f8f9fa;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.room-description {
    margin-bottom: 30px;
    color: #6c757d;
}

.room-amenities h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-booking-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.booking-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-dates {
    margin-bottom: 20px;
}

.btn-book-now {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-book-now:hover {
    background-color: #e6b800;
}

/* Contact Page */
.contact {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Page */
.faq {
    padding: 50px 0;
}

.accordion {
    margin-bottom: 50px;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    border: 1px solid #e9ecef;
    border-top: none;
    opacity: 0;
    visibility: hidden;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.accordion-item.active .accordion-header {
    background-color: #f0e6d3;
    border-bottom-color: #e0e0e0;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

/* Стиль курсора для полей выбора */
select {
    cursor: pointer;
}

/* Улучшения для мобильной версии */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 10px;
    }
    
    .nav-main {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
        justify-content: center;
    }
    
    .d-flex.justify-content-between.align-items-center.w-100 {
        flex-direction: column;
    }
    
    .header-actions {
        margin-top: 10px;
        width: 100%;
    }
    
    .header-actions .btn {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .booking-form {
        margin-top: -30px;
        padding: 20px;
    }
    
    .room-details-flex {
        flex-direction: column;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .booking-form .form-row {
        flex-direction: column;
    }
    
    .booking-form .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .booking-form .btn-search {
        width: 100%;
    }
    
    /* Исправления для формы бронирования на странице поиска */
    .booking-search-form .row > div {
        margin-bottom: 15px;
    }
    
    /* Увеличение размера кнопок на мобильных устройствах для удобства нажатия */
    .btn-primary, 
    .btn-secondary, 
    .btn-search,
    button[type="submit"] {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Улучшения для модальных окон на мобильных устройствах */
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    /* Улучшения для галереи номеров */
    .room-detail .gallery-thumbs {
        flex-wrap: wrap;
    }
    
    .room-detail .gallery-thumb {
        width: calc(33.33% - 10px);
        margin-bottom: 10px;
    }
    
    /* Улучшения для карточек номеров */
    .room-result-item .row {
        flex-direction: column;
    }
    
    .room-result-item .col-md-5,
    .room-result-item .col-md-7 {
        width: 100%;
    }
    
    .room-result-item .col-md-5 {
        margin-bottom: 15px;
    }
    
    /* Улучшения для раздела деталей номера */
    .room-details-flex {
        flex-direction: column;
    }
    
    .room-details-content,
    .room-booking-box {
        width: 100%;
    }
    
    .room-booking-box {
        margin-top: 20px;
    }
    
    /* Улучшения для формы в FAQ разделе */
    .additional-questions form .col-md-6 {
        margin-bottom: 15px;
    }
}

/* Дополнительные улучшения для маленьких экранов */
@media (max-width: 576px) {
    .room-detail .gallery-thumb {
        width: calc(50% - 10px);
    }
    
    .section-title h1, 
    .section-title h2 {
        font-size: 24px;
    }
    
    .features-grid,
    .rooms-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Фиксы для отступов */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Стили для модального окна предпросмотра номера */
.room-preview-thumb {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 80px;
    flex-shrink: 0;
}

.room-preview-thumb.active {
    opacity: 1;
    border: 2px solid var(--secondary-color);
}

.room-preview-thumb:hover {
    opacity: 1;
}

.room-preview-thumb img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.room-preview-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.room-preview-features {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.room-preview-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.room-preview-amenities ul li {
    margin-bottom: 8px;
}

/* Стили для предпросмотра изображений в списке номеров */
.room-gallery-preview {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.room-gallery-preview img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-gallery-preview img:hover {
    opacity: 0.8;
}

.more-photos {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

/* Стили для модального окна просмотра номера */
.room-preview-gallery {
    margin-bottom: 20px;
}

.room-preview-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room-preview-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.room-preview-thumb {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex: 0 0 100px;
}

.room-preview-thumb img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid transparent;
}

.room-preview-thumb.active {
    opacity: 1;
}

.room-preview-thumb.active img {
    border-color: var(--primary-color);
}

.room-preview-thumb:hover {
    opacity: 1;
}

.room-preview-features {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.room-preview-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-preview-amenities ul {
    columns: 2;
    font-size: 0.9rem;
    padding-left: 0;
}

.room-preview-amenities li {
    margin-bottom: 8px;
    list-style: none;
}

.room-preview-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
    .room-preview-main img {
        height: 250px;
    }
    
    .room-preview-amenities ul {
        columns: 1;
    }
    
    .room-preview-modal .modal-dialog {
        margin: 10px;
    }
}

/* Стили для иконок контактов */
.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 2.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.contact-icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    background-color: var(--secondary-color);
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Изменение цветов кнопок */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Обновление стилей для карточек номеров */
.room-card {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.room-info {
    padding: 20px;
    background-color: var(--text-light);
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

/* Обновление стилей для header-actions */
.header-actions .btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-actions .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Обновление стилей для секции преимуществ */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Обновление стилей для footer */
.footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
} 