/* NomadNotes - Стили сайта */

/* Подключение шрифта Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

/* CSS переменные для цветов */
:root {
    --primary-bg: #ffffff;
    --accent-color: #e6c700;
    --dark-bg: #0a0700;
    --warm-bg: #f4ffef;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-bg);
}

/* Контейнер с максимальной шириной */
.container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* Хедер */
.header {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .navbar-brand {
    color: var(--primary-bg) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.header .nav-link {
    color: var(--primary-bg) !important;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--primary-bg);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Отступ для фиксированного хедера */
body {
    padding-top: 80px;
}

/* Футер */
.footer {
    background-color: var(--dark-bg);
    color: var(--primary-bg);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--primary-bg);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Блоки и секции */
.section {
    padding: 4rem 0;
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--primary-bg);
}

.section-warm {
    background-color: var(--warm-bg);
}

.section-light {
    background-color: #fff5ee;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Линии-разделители */
.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.divider-accent {
    height: 2px;
    background-color: var(--accent-color);
    width: 60px;
    margin: 1rem auto;
}

/* Кнопки */
.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #d45d0f;
    border-color: #d45d0f;
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-outline-accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-bg);
}

/* Карточки */
.card-custom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin: 10px;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-custom img {
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

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

/* Иконки */
.icon-feature {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* Hero секция */
.hero {
    background: linear-gradient(rgba(10, 7, 0, 0.5), rgba(10, 7, 0, 0.5)), url('./img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--primary-bg);
    padding: 11rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}



/* Scroll to top кнопка */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #d45d0f;
    transform: translateY(-3px);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--primary-bg);
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Форма */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(234, 111, 26, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container-custom {
        padding: 0 10px;
    }
}

/* Утилиты */
.text-accent {
    color: var(--accent-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* new styles  */

/* Загальні стилі */
:root {
    --primary-bg: #ffffff;
    --accent-color: #e6c700;
    --dark-bg: #0a0700;
    --warm-bg: #f4ffef;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

/* Стилі для блоку "Тема месяца" */
.theme-month {
    background: linear-gradient(135deg, var(--warm-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.theme-month::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.theme-intro {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent-color);
}

.theme-mini-block {
    background: var(--primary-bg);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.theme-mini-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-mini-icon {
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 24px;
}

.theme-image {
    position: relative;
    overflow: hidden;
}

.theme-image img {
    transition: transform 0.3s ease;
}

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

.theme-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 70%, rgba(230, 199, 0, 0.3));
}

/* Стилі для блоку "Лучшие путеводители" */
.best-guides {
    background: var(--dark-bg);
    position: relative;
}

.guides-title {
    color: var(--primary-bg);
    position: relative;
}

.guides-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.guide-card {
    background: var(--primary-bg);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 199, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.guide-card:hover::before {
    left: 100%;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 199, 0, 0.2);
}

.guide-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.guide-image img {
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.guide-card:hover .guide-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.guide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 7, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.guide-region {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-description {
    background: linear-gradient(135deg, var(--light-bg), var(--primary-bg));
    border-top: 2px solid var(--accent-color);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Стилі для блоку "Советы путешественников" */
.travel-tips {
    background: var(--light-bg);
    position: relative;
}

.tips-timeline {
    position: relative;
}

.tips-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.tip-item {
    position: relative;
    margin-bottom: 3rem;
}

.tip-content {
    background: var(--primary-bg);
    border: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tip-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 199, 0, 0.15);
}

.tip-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.tip-left {
    text-align: right;
}

.tip-right {
    text-align: left;
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 24px;
    margin: 0 auto 1rem auto;
}

/* Стилі для блоку "Подборки маршрутов" */
.route-collections {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--warm-bg) 100%);
    position: relative;
}

.route-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.route-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 199, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.route-item:hover::before {
    left: 100%;
}

.route-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.route-number {
    background: var(--accent-color);
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.route-photo {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.route-photo img {
    transition: transform 0.4s ease;
    filter: brightness(0.95);
}

.route-photo:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.route-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(230, 199, 0, 0.2));
}

/* Стилі для блоку "Наши преимущества" */
.our-advantages {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.our-advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230, 199, 0, 0.1) 0%, transparent 70%);
}

.advantage-card {
    background: var(--primary-bg);
    border: none;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 199, 0, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 32px;
    margin: 0 auto 1.5rem auto;
}

/* Стилі для блоку "Истории из путешествий" */
.travel-stories {
    background: var(--warm-bg);
    position: relative;
}

.story-card {
    background: var(--primary-bg);
    border: none;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.story-content {
    background: linear-gradient(to bottom, var(--primary-bg), var(--light-bg));
    position: relative;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.story-quote {
    position: relative;
    font-style: italic;
    color: var(--text-light);
}

.story-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

/* Стилі для блоку "О проекте" */
.about-project {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--light-bg) 100%);
    position: relative;
}

.about-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 199, 0, 0.1) 0%, rgba(10, 7, 0, 0.1) 100%);
    z-index: 1;
}

.about-image img {
    transition: transform 0.5s ease;
    border-radius: 20px;
}

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

.about-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Стилі для блоку "Наш подход" */
.our-approach {
    background: var(--warm-bg);
    position: relative;
}

.approach-intro {
    background: var(--primary-bg);
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.principle-item {
    background: linear-gradient(135deg, var(--primary-bg), #fafafa);
    border: none;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.principle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.principle-item:hover::before {
    transform: scaleY(1);
}

.principle-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 199, 0, 0.15);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 24px;
}

/* Стилі для блоку "Подборка маршрутов" (финальный) */
.route-selection {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.route-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(230, 199, 0, 0.1) 0%, transparent 50%);
}

.selection-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.selection-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.selection-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 70%, rgba(230, 199, 0, 0.3));
}

.selection-image img {
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.selection-image:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.selection-highlight {
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Стилі для блоку "Путеводители" */
.guidebooks {
    background: var(--light-bg);
    position: relative;
}

.guidebooks::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 199, 0, 0.1) 0%, transparent 70%);
}

.guide-point {
    background: var(--primary-bg);
    border: none;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guide-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #f4d03f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.guide-point:hover::before {
    transform: scaleX(1);
}

.guide-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.guide-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 3px solid var(--primary-bg);
}

/* Стилі для блоку "Маршруты" */
.routes-section {
    background: linear-gradient(135deg, var(--warm-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.route-card-large {
    background: var(--primary-bg);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.route-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.route-image-large {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.route-image-large img {
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.route-card-large:hover .route-image-large img {
    transform: scale(1.1);
    filter: brightness(1);
}

.route-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 7, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.route-title-large {
    color: var(--primary-bg);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.route-content-large {
    background: linear-gradient(135deg, var(--primary-bg), var(--light-bg));
    border-top: 3px solid var(--accent-color);
}

/* Стилі для блоку "Советы и наблюдения" */
.tips-observations {
    background: var(--primary-bg);
    position: relative;
}

.article-card {
    background: linear-gradient(135deg, var(--light-bg), var(--primary-bg));
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.article-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(230, 199, 0, 0.15);
    border-left-width: 8px;
}

.article-number {
    background: var(--accent-color);
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.tips-photo-row {
    position: relative;
    margin: 3rem 0;
}

.tips-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.tips-photo:hover {
    transform: scale(1.03);
}

.tips-photo img {
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.tips-photo:hover img {
    filter: brightness(1);
}

/* Стилі для блоку "Бронирование жилья и билетов" */
.booking-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(230, 199, 0, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.booking-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(230, 199, 0, 0.2);
}

.booking-title {
    color: var(--dark-bg);
    position: relative;
}

.booking-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Стилі для блоку "Контактная информация" */
.contact-info-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230, 199, 0, 0.15) 0%, transparent 60%);
}

.contact-info-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(230, 199, 0, 0.2);
}

.contact-info-title {
    color: var(--text-dark);
    position: relative;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-item {
    background: linear-gradient(135deg, var(--light-bg), var(--primary-bg));
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 199, 0, 0.15);
    border-left-width: 6px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 20px;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-bg);
}

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