/*
Theme Name: Dobrohostiv Lake
Author: Volodymyr Hamivka
Description: Тема для спортивного озера Доброгостів (трофейний карпфішинг)
Version: 1.0
*/

/* Підключення шрифту */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* --- Глобальні налаштування --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1400px;   /* Ширина контенту */
    margin-left: auto;   /* Центрування */
    margin-right: auto;  /* Центрування */
    padding-left: 20px;  /* Відступ від лівого краю екрана */
    padding-right: 20px; /* Відступ від правого краю екрана */
    width: 100%;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* --- Хедер (Header) --- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 0;
    background: transparent;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    max-height: 85px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    
    letter-spacing: 1px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.main-navigation a:hover {
    opacity: 0.7;
}

/* Активний пункт меню */
.main-navigation li.current-menu-item a,
.main-navigation a.active {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
	font-weight:700;
}

/* --- Головний екран (Hero Section) --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
               
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(40px, 10vw, 90px); /* Адаптивний шрифт */
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
	color:#FFFFFF;
	text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);

}

.hero-content p {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 45px;
    font-weight: 400;
    
}

/* Кнопка */
.cta-button {
    background-color: #C75911; /* Фірмовий помаранчевий */
    color: #ffffff !important;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    text-transform: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #a3420d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* --- Секція Про водойму --- */
.about-section {
    padding: 50px 0;
    background-color: #ffffff; /* Білий фон для контрасту з головним екраном */
    color: #000000;
}

.about-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: left;
}

.about-grid {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 408px;
    border-radius: 4px;
    
}

.about-content {
    flex: 1;
}

.about-description {
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.4;
}

.about-stats {
    list-style: none;
    margin-bottom: 10px;
}

.about-stats li {
    font-size: 16px;
    margin-bottom: 1px;
    font-weight: 600;
}

.about-stats strong {
    font-weight: 400;
}

.fish-types {
    margin-bottom: 30px;
    line-height: 1.6;
}

.rules-notice {
    font-weight: 700;
    margin-bottom: 30px;
}

/* Кнопки в секції */
.about-buttons {
    display: flex;
    gap: 20px;
}
.cta-button-primary {
    padding: 4px 24px;
    border: 2px solid #C75911;
    background-color: #C75911;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
    text-align: center;
}
.cta-button-primary:hover {
    background-color: #a3460b; 
    border-color: #a3460b;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(199, 89, 17, 0.4); 
    transform: translateY(-1px); 
}

.outline-button {
    padding: 4px 24px;
    border: 2px solid #C65111;
    color: #C65111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
    transition: all 0.3s ease;
    text-align: center;
}

.outline-button:hover {
    background-color: #C75911;
    color: #fff;
}
/* --- Секція Послуги та ціни --- */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    text-align: center;
}

.service-image img {
    width: 100%;
    max-height: 351px; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.service-card {
    text-align: center;
    max-width: 350px; 
    margin: 0 auto; 
}

.service-name {
    color: #C75911;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 50px; /* Для вирівнювання заголовків */
}

.service-prices {
    margin-bottom: 12px; /* Відступ від усього блоку цін до тексту нижче */
    line-height: 1.4;    /* Щільніший інтервал між рядками */
}

.service-prices p {
    margin: 2px 0;       /* Мінімальний відступ між пн-чт та пт-нд */
    font-size: 16px;
    font-weight: 800;    /* Можна зробити текст трохи жирнішим для чіткості */
    color: #000;
}

.service-note {
    font-size: 15px;
    color: #000;
    line-height: 1.5;
}

/* Додаткова інформація */
.additional-info {
    margin-top: 50px;         /* Збільшуємо відстань від карток з цінами */
    padding-top: 40px;        /* Відступ від лінії до заголовка */
    padding-bottom: 60px;     /* Відступ знизу, щоб текст не прилипав до кінця секції */
}

.info-title {
    color: #C75911;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;      /* Відступ від заголовка до першого рядка тексту */
    text-transform: none;
}

.info-content p {
    font-size: 16px;
    margin-bottom: 4px;      /* Відступ між кожним пунктом (рядком) тексту */
    line-height: 1.6;
    color: #000;
}

/* Окремий відступ для останнього параграфа */
.info-content p:last-child {
    margin-bottom: 0;
}
/* --- Секція Календар змагань --- */
.calendar-section {
    padding: 6px 0 10px;
    background-color: #ffffff;
}

.calendar-cta-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Помаранчева тінь (glow effect) */
    box-shadow: 0 4px 20px 5px rgba(199, 89, 17, 0.30); 
    border: 1px solid rgba(199, 89, 17, 0.05);
    margin-top: 40px;
}

.calendar-content-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.calendar-promo-text {
    font-size: 32px; /* Великий шрифт як на макеті */
    font-weight: 400;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.calendar-icon svg {
    display: block;
}
/* --- Секція Контакти --- */
.contacts-section {
    padding: 80px 0 120px;
    background-color: #ffffff;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Карта трохи ширша за картку */
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

/* Стилі для карти */
.contact-map {
    height: 450px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #eee;
    z-index: 1; /* Щоб карта не перекривала меню */
}

/* Стилі для картки контактів */
.contact-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); /* М'яка тінь як на макеті */
    border: 1px solid #f9f9f9;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 24px;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.contact-item p, .contact-item a {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    margin: 0;
}

.contact-item a:hover {
    color: #C75911;
}

.working-hours {
    margin-top: 35px;
    font-weight: 700;
    color: #C75911; /* Ваш фірмовий колір */
    font-size: 18px;
    text-transform: none;
}
/* --- Футер (Footer) --- */
.site-footer {
    background-color: #1e1e1e; /* Темно-сірий фон як на макеті */
    color: #ffffff;
    padding: 60px 0 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h3, 
.footer-right h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Соцмережі */
.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icons a {
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #C75911; /* Ваш фірмовий помаранчевий */
    transform: translateY(-3px);
}

/* Копірайт */
.copyright {
    font-size: 14px;
    color: #aaaaaa;
    margin: 0;
}

/* Контакти у футері */
.footer-contact-details p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #dddddd;
}

.footer-contact-details a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-details a:hover {
    color: #ffffff;
}
/* --- Специфічні стилі для сторінки Правил --- */

.rules-page-main-wrapper {
    /* Основні налаштування фону */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important; /* Ефект, коли текст пливе над фото */
    background-position: center 20% !important;
    
    /* Розміри та відступи */
    min-height: 100vh;
    width: 100%;
    padding: 160px 0 60px; /* Великий відступ під прозорий хедер */
    box-sizing: border-box;
    display: block;
}

.rules-header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.rules-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);
    color:#FFF;

}

.rules-block {
    margin-bottom: 40px;
}

.rules-block h2 {
    color: #C75911; /* Фірмовий помаранчевий */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.rules-block ul {
    list-style: none;
    padding: 0;
}

.rules-block li {
    color: #ffffff;
    font-size: 16px;
    font-weight:400;
    line-height: 24px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

/* Іконка крапки перед пунктом */
.rules-block li::before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

.orange-text {
    color: #C75911 !important;
    font-weight: 800;
}

.last-section {
    padding-bottom: 80px;
}

/* Футер не повинен бути прозорим */
.site-footer {
    background-color: #1a1a1a;
    position: relative;
    z-index: 10;
}
/* Глобальний контейнер сторінки */
.calendar-page-main {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), 
                url('assets/images/panorama 2.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 160px 0 100px;
    color: #fff;
}

.calendar-page-title {
    text-align: center;
    font-size: 36px;
    color:#fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);
    margin-bottom: 60px;
}

.comp-list {
    max-width: 1100px;
    margin: 0 auto;
}

/* Картка змагання */
.comp-item {
    background: rgba(47, 47, 47, 0.75);
    border-radius: 5px;
    display: flex; /* Робимо контент горизонтальним */
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}


/* Сірий блок з датою */
.comp-date-box {
    background: rgba(252, 252, 252, 0.75);
     min-width: 130px;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #C75911;
    text-align: center;
}

.comp-date-box .month {
    font-size: 24px;
    font-weight: 700;
}

.comp-date-box .day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

/* Контентна частина картки */
.comp-content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between; /* Розносимо назву та інфу по краях */
    padding: 0 70px;
}

.comp-name {
    font-size: 24px;
    font-weight: 700;
    color:#FCFCFC;
    margin: 0;
    flex: 1;
}

/* Мета-інфо (іконки + текст) */
.comp-meta-info {
    display: flex;
    gap: 40px;
}

.comp-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FCFCFC;
    font-size: 16px;
}

.comp-meta-item svg {
    color: #FCFCFC;
    font-size:24px;
    flex-shrink: 0;
}

/* Кнопка внизу */
.calendar-action {
    text-align: center;
    margin-top: 50px;
}

.cta-button-orange {
    background-color: #C75911;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 00;
    font-size: 20px;
    font-weight:700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.cta-button-orange:hover {
    background-color: #a3460b; 
    border-color: #a3460b;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(199, 89, 17, 0.4); 
    transform: translateY(-1px); 
}
.gallery-page-main {
    padding: 140px 0 100px;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.gallery-page-title {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
    color:#fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);


}

/* Сітка трофеїв */
.trophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки як на макеті */
    gap: 30px;
}

.trophy-item {
    text-align: center;
}

.trophy-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; /* Зберігаємо пропорції фото */
    overflow: hidden;
    border-radius: 2px; /* Легке закруглення */
    margin-bottom: 15px;
}

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



/* Назва та опис */
.trophy-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.trophy-meta {
    font-size: 16px;
    color: #fff; /* Світло-сірий для опису */
    margin: 0;
}
.trophy-slider {
    padding: 20px 50px; /* Місце для стрілок */
    position: relative;
    overflow: hidden;
}

.trophy-item {
    text-align: center;
    height: auto;
}

.trophy-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px; /* Закруглення як на макеті */
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Стилізація стрілок Swiper */
.swiper-button-next, 
.swiper-button-prev {
    color: #C75911 !important; /* Ваш фірмовий помаранчевий */
    transform: scale(0.7);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 40px;
    font-weight: bold;
}

.trophy-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.trophy-meta {
    font-size: 15px;
    color: #aaaaaa;
    margin: 0;
}
/* --- ІНТЕРАКТИВНА МАПА --- */

.map-page-main {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('assets/images/panorama 2.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 160px 0 100px;
    color: #fff;
    overflow-x: hidden;
}

.map-page-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.map-page-header h1 {
    font-size: 36px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);
    color:#FCFCFC;
    font-weight: 700;
    margin-bottom: 20px;
}

.map-page-header p {
    font-size: 20px;
    line-height: 1.6;
    color: #FCFCFC;
    font-weight:400;
}

/* 1. КОНТЕЙНЕР = РОЗМІР МАПИ */
.lake-interactive-container {
    position: relative;
    width: 70%;           /* Тепер САМ КОНТЕЙНЕР має ширину 70% */
    max-width: 1000px;    /* Обмеження для десктопа */
    margin: 40px auto;    /* Центруємо весь блок на сторінці */
    line-height: 0;       /* ВАЖЛИВО: видаляє відступ під картинкою */
    border-radius: 15px;
}

/* 2. КАРТИНКА ЗАПОВНЮЄ КОНТЕЙНЕР ПОВНІСТЮ */
.lake-map-img {
    width: 100% !important; /* Тепер вона завжди 100% від батька */
    height: auto !important;
    display: block;
    margin: 0 !important;   /* Прибираємо маргіни тут */
    user-select: none;
}

/* 3. МАРКЕР (РОМБ) */
.map-marker-point {
    position: absolute;
    z-index: 10;
    /* translate(-50%, -50%) гарантує, що точка кріплення — центр ромба */
    transform: translate(-50%, -50%); 
    cursor: pointer;
}
.map-marker-point:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.marker-diamond {
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 1px solid #C75911;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.marker-diamond span {
    transform: rotate(-45deg); /* Повертаємо цифру назад */
    color: #000;
    font-weight: 800;
    font-size: 13px;
}

/* Попап (Overlay) */
.map-sector-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.map-sector-overlay.is-active {
    display: flex;
}

/* Картка попапу */
.map-popup-card {
    background: #242424;
    padding: 40px;
    border-radius: 25px;
    width: 380px;
    position: relative;
    border: 1px solid #C75911;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.popup-close {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
}

.popup-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
    text-align: center
}

.popup-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn-orange {
    background: #C75911;
    color: #fff !important;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.popup-btn-outline {
    border: 2px solid #C75911;
    color: #fff !important;
    text-decoration: none;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #242424
}

.popup-btn-orange:hover { background: #e66a1a; }
/* Модалка для панорами */
.pano-full-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pano-full-overlay.is-active {
    display: flex;
}

.pano-modal-content {
    width: 90%;
    max-width: 1200px;
    background: #1a1a1a;
    border: 1px solid #C75911;
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.pano-close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

#pano-title {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

/* Контейнер самого плеєра */
#pano-container {
    width: 100%;
    height: 60vh; /* Висота плеєра */
    background: #000;
    border-radius: 10px;
}

/* Виправлення кнопки (щоб не виглядала як посилання) */
.popup-btn-orange {
    border: none;
    cursor: pointer;
    width: 100%;
}
/* 2. Окремі стилі для фото-орієнтирів (Фікс висоти) */
.landmark-content {
    max-width: 900px !important; /* Робимо вікно трохи вужчим для фото */
}

.landmark-image-container {
    width: 100%;
    height: auto !important;     /* Прибираємо фіксовані 500px */
    max-height: 70vh;            /* Обмежуємо висоту до 70% екрана */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#landmark-img-target {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;         /* Фото не обрізається, а вписується */
    display: block;
}
h3#landmark-title{
    color:#fff;
}
/* --- СТОРІНКА КОНТАКТИ --- */

/* --- СТОРІНКА КОНТАКТИ (LEAFLET) --- */

.contactss-section {
    padding: 140px 0 100px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),  
                url('assets/images/panorama 2.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.contacts-title {
    color: #FCFCFC;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.contacts-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
}

/* Контейнер для Leaflet мапи */
.contacts-map-container {
    width: 550px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(199, 89, 17, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

#contacts-leaflet-map {
    width: 100%;
    height: 100%;
    z-index: 1; /* Щоб не перекривало меню */
}

/* Інформаційний блок */
.contacts-info {
    max-width: 450px;
}

.info-list {
    display: flex;
    flex-direction: column;
    
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.info-text p, .info-text a {
    font-size: 19px;
    color: #fff;
    line-height: 1.4;
}

.working-hours-label {
   
    font-size: 22px;
    font-weight: 700;
    color: #C75911; /* Помаранчевий акцент */
}

/* Адаптивність для мобільних */
@media (max-width: 991px) {
    .contacts-grid {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .contacts-map-container {
        width: 100%;
        height: 300px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }
}
/* Адаптивність */
/* --- АДАПТИВНА МАПА З БОКОВИМ СКРОЛОМ --- */

@media (max-width: 768px) {
    /* 1. Обгортка, яка дозволяє скрол тільки для мапи */
    .map-scroll-wrapper {
        width: 100vw;           /* Ширина на весь екран телефону */
        overflow-x: auto;       /* Вмикаємо горизонтальну прокрутку */
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Плавний скрол на iPhone */
        margin-left: -20px;     /* Компенсація відступів контейнера Astra, якщо є */
        margin-right: -20px;
        padding-bottom: 20px;   /* Місце для смуги прокрутки */
    }

    /* 2. Сама мапа стає набагато ширшою за екран */
    .lake-interactive-container {
        width: 160% !important; /* Як ви і хотіли */
        margin: 0 !important;   /* Прибираємо центрування, щоб початок був зліва */
        position: relative;
        line-height: 0;
    }

    .lake-map-img {
        width: 100% !important; /* Картинка заповнює всі 160% ширини батька */
        max-width: none !important;
        height: auto;
    }

    /* 3. Ваші налаштування для маркерів */
    .marker-diamond {
        width: 22px !important;
        height: 22px !important;
    }

    .marker-diamond span {
        font-size: 12px !important;
    }

    /* 4. ГРИД (Трофеї) */
    .trophy-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .trophy-grid { grid-template-columns: 1fr; }
}

/* Адаптація для мобільних */
@media (max-width: 992px) {
    .comp-item {
        flex-direction: column;
    }
    .comp-date-box {
        width: 100%;
        padding: 15px;
        flex-direction: row;
        gap: 15px;
    }
    .comp-content {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .comp-meta-info {
        flex-direction: column;
        gap: 10px;
    }
}
/* --- СТИЛІ ХЕДЕРА --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* --- МОБІЛЬНИЙ БУРГЕР --- */
.mobile-burger-btn {
    display: none; /* Сховано на великих екранах */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.mobile-burger-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

/* --- ФІКСОВАНИЙ ДИЗАЙН МОБІЛЬНОГО МЕНЮ --- */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Напівпрозорий фон зліва */
    z-index: 99999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.is-active {
    right: 0 !important;
}

.mobile-menu-content {
    width: 215px !important; /* Ширина панелі */
    height: 360px !important;
    background: #2b2d2f !important; /* Темний фон як на макеті */
    margin-top: 5vh;
    border-radius: 10px 0 0 35px !important; /* Велике заокруглення зліва */
    padding:30px !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Вирівнювання всього контенту вправо */
    box-shadow: -15px 0 35px rgba(0,0,0,0.4);
}

/* Напис "Menu" зверху */
.menu-label {
    display: none;
    font-size: 18px !important;
}
/* Посилання в меню */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
    margin-top: 15px;
}

.mobile-nav-links a {
    color: #ffffff !important; /* Білий колір посилань */
    text-decoration: none !important;
    font-size: 16px !important; /* Великий шрифт як на макеті */
    font-weight: 500 !important;
    text-align: right;
    transition: opacity 0.3s;
    font-family: 'Montserrat', sans-serif !important;
}

.mobile-nav-links a:hover {
    opacity: 0.7;
}


/* Кнопка закрити (Х) */
.close-mobile-menu {
    position: absolute;
    top: 5px;
    right: 40px;
    margin-bottom: 15px;
    font-size: 40px !important;
    color: #ffffff !important;
    line-height: 1;
    cursor: pointer;
}

/* Логотип в меню */
.mobile-menu-logo {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    
}

.mobile-menu-logo img {
    max-width: 160px !important;
    height: auto !important;
}
/* --- RECORDS PAGE STYLES --- */

.records-page {
    padding: 120px 0 80px;
    /* Додаємо фото водойми з темним накладанням */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), 
                url('assets/images/panorama 2.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
}

.records-main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
	margin-top:30px;
    color: #fff;
}

/* Сітка 4 колонки */
.records-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.record-card {
    background: #181818;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.record-card:hover {
    transform: translateY(-8px);
    border-color: #C75911;
}

/* Зображення */
.record-image-box {
    position: relative;
    height: 200px;
}

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

.sector-label {
    position: absolute;
    top: 15px; left: 15px;
    background: #C75911;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px; font-weight: 700;
}

.weight-overlay {
    position: absolute;
    bottom: 15px; right: 15px;
    background: rgba(0,0,0,0.7);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 20px;
}

/* Інфо блок */
.record-info { padding: 25px; }

.fish-type {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.record-meta { margin-bottom: 25px; }

.meta-line {
    display: flex; align-items: center; gap: 10px;
    color: #bbb; font-size: 14px; margin-bottom: 10px;
}

/* Кнопка */
.btn-view-gallery {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #C75911; color: #fff; text-decoration: none;
    padding: 12px; border-radius: 50px; font-weight: 700;
    transition: 0.3s;
}

.btn-view-gallery:hover { background: #e06a1a;color: #fff; }

/* Пагінація */
.pagination-wrapper {
    margin-top: 60px;
    display: flex; justify-content: center; gap: 10px;
}

.pagination-wrapper .page-numbers {
    padding: 10px 18px; background: #181818;
    color: #fff; border-radius: 8px; text-decoration: none;
    border: 1px solid rgba(199, 89, 17, 0.2);
}

.pagination-wrapper .current { background: #C75911; border-color: #C75911; }

/* Адаптивність */
@media (max-width: 1200px) { .records-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .records-grid { grid-template-columns: 1fr; } }

/* Бургер-кнопка в хедері (вирівнювання) */
@media (max-width: 991px) {
    .site-header .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
/* --- АДАПТИВНІСТЬ (МАКСИМУМ 991px) --- */
@media (max-width: 991px) {
    /* 1. Ховаємо основне меню */
    .main-navigation {
        display: none !important;
    }

    /* 2. Показуємо бургер */
    .mobile-burger-btn {
        display: flex;
    }

    /* Коригуємо лого для мобільних якщо треба */
    .logo img {
        max-width: 150px;
    }
}

/* Показуємо бургер тільки на мобільних */
@media (max-width: 991px) {
    .mobile-burger-btn { display: flex; }
    .desktop-nav { display: none; } /* Ховаємо основне меню */
}
/* 9. Адаптивність для мобільних пристроїв */
@media (max-width: 992px) {
    .comp-item {
        flex-direction: column;
        text-align: center;
    }
    
    .comp-date-box {
        width: 100%;
        flex-direction: row;
        gap: 15px;
        padding: 15px;
    }
    
    .comp-name {
        padding: 20px;
        font-size: 20px;
    }
    
    .comp-meta-info {
        flex-direction: column;
        gap: 15px;
        padding: 0 0 25px 0;
        align-items: center;
    }
}
/* Адаптивність */
@media (max-width: 768px) {
    .rules-hero h1 { font-size: 32px; }
    .rules-block h2 { font-size: 24px; }
}
/* Адаптивність */
@media (max-width: 768px) {
    .rules-page-main-wrapper {
        padding-top: 100px;
        background-attachment: scroll; /* Краще для мобільних */
    }
    .rules-header-content h1 { font-size: 28px; }
    .rules-block h2 { font-size: 24px; }
}

/* Адаптивність */
@media (max-width: 768px) {
    .rules-hero h1 { font-size: 32px; }
    .rules-block h2 { font-size: 24px; }
}
/* Адаптивність */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    
    .social-icons {
        margin-bottom: 30px;
    }
}

/* Адаптивність */
@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        height: 350px;
        order: 2; /* Карта під текстом на мобільних */
    }
    .contact-card {
        padding: 30px;
        order: 1;
    }
}

/* Адаптивність для мобільних */
@media (max-width: 992px) {
    .calendar-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 35px;
    }
    
    .calendar-content-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .calendar-promo-text {
        font-size: 24px;
    }
}
/* Адаптивність */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобільних */
        gap: 50px;
    }
}

/* Адаптивність */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
    }
    .about-image, .about-content {
        flex: none;
        width: 100%;
    }
    .about-buttons {
        flex-direction: column;
    }
}
/* --- Адаптивність (Mobile) --- */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    .main-navigation {
        display: none; /* Тут пізніше додамо бургер-меню */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        letter-spacing: 0.05em;

    }
    .hero-content p {
        font-size: 20px;
    }
    .cta-button {
        padding: 12px 32px;
        font-size: 16px;
    }
    .about-image{
        display: none;
    }
}