/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5dc; /* Бежево-кремовый фон */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo img {
    height: 150px;
    width: 213px;
    object-fit: contain;
}

.tagline {
    color: #2c3e50;
    font-style: italic;
    font-weight: 600;
    margin-top: 5px;
    font-size: 1rem;
    text-align: left;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #3498db;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Мобильное меню */
.menu-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: #f5f5dc;
    border-radius: 5px;
    border: 1px solid #ddd;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 6px auto;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Мобильное меню */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #f5f5dc;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
    transition: right 0.3s ease;
    padding-top: 160px; /* Увеличенный отступ сверху - было 80px, теперь 160px для смещения на 4 строки */
    box-sizing: border-box;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px; /* Уменьшаем отступ между пунктами */
}

.mobile-nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px; /* Уменьшаем размер шрифта */
    display: block;
    padding: 8px 0; /* Уменьшаем padding */
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: #3498db;
}

/* Hero Carousel - полная ширина */
.hero-carousel {
    position: relative;
    height: 125vh;
    overflow: hidden;
    margin-top: 80px;
    width: 100vw; /* Полная ширина экрана */
    margin-left: calc(-50vw + 50%); /* Центрирование */
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 10 слайдов без затемнения */
.carousel-slide:nth-child(1) {
    background-image: url('../images/carousel1.jpg');
    opacity: 1;
}
.carousel-slide:nth-child(2) {
    background-image: url('../images/carousel2.jpg');
}
.carousel-slide:nth-child(3) {
    background-image: url('../images/carousel3.jpg');
}
.carousel-slide:nth-child(4) {
    background-image: url('../images/carousel4.jpg');
}
.carousel-slide:nth-child(5) {
    background-image: url('../images/carousel5.jpg');
}
.carousel-slide:nth-child(6) {
    background-image: url('../images/carousel6.jpg');
}
.carousel-slide:nth-child(7) {
    background-image: url('../images/carousel7.jpg');
}
.carousel-slide:nth-child(8) {
    background-image: url('../images/carousel8.jpg');
}
.carousel-slide:nth-child(9) {
    background-image: url('../images/carousel9.jpg');
}
.carousel-slide:nth-child(10) {
    background-image: url('../images/carousel10.jpg');
}

.carousel-slide.active {
    opacity: 1;
}

/* Красивая надпись в карусели */
.carousel-text {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 800px;
    margin: 0 20px;
}

.carousel-text h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.carousel-text h1 span {
    color: #3498db;
    display: block;
    font-size: 2.2rem;
    margin-top: 10px;
}

.carousel-text p {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.carousel-text .highlight {
    color: #3498db;
    font-weight: 700;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-weight: bold;
}

.carousel-nav button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive Design для карусели */
@media (max-width: 768px) {
    .carousel-text {
        padding: 25px 30px;
        margin: 0 15px;
        background: rgba(255, 255, 255, 0.9);
    }
    .carousel-text h1 {
        font-size: 2rem;
    }
    .carousel-text h1 span {
        font-size: 1.6rem;
    }
    .carousel-text p {
        font-size: 1.1rem;
    }
    .hero-carousel {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .carousel-text {
        padding: 20px 25px;
        margin: 0 10px;
    }
    .carousel-text h1 {
        font-size: 1.6rem;
    }
    .carousel-text h1 span {
        font-size: 1.3rem;
    }
    .carousel-text p {
        font-size: 1rem;
    }
}

.about-hero {
    padding: 240px 0 80px; /* 240px сверху — под шапку */
    background-color: #f5f5dc;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    
    
    /* Лёгкий фон блока — чуть светлее бежевого */
    background: #f5f5dc;
    padding: 30px 50px;
    border-radius: 12px;
    
    /* Бордовая полоса слева — акцент качества */
    border-left: 4px solid #f5f5dc; 
    
    /* Лёгкая тень для объёма */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    
    /* Тень под текстом — читаемость */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-text h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* About Page Sections */
.about-page {
    padding: 20px 0 80px; /* Сильно уменьшили верхний отступ */
    background-color: #f5f5dc;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    border-radius: 2px;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

/* Founders Section */
.founders-section {
    margin-bottom: 60px;
}

.founders-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.founders-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    border-radius: 2px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.founder-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
}

/* Вертикальные фото founders (9:16) - десктоп и мобильная версия */
.founder-image {
    width: 100%;
    aspect-ratio: 9/16; /* Соотношение 9:16 */
    overflow: hidden;
    border-radius: 8px; /* По желанию, для скругления углов */
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Обрезает фото под нужное соотношение */
    display: block;
}

/* Дополнительные стили для мобильной версии (если нужно) */
@media (max-width: 768px) {
    .founder-image {
        aspect-ratio: 9/16; /* Сохраняем соотношение 9:16 на мобильных */
        width: 100%;
        max-width: 300px; /* Ограничиваем ширину на мобильных устройствах */
        margin: 0 auto; /* Центрируем изображение */
    }
    
    .founder-card {
        text-align: center; /* Центрируем текст на мобильных */
    }
}
.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 25px;
}

.founder-info h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.founder-info h4 {
    font-size: 1.1rem;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 600;
}

.founder-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

/* Community Section */
.community-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.community-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.community-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    border-radius: 2px;
}

.commitment-item {
    margin-bottom: 40px;
}

.commitment-item:last-child {
    margin-bottom: 0;
}

.commitment-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.commitment-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.1));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    font-weight: 600;
    font-style: italic;
}

/* Owner Photo Section */
.owner-photo {
    padding: 40px 0;
    background-color: #f5f5dc;
}

.photo-container {
    width: 100%;
    text-align: center;
}

.photo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-container img:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(to right, #3498db, #2c3e50);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(to right, #2c3e50, #3498db);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-3px);
}

/* Popular Tours */
.popular-tours {
    padding: 80px 0;
    background-color: #f5f5dc;
}

.popular-tours h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tour-content p {
    color: #666;
    margin-bottom: 20px;
}

.book-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.book-btn:hover {
    background: linear-gradient(to right, #2c3e50, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* About Home */
.about-home {
    padding: 80px 0;
    background-color: #f5f5dc;
    text-align: center;
}

.about-home h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-home p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

/* Tours Page */
.tours-page {
    padding: 120px 0 80px; /* Увеличен верхний padding с 120px до 200px для смещения на 4 строки */
    background-color: #f5f5dc;
}
.tours-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 16px;
}

/* Reviews Page */
.reviews-page {
    padding: 240px 0 80px; /* Увеличен верхний отступ с 120px до 240px для смещения на 6 строк */
    background-color: #f5f5dc;
}
.reviews-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
    height: 300px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-slide.active {
    opacity: 1;
}

.review-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #3498db;
}

.review-author h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.review-author p {
    color: #666;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.prev-review, .next-review {
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-review:hover, .next-review:hover {
    background: #2c3e50;
    transform: scale(1.1);
}

.add-review {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.add-review h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.rating {
    display: flex;
    justify-content: flex-start;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating label:hover,
.rating input[type="radio"]:checked ~ label,
.rating label:hover ~ label {
    color: #ffc107;
}

/* Contact Page */
.contact-page {
    padding: 240px 0 80px; /* Увеличен верхний отступ с 120px до 200px для смещения на 4 строки */
    background-color: #f5f5dc;
}

.contact-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section h2,
.contact-info h2 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.map-placeholder {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.map-placeholder h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.map-placeholder img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Huts Page */
.huts-page {
    padding: 120px 0 80px; /* Увеличен верхний padding с 120px до 200px для смещения на 4 строки */
    background-color: #f5f5dc;
}

.huts-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.huts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hut-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hut-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.hut-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hut-content {
    padding: 20px;
}

.hut-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.hut-content p {
    color: #666;
    margin-bottom: 15px;
}

.hut-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.hut-content ul li {
    margin-bottom: 5px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .community-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-carousel {
        height: 60vh;
    }
    
    .popular-tours {
        padding: 60px 0;
    }
    
    .popular-tours h2 {
        font-size: 2rem;
    }
    
    .about-home {
        padding: 60px 0;
    }
    
    .tours-page,
    .about-page,
    .reviews-page,
    .contact-page,
    .huts-page,
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .tours-page h1,
    .about-page h1,
    .reviews-page h1,
    .contact-page h1,
    .huts-page h1 {
        font-size: 2rem;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .add-review {
        padding: 30px;
    }
    
    .reviews-carousel {
        height: 350px;
    }
    
    .logo img {
        height: 100px;
        width: 142px;
    }
    
    .tagline {
        font-size: 0.8rem;
        margin-top: 3px;
    }
    
    .menu-toggle {
        margin-left: 20px;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .main-nav ul li {
        margin-left: 15px;
    }
    
    .main-nav ul li a {
        font-size: 0.8rem;
    }
    
    .owner-photo {
        padding: 20px 0;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .founder-image {
        height: 200px;
    }
    
    .community-section {
        padding: 20px;
    }
    
    .commitment-item h3 {
        font-size: 1.3rem;
    }
    
    .commitment-item p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .tour-grid,
    .huts-grid {
        grid-template-columns: 1fr;
    }
    
    .review-author {
        flex-direction: column;
        text-align: center;
    }
    
    .review-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
    }
    
    .about-section h2,
    .founders-section h2,
    .community-section h2 {
        font-size: 1.6rem;
    }
    
    .founder-info h3 {
        font-size: 1.4rem;
    }
    
    .founder-info h4 {
        font-size: 1rem;
    }
    
    .founder-info p {
        font-size: 0.9rem;
    }
}

/* No Scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

/* Information Page */
.information-page {
    padding: 120px 0 80px; /* Увеличено до 160px сверху для смещения на 2 строки */
    background-color: #f5f5dc;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.hero-video video,
.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}