/* ===== БАЗА ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    color: #222;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Контейнер для внутренних секций */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HERO / КАРУСЕЛЬ ===== */
.site-header {
    position: relative;
}

/* Всё окно браузера */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #ffffff;
}

/* Каждый слайд */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > picture {
    width: 100%;
    height: 100%;
}

.hero-slide > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Полупрозрачный слой поверх картинки */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35));
}

/* Внутреннее содержимое поверх фона */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    /* flex-direction: column;  */ /*  Сейчас текст по центру Но вообще задумка была чтобы он был внизу Но если эту строку раз комментировать то на втором и третьем слайде нормально а на первом нет */
    justify-content: space-between;
    padding: 1.2rem 1.5rem 3.5rem;
    z-index: 2;
}

/* ===== НАВИГАЦИЯ ===== */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    position: relative;
    z-index: 3;
}

.hero-slider > .main-nav {
    padding: 1.2rem 1.5rem 0;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    text-align: center;
}

.nav-logo-img {
    height: 48px;
    margin-bottom: 0.35rem;
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    font-weight: 600;
    font-size: 0.8rem;
}

.nav-logo-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Кнопка-бургер */
.nav-toggle {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    width: 44px;
    height: 36px;
    padding: 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКА ===== */
.lang-switcher {
    position: absolute;
    right: 1.5rem;
    top: 0.8rem;
    z-index: 4;
    font-size: 0.7rem;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

.lang-current-icon {
    font-size: 0.6rem;
    transform: translateY(1px);
}

.lang-options {
    position: absolute;
    right: 0;
    margin-top: 0.25rem;
    padding: 0.25rem 0;
    list-style: none;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    min-width: 3.2rem;
}

.lang-switcher.is-open .lang-options {
    display: block;
}

.lang-option {
    width: 100%;
    padding: 0.2rem 0.75rem;
    background: transparent;
    border: none;
    text-align: left;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.7rem;
    white-space: nowrap;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.lang-option.is-active {
    font-weight: 600;
}


/* ===== ТЕКСТ СТИХА / АНИМАЦИЯ ===== */
.hero-text {
    margin: 0 auto;
    max-width: 46rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem 3rem;
}

.hero-title {
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.hero-verse {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(-30px);
}

.hero-verse-ref {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(-20px);
}

/* Анимация "опускается сверху" при активном слайде */
.hero-slide.is-active .hero-verse {
    animation: heroTextIn 0.9s ease-out forwards;
}

.hero-slide.is-active .hero-verse-ref {
    animation: heroTextIn 0.9s ease-out 0.1s forwards;
}

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

/* ===== ТОЧКИ-СЛАЙДЕР ===== */
.hero-dots {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.hero-dot.is-active {
    background-color: #ffffff;
}

/* ===== БЛОК "НОВОСТИ И СОБЫТИЯ" ===== */
.section-news {
    background-color: #f7f1e7;
    padding: 3rem 0 4rem;
}

.section-kicker {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    margin: 0 0 0.75rem;
    color: #996c3d;
}

.section-title {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    margin: 0 0 1.5rem;
}

.section-placeholder {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
    color: #555;
    font-size: 0.95rem;
}

/* ===== АДАПТИВ (mobile-first) ===== */
/* Планшеты и телефоны: используем бургер-меню */
@media (max-width: 1024px) {
    .main-nav {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.75rem 1.5rem 0;
        gap: 0.5rem;
    }

    .nav-logo {
        margin: 0 auto;
        padding: 0;
    }

    .nav-links {
        display: none;
        position: static;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem 1.25rem;
        margin: 0.5rem 0 0;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .main-nav.is-open .nav-links {
        display: flex;
    }

    .nav-right {
        margin-top: 0.35rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-toggle {
        display: flex;
    }

    /* Переключатель языка рядом с бургером,
       но не впритык к самому краю */
    .lang-switcher {
        position: absolute;
        right: 5.5rem;
        top: 0.6rem;
    }
}

/* Совсем узкие экраны — дополнительно уменьшаем текст и отступы */
@media (max-width: 768px) {
    .hero-content {
        position: absolute;
        inset: 0;
        display: flex;
        /* flex-direction: column; */
        justify-content: flex-end;
        padding: 1.2rem 1.5rem 3.5rem;
        z-index: 2;
    }


    .hero-title {
        letter-spacing: 0.12em;
    }

    .hero-verse {
        font-size: 1.6rem;
    }

    .hero-dots {
        left: auto;
        right: 0.9rem;
    }

    .lang-switcher {
        top: 3.3rem;
        right: 1rem;
    }
}

/* Настоящий десктоп: полноценное меню слева/по центру/справа */
@media (min-width: 1025px) {
    .nav-left {
        margin-right: 2rem;
    }

    .nav-right {
        margin-left: 2rem;
    }
}

@media (min-width: 769px) {
    .nav-left {
        margin-right: 2rem;
    }

    .nav-right {
        margin-left: 2rem;
    }
}

/* ===== СЕКЦИЯ "НАШ ДОМ МОЛИТВЫ / АДРЕС" ===== */
.section-location {
    /* padding: 4rem 0; */
    position: relative;
}

/* Фоновое изображение во всю ширину */
.section-location-bg {
    position: relative;
    padding: 4rem 0;
    background-image: url("../img/location-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Белый полупрозрачный слой поверх фона */
.section-location-bg::before {
    content: "";
    position: absolute;
    inset: 0; /* то же самое, что top:0; right:0; bottom:0; left:0; */
    background: rgba(255, 255, 255, 0.35); /* степень «затемнения»/осветления */
    pointer-events: none;
}

/* Белая карточка в центре */
.location-card {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* ===== АНИМАЦИЯ ПОЯВЛЕНИЯ БЛОКА АДРЕСА ПРИ СКРОЛЛЕ ===== */

/* Начальное состояние: блоки немного ниже и прозрачные */
.location-photo,
.location-content {
    opacity: 0;
    transform: translateY(40px); /* фото и текст чуть ниже своего места */
    transition:
        transform 0.9s ease-out,
        opacity 0.9s ease-out;
}

/* Когда секция попала в область видимости, добавляем класс .is-visible */
.section-location-bg.is-visible .location-photo {
    opacity: 1;
    transform: translateY(0);
}

/* Текст идёт с небольшой задержкой и более коротким смещением */
.section-location-bg.is-visible .location-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s; /* легкая задержка относительно фото */
}


/* Левая часть: круглая фотография */
.location-photo {
    display: flex;
    justify-content: center;
}

.location-photo-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.location-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Правая часть: текст и кнопка */
.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-btn {
    align-self: center;
}

/* Значок "место" над заголовком */
.location-pin {
    margin-bottom: 0.8rem;
}

.location-pin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* border: 2px solid #e1d2bd; */
    font-size: 1.2rem;
}

.location-pin-icon img {
    width: 65px;
}

/* Заголовок и тексты */
.location-title {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    margin: 0 0 1rem;
}

.location-lead {
    margin: 0 0 1.2rem;
    font-size: 0.98rem;
    color: #555;
}

.location-address {
    margin: 0 0 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8a6235;
    white-space: pre-line;
}

/* Кнопка "Мы на карте" */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #A23B3B;
    color: #ffffff;
}

.btn-primary:hover {
    filter: brightness(1.08);
    background-color: #832F2F;
}

/* ===== АДАПТИВ ДЛЯ СЕКЦИИ АДРЕСА ===== */
/* Десктоп: картинка слева, текст справа */
@media (min-width: 900px) {
    .location-card {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .location-photo {
        flex: 0 0 auto;
    }

    .location-content {
        flex: 1 1 auto;
    }
}

/* Мобильные: всё в колонку, чуть меньше отступы и круг */
@media (max-width: 768px) {
    .section-location-bg {
        padding: 3rem 0;
    }

    .location-card {
        padding: 1.8rem 1.5rem;
    }

    .location-photo-circle {
        width: 210px;
        height: 210px;
        border-width: 8px;
    }

    .location-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .location-lead,
    .location-address {
        text-align: center;
    }

    .location-content {
        align-items: center;
        text-align: center;
    }

}

/* ===== ФУТЕР ===== */
.site-footer {
    background-color: #f7f1e7;
    padding: 2.5rem 0;
    text-align: center;
    /* margin-top: 3rem; */
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
}

/* Логотип и текст */
.footer-logo-img{
    width: 25px;
}

.footer-logo {
    height: 55px;
    filter: brightness(0) invert(0.15);
    margin-bottom: 0.5rem;
}

.footer-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.footer-subtitle {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* Копирайт */
.footer-info {
    font-size: 0.85rem;
    color: #555;
}

/* Соцсети */
.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    font-size: 0.85rem;
    color: #8a6235;
    font-weight: 600;
}

.footer-social-link:hover {
    text-decoration: underline;
}

.footer-logo-block{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== АДАПТИВ ===== */
@media (min-width: 900px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}
