/* ========================================
   САДИБА "КИЧЕРА" - СТИЛІ
   ======================================== */

/* Змінні */
:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --primary-light: #4a7c59;
    --secondary: #ffffff;
    --accent: #c9a227;
    --text: #333333;
    --text-light: #666666;
    --white: #fff1db;     
    --gray-100: #ffe6c4;  
    --gray-200: #ffefd2;  
    --gray-800: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Скидання стилів */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   КНОПКИ
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-white:hover {
    background: var(--gray-100);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   НАВІГАЦІЯ
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.nav-link:hover {
    opacity: 0.8;
}

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

.navbar.scrolled .nav-btn {
    background: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text);
}

/* Мобільне меню */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: var(--text);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* ========================================
   HERO СЕКЦІЯ
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 30px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* ========================================
   СЕКЦІЇ
   ======================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   НОМЕРИ
   ======================================== */
.rooms {
    background: var(--gray-100);
}

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

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

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.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-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.room-content {
    padding: 25px;
}

.room-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.room-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.room-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ========================================
   ПОСЛУГИ
   ======================================== */
.services {
    background: var(--white);
}

/* Featured Service */
.featured-service {
    margin-bottom: 50px;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.featured-text {
    padding: 50px;
    color: var(--white);
}

.featured-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.featured-text p {
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.price-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-note {
    font-size: 14px;
    opacity: 0.8;
}

.featured-image {
    height: 100%;
    min-height: 400px;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-phone:hover {
    text-decoration: underline;
}

/* Activities */
.activities-header {
    text-align: center;
    margin-bottom: 30px;
}

.activities-header h3 {
    font-size: 24px;
}

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

.activity-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.activity-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-bg.green {
    position: absolute;
    inset: 0;
    background: var(--primary);
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.activity-content i {
    font-size: 28px;
    margin-bottom: 10px;
}

.activity-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.activity-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   АТРАКЦІЇ
   ======================================== */
.attractions {
    background: var(--gray-100);
}

/* Featured Attractions */
.featured-attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.fattraction-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.fattraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fattraction-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.fattraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.fattraction-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.fattraction-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fattraction-content h3 i {
    font-size: 16px;
    opacity: 0.7;
}

.fattraction-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.fattraction-content li {
    font-size: 14px;
    opacity: 0.9;
}

.fattraction-content li i {
    color: #4ade80;
    margin-right: 8px;
}

.fattraction-content strong {
    font-weight: 600;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.map-link:hover {
    background: var(--primary-light);
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.attraction-category {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.attraction-category h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attraction-category h4 i {
    color: var(--primary);
}

.attraction-category ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.attraction-category li {
    font-size: 14px;
    color: var(--text-light);
}

.attraction-category li a {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    transition: var(--transition);
}

.attraction-category li a:hover {
    color: var(--primary);
}

.attraction-category li a i {
    font-size: 12px;
    margin-top: 3px;
    opacity: 0.6;
}

.attraction-category li strong {
    color: var(--text);
    font-weight: 600;
}

/* Food Delivery */
.food-delivery {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.food-delivery h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.delivery-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.delivery-tag {
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.delivery-tag:hover {
    background: var(--primary);
    color: var(--white);
}

.delivery-tag i {
    font-size: 12px;
    margin-left: 5px;
}

/* ========================================
   ВІДГУКИ
   ======================================== */
.reviews {
    background: var(--white);
}

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

.review-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 28px;
    color: var(--primary);
    opacity: 0.5;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

.review-text {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--text);
}

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

/* ========================================
   КОНТАКТИ
   ======================================== */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
    text-align: left;
}

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

.contact-subtitle {
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
}

.contact-value:hover {
    opacity: 0.8;
}

.social-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-map {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--primary);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: #4ade80;
    font-size: 14px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   МОДАЛЬНІ ВІКНА ТА ГАЛЕРЕЯ
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    position: relative;
    animation: modalSlide 0.3s ease;
    overflow: hidden;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Gallery */
.gallery {
    position: relative;
    height: 350px;
    background: var(--gray-800);
}

.gallery-slides {
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Modal Body */
.modal-body {
    padding: 25px;
}

.modal-body h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-body > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-info i {
    color: var(--primary);
}

.modal-features {
    margin-bottom: 20px;
}

.modal-features h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-list span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.feature-list i {
    color: var(--primary);
}

.modal-price {
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-label {
    color: var(--text-light);
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   АДАПТИВНІСТЬ
   ======================================== */
@media (max-width: 992px) {
    .nav-menu,
    .nav-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 250px;
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .featured-attractions {
        grid-template-columns: 1fr;
    }

    .fattraction-card {
        height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .featured-text {
        padding: 30px;
    }

    .featured-text h3 {
        font-size: 24px;
    }

    .gallery {
        height: 250px;
    }

    .gallery-prev,
    .gallery-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rooms-grid,
    .services-grid,
    .activities-grid,
    .attractions-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .room-info {
        flex-direction: column;
        gap: 8px;
    }

    .delivery-tags {
        flex-direction: column;
        align-items: center;
    }

    .delivery-tag {
        width: 100%;
        max-width: 250px;
    }

    .modal-content {
        margin: 10px;
    }

    .gallery {
        height: 200px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* ========================================
   СКРОЛБАР
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
