/* ==========================================================================
   1. ОБЩИЕ НАСТРОЙКИ И СБРОС (RESET)
   ========================================================================== */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ==========================================================================
   2. ХЕДЕР (ШАПКА САЙТА)
   ========================================================================== */
.site-header {
    background-color: #ecf3f4; /* Светлый серо-голубой фон */
    padding: 20px 0 15px 0;
    font-family: 'Montserrat', sans-serif;
}
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Верхняя строка хедера */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
/* Соцсети (Слева) */
.header-socials {
    display: flex;
    gap: 18px;
    width: 25%;
}
.social-link {
    color: #111;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}
.social-link:hover {
    color: #d83b01; /* Фирменный оранжевый */
}
/* Логотип (Центр) */
.header-logo {
    display: flex;
    justify-content: center;
    width: 50%;
    /* Сдвигаем внутреннее содержимое блока вправо,
       чтобы компенсировать левый блок контактов */
    transform: translateX(65px);
}

.header-logo img {
    max-height: 45px;
    height: auto;
    display: block;
}
/* Кнопки действий (Справа) */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 25%;
}
.action-btn {
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}
/* Корзина */
.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-total {
    color: #d83b01;
    font-weight: 600;
    font-size: 15px;
}
.cart-btn {
    position: relative;
    color: #d83b01;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #d83b01;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Нижняя строка: Меню */
.header-nav {
    display: flex;
    justify-content: center;
}
.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}
.menu-item {
    text-decoration: none;
    color: #4a5568;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.menu-item:hover, .menu-item.active {
    color: #111;
}
/* ==========================================================================
   3. HERO-СЕКЦИЯ (ГЛАВНЫЙ ЭКРАН)
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: #ecf3f4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
}
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
/* Колонки */
.hero-col {
    flex: 1;
}
/* Левая колонка (Имя) */
.hero-left {
    text-align: right;
    padding-right: 40px;
}
.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
/* Центральная колонка (Картина) */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 420px;
}
/* Общий блок-изолятор для картины и кнопки */
.painting-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
/* Рамка картины */
.painting-frame {
    background: #1a1a1a;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: inline-block;
}
.painting-frame img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Кнопка Explore More под картиной */
.explore-more {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px; /* Четкий отступ от низа рамки */
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #5c2c16; /* Фирменный коричневый */
    text-decoration: none;
    letter-spacing: 1.5px;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.explore-more svg {
    transition: transform 0.2s ease;
}
.explore-more:hover {
    color: #d83b01; /* Переключается на оранжевый */
}
.explore-more:hover svg {
    transform: translateY(3px); /* Стрелочка плавно двигается вниз */
}
/* Правая колонка (Текст описания) */
.hero-right {
    padding-left: 50px;
}
.hero-divider {
    width: 40px;
    height: 1px;
    background-color: #d83b01;
    margin-bottom: 25px;
}
.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 320px;
    margin: 0;
}
/* ==========================================================================
   5. АДАПТИВНОСТЬ (МОБИЛЬНАЯ ВЕРСИЯ)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .hero-left {
        text-align: center;
        padding: 0;
    }
    .hero-right {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-section {
        min-height: auto;
    }
    .floating-actions {
        display: none; /* Скрываем плавающие виджеты на мобильных */
    }
}
/* ==========================================================================
   6. СЕКЦИЯ С ВОЛНОЙ (ENERGY SECTION)
   ========================================================================== */
.energy-section {
    position: relative;
    background-color: #ecf3f4; /* Общий фон сайта */
    /* Подключаем картинку-волну. Проверь её расширение (svg, png) */
    background-image: url('../img/gradient-line-bg.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 100px 0 80px 0;
}
.energy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Контентная область */
.energy-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 80px;
}
.energy-title {
    font-family: 'Fraunces', serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 40px;
}
/* Ограничиваем ширину текста и смещаем blocks */
.energy-text-wrap {
    max-width: 600px;
    margin: 0 auto;
    text-align: left; /* Текст выровнен по левому краю внутри центрального контейнера */
}
.energy-text-wrap p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}
/* Кнопка Read More */
.read-more-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a1a1a; /* Линия под кнопкой */
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.read-more-btn:hover {
    color: #d83b01;
    border-color: #d83b01;
}
/* Блок статистики снизу */
.energy-stats {
    display: flex;
    justify-content: center;
    gap: 80px; /* Расстояние между счетчиками */
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.06); /* Едва заметная разделительная линия сверху */
    padding-top: 50px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Цвета иконок как на макете */
.stat-icon {
    font-size: 28px;
}
.stat-icon.instagram { color: #d83b01; } /* Оранжево-красный */
.stat-icon.tumblr { color: #cc5200; }    /* Чуть темнее */
.stat-icon.facebook { color: #d83b01; }  /* В тон первому */
.stat-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}
.stat-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #555;
    margin: 4px 0 0 0;
}
/* Адаптивность под мобилки */
@media (max-width: 768px) {
    .energy-title { font-size: 32px; }
    .energy-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .energy-section {
        background-size: cover; /* На мобильных волна растянется вовнутрь */
    }
}
/* Вертикальная линия-разделитель между секциями */
.section-divider {
    width: 1px;
    height: 45px;                 /* Длина линии как на макете */
    background-color: #d83b01;    /* Фирменный оранжево-красный цвет */
    margin: -30px auto 40px auto; /* Отрицательный маргин сверху слегка подтягивает её к кнопке */
}
/* ==========================================================================
   7. СЕКЦИЯ С ВИДЕО (VIDEO SECTION)
   ========================================================================== */
.video-section {
    background-color: #ecf3f4;
    padding: 60px 0 80px 0;
}

.video-container {
    max-width: 1200px; /* Растягиваем контейнер секции */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Обертка теперь гораздо шире */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1160px; /* Почти во всю ширину контента сайта */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    background-color: #000; /* Черный фон, пока грузится видео */
    overflow: hidden;
}

/* Настройки тега video */
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Кнопка Play */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.play-btn svg {
    margin-left: 6px;
    width: 36px;
    height: 36px;
}

.video-wrapper.is-playing .play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Подпись под видео */
.video-caption {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 0 0;
    text-align: center;
}

@media (max-width: 768px) {
    .play-btn {
        width: 65px;
        height: 65px;
    }
    .play-btn svg {
        width: 26px;
        height: 26px;
    }
    .video-caption {
        font-size: 28px;
    }
}
/* ==========================================================================
   8. СЕКЦИЯ ВЫСТАВОК (UPCOMING EXHIBITIONS) — БЕЗ ЛИНИИ
   ========================================================================== */
.exhibitions-section {
    position: relative;
    /* Светлый прозрачный оверлей поверх картинки */
    background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url('../img/exhibition-bg-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0 140px 0;
    z-index: 1;
}
.exhibitions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Шапка секции */
.exhibitions-header {
    text-align: center;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Сама плашка с заголовком без всяких лишних линий */
.exhibitions-main-title {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}
.exhibitions-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}
/* Сетка карточек со свисанием вниз */
.exhibitions-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: -240px;
    position: relative;
    z-index: 2;
}
/* Стили самой карточки */
.exhibit-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exhibit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
/* Контейнер картинки */
.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Текстовый контент внутри карточки */
.card-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
/* Дата проведения */
.card-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #cc5200;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
/* Заголовок выставки */
.card-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}
/* Описание */
.card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
/* Ссылка READ MORE */
.card-link {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}
.card-link:hover {
    color: #cc5200;
    border-color: #cc5200;
}
/* Адаптировано под мобильные */
@media (max-width: 992px) {
    .exhibitions-grid {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 0;
    }
    .exhibitions-section {
        padding-bottom: 80px;
    }
    .exhibitions-main-title {
        font-size: 36px;
    }
}
/* ==========================================================================
   9. СЕКЦИЯ ОТЗЫВОВ (TESTIMONIAL SECTION)
   ========================================================================== */
.testimonial-section {
    background-color: #ecf3f4;
    /* Увеличили верх до 220px, чтобы кавычки ушли ниже белых карточек */
    padding: 220px 0 120px 0;
    text-align: center;

    /* Дополнительно раздвигаем границы между секциями */
    margin-top: 120px;
}

.testimonial-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Иконка кавычек */
.testimonial-quote-icon {
    margin-bottom: 35px;
    display: inline-flex;
    justify-content: center;
}
/* Стили большой цитаты */
.testimonial-text {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}
/* Блок автора */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Имя */
.author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* Профессия / роль */
.author-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .testimonial-section {
        padding: 80px 0 80px 0;
    }
    .testimonial-text {
        font-size: 30px;
        margin-bottom: 30px;
    }
}
/* ==========================================================================
   10. СЕКЦИЯ LEARN PAINTING — ФИКСИРОВАННЫЙ ГРАДИЕНТ И ВЕРТИКАЛЬНЫЕ ВЫЛЕТЫ
   ========================================================================== */
.learn-section {
    background-color: #ecf3f4;
    padding: 140px 0;
}
/* Главная карточка-подложка — Увеличили высоту */
.learn-card-box {
    position: relative;
    background-color: #ffffff;
    border: 15px solid #e2e9ea;
    max-width: 1100px;
    height: 460px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 100px;
}
/* Градиентная клякса — СТРОГО ВНУТРИ КВАДРАТА */
.learn-blob {
    position: absolute;
    left: 0;
    top: 15px;
    height: calc(100% - 30px);
    width: 50%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}
/* Обертка для фото — Выносим всю рамку целиком вверх и вниз */
.learn-image-wrapper {
    position: absolute;
    left: 110px;
    top: -135px;
    height: calc(100% + 200px);
    width: auto;
    z-index: 10;
}
/* Сама картинка внутри — сохраняет свои родные пропорции, как на макете */
.learn-image-wrapper img {
    height: 100%;
    width: auto;
    display: block;
}
/* Текстовый блок */
.learn-text-content {
    max-width: 440px;
    position: relative;
    z-index: 5;
}
.learn-title {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}
.learn-descr {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 30px 0;
}
.learn-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 2px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.learn-btn:hover {
    color: #cc5200;
    border-color: #cc5200;
}
/* Мобильный адаптив */
@media (max-width: 992px) {
    .learn-card-box {
        height: auto;
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
        margin-top: 60px;
    }
    .learn-image-wrapper {
        position: relative;
        left: auto;
        top: -80px;
        bottom: auto;
        margin: 0 auto;
        width: 260px;
        height: 340px;
    }
    .learn-blob {
        display: none;
    }
    .learn-text-content {
        text-align: center;
        margin-top: -40px;
    }
}
/* ==========================================================================
   11. СЕКЦИЯ LATEST ARTWORK
   ========================================================================== */
.artwork-section {
    padding: 80px 0;
    background-color: #f4f7f8; /* Фоновый цвет всей страницы */
}
.artwork-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Шапка секции с заголовком и кнопкой VIEW ALL */
.artwork-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.artwork-header-left h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.artwork-header-left p {
    color: #666;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.5;
}
.view-all-btn {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Сетка для 4 карточек */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ровно 4 одинаковые колонки */
    gap: 30px; /* Расстояние между карточками */
}
/* Сама карточка товара */
.artwork-card {
    display: flex;
    flex-direction: column;
}
/* Контейнер для картинки (задаем фиксированные пропорции) */
.artwork-img-box {
    width: 100%;
    height: 380px; /* Высота изображений картин */
    overflow: hidden;
    margin-bottom: 15px;
}
.artwork-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Чтобы картинки не сжимались, а красиво заполняли блок */
}
/* Блок с текстовой информацией под картинкой */
.artwork-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.artwork-category {
    font-size: 13px;
    color: #999;
}
.artwork-title {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
}
.artwork-price {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}
/* Кнопка ADD TO CART */
.add-to-cart-btn {
    align-self: flex-start;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* ==========================================================================
   12. СЕКЦИЯ ПОДПИСКИ (SUBSCRIBE)
   ========================================================================= */
/* Секция подписки — Тени СВЕРХУ и СНИЗУ всей секции (по стрелкам на макете) */
/* Секция подписки — Тени падают СВЕРХУ ВВЕРХ и СНИЗУ ВНИЗ */
.subscribe-section {
    position: relative;
    background-color: #ecf3f4;
    padding: 100px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Первая тень уходит строго вверх (-15px), вторая — строго вниз (15px) */
    box-shadow: 0 -15px 15px -10px rgba(0, 0, 0, 0.08),
    0 15px 15px -10px rgba(0, 0, 0, 0.08);
    /* Поднимаем z-index, чтобы тени легли ПОВЕРХ соседних белых секций */
    z-index: 2;
}
/* Огромная фоновая клякса на заднем плане */
/* Фоновая волна — На всю ширину экрана, без зазоров слева и справа */
.subscribe-blob {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    max-height: 140%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}
/* Контейнер для центрирования белого поля */
.subscribe-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 5; /* Поверх фоновой кляксы */
    display: flex;
    justify-content: center;
}
/* Белая карточка — Чистая, без теней, как на макете */
.subscribe-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 900px;
    padding: 60px 40px;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
/* Стили контента внутри карточки */
.subscribe-icon {
    margin-bottom: 25px;
}
.subscribe-title {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}
.subscribe-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    max-width: 650px;
    margin: 0 0 35px 0;
}
/* Блок формы и инпутов */
.subscribe-form {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.subscribe-input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    box-sizing: border-box;
    outline: none;
}
.subscribe-btn {
    width: auto;
    min-width: 140px;
    height: 45px;
    background-color: #d83b01;
    color: #ffffff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.subscribe-btn:hover {
    background-color: #ba3200;
}
/* Адаптив для мобилок */
@media (max-width: 768px) {
    .subscribe-title {
        font-size: 28px;
    }
    .subscribe-card {
        padding: 40px 20px;
    }
    .subscribe-blob {
        display: none;
    }
}
/* ==========================================================================
   13. ФУТЕР (FOOTER)
   ========================================================================== */
.main-footer {
    background-color: #ecf3f4; /* Такой же светлый фон, как на макете */
    padding: 60px 0 30px 0;
    font-family: 'Montserrat', sans-serif;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Центральный блок с лого, меню и иконками */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06); /* Легкая разделительная черта */
    padding-bottom: 40px;
}
/* Стили рукописного логотипа */
.footer-logo h2 {
    font-family: 'Mrs Saint Delafield', 'Caveat', cursive, sans-serif; /* Подключаем рукописный шрифт */
    font-size: 46px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}
/* Ссылки навигации */
.footer-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav a {
    text-decoration: none;
    color: #555555;
    font-size: 15px;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #1a1a1a;
}
/* Блок иконок соцсетей */
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: #1a1a1a;
    transition: transform 0.2s, color 0.2s;
}
.footer-socials a:hover {
    transform: translateY(-2px);
    color: #555555;
}
/* Нижняя строка: копирайт разносим по бокам */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    font-size: 13px;
    color: #777777;
}
.footer-bottom p {
    margin: 0;
}
/* Минорный адаптив */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .footer-nav {
        gap: 15px;
    }
}
/* ==========================================================================
   14. СЕКЦИЯ ABOUT HERO (СТРАНИЦА ABOUT)
   ========================================================================== */
.about-hero-section {
    background-color: #ecf3f4; /* Наш фирменный светлый фон */
    padding: 60px 0 100px 0;
    font-family: 'Montserrat', sans-serif;
}
.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем абсолютно всё внутри контейнера */
}
/* Декоративная оранжевая линия сверху */
.about-top-line {
    width: 2px;
    height: 40px;
    background-color: #d83b01; /* Тот самый оранжево-красный акцент */
    margin-bottom: 20px;
}
/* Главный заголовок About */
.about-main-title {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 50px 0;
    text-align: center;
}
/* Контейнер для большой картинки — Фиксированные размеры 1200х640 */
.about-image-box {
    width: 100%;
    max-width: 1200px;            /* Растягиваем блок до 1200px */
    height: 640px;                /* Жестко задаем высоту 640px */
    overflow: hidden;             /* Обрезаем всё, что не помещается */
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
/* Сама картинка внутри контейнера */
.about-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;            /* Кадрирует фото по центру, сохраняя пропорции без искажений */
    object-position: center center;
}
/* Блок контента под изображением */
.about-content-box {
    width: 100%;
    max-width: 650px; /* Текст на макете уже, чем картинка — сужаем блок */
    text-align: center;
}
/* Подзаголовок процесса */
.about-subtitle {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}
/* Параграфы текста */
.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 20px 0;
    text-align: left; /* Сам текст внутри зауженного блока выравнивается по левому краю */
}
.about-text p:last-child {
    margin-bottom: 0;
}
/* Адаптив для планшетов и мобилок */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 44px;
        margin-bottom: 30px;
    }
    .about-subtitle {
        font-size: 26px;
    }
    .about-hero-section {
        padding: 40px 0 60px 0;
    }
}
@media (max-width: 1200px) {
    .about-image-box {
        height: auto;
        aspect-ratio: 1200 / 640;
    }
}
/* ==========================================================================
   15. СЕКЦИЯ С ЦИТАТОЙ (ARTIST QUOTE)
   ========================================================================== */
.artist-quote-section {
    background-color: #ecf3f4;
    padding: 120px 0;
    overflow: hidden;
}
.artist-quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
/* --- ЛЕВАЯ ЧАСТЬ: ФОТО И КЛЯКСА --- */
.artist-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 520px;
    height: 520px;
}
/* Абстрактная клякса на заднем плане */
.quote-blob {
    position: absolute;
    top: -40px;
    left: -50px;
    width: 620px;
    height: 600px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}
/* Квадратный контейнер для фото */
.artist-photo-box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.artist-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* --- ПРАВАЯ ЧАСТЬ: КОНТЕНТ --- */
.artist-info-wrapper {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* Контейнер кавычек */
.quote-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: none !important;
    rotate: 180deg !important;
}
/* Принудительно разрешаем SVG выходить за любые невидимые рамки */
.quote-icon svg {
    display: block;
    overflow: visible !important;
}
/* Текст большой цитаты */
.artist-blockquote {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}
/* Контейнер для росписи */
.artist-signature-box {
    height: 60px;
    margin-bottom: 15px;
}
.artist-signature {
    height: 100%;
    width: auto;
    object-fit: contain;
}
/* Нежное, тонкое имя автора по макету */
.artist-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #2c2c2c;
    text-transform: uppercase;
}
/* --- АДАПТИВ ПОД МОБИЛЬНЫЕ УСТРОЙСТВА --- */
@media (max-width: 1024px) {
    .artist-quote-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .artist-info-wrapper {
        align-items: center;
    }
    .artist-image-wrapper {
        width: 400px;
        height: 400px;
    }
    .quote-blob {
        width: 480px;
        height: 460px;
        top: -30px;
        left: -40px;
    }
    .artist-blockquote {
        font-size: 26px;
    }
}
@media (max-width: 480px) {
    .artist-image-wrapper {
        width: 280px;
        height: 280px;
    }
    .quote-blob {
        display: none;
    }
}
/* ==========================================================================
   16. СЕКЦИЯ AWARDS AND STATS (ОБНОВЛЕННАЯ, КРУПНЫЕ ЛОГОТИПЫ)
   ========================================================================== */
.awards-section {
    background-color: #ecf3f4; /* Наш общий фоновый цвет */
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Дополнительный сейв от горизонтального скролла */
}
.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
/* Главный serif заголовок */
.awards-title {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 60px 0;
    text-align: center;
}
/* Сетка для логотипов наград */
.awards-logos-grid {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 50px;         /* Оптимальный отступ между рядами */
    margin-bottom: 80px;
}
.awards-logos-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;         /* Пространство между логотипами */
    width: 100%;
    flex-wrap: wrap;   /* Позволяет логотипам адаптивно переноситься */
}
/* Шахматный отступ нижнего ряда (безопасный для адаптива) */
.awards-logos-row.row-bottom {
    padding: 0 8%;
    box-sizing: border-box;
}
.award-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 220px;   /* Комфортный базовый шаг для крупных элементов */
    max-width: 280px;  /* Позволяет логотипам раскрыться по ширине */
    opacity: 0.9;      /* Убрали блеклость — теперь они плотные, как на оригинале */
    transition: opacity 0.3s ease;
}
.award-logo-item:hover {
    opacity: 1;
}
/* Максимальное увеличение логотипов */
.award-logo-item img {
    max-height: 110px; /* Сделали значительно больше и жирнее */
    width: auto;       /* Убираем жесткий зажим флексов, чтобы картинки не сжимались */
    object-fit: contain;
    display: block;
}
/* Описание */
.awards-description-box {
    max-width: 760px;
    margin-bottom: 50px;
    padding: 0 10px;
    box-sizing: border-box;
}
.awards-description-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}
/* Разделительная линия */
.awards-divider {
    width: 100%;
    max-width: 760px;
    border: none;
    border-top: 1px solid #d3dee0;
    margin: 0 0 50px 0;
}
/* Сетка показателей статистики */
.stats-grid {
    width: 100%;
    max-width: 760px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
/* Верхняя строка внутри элемента статистики (иконка + число) */
.stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
/* Фиксируем размеры для встроенных SVG-иконок */
.stat-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0; /* Защита от сжатия текста */
}
/* Крупное число статистики */
.stat-number {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}
/* Тонкая, нежная подпись снизу */
.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #555555;
    text-transform: uppercase;
}
/* ==========================================================================
   УМНЫЙ МЕДИА-АДАПТИВ (ДЛЯ ЭКРАНОВ РАЗНОЙ ШИРИНЫ)
   ========================================================================== */
@media (max-width: 1024px) {
    .awards-logos-row.row-bottom {
        padding: 0;
    }
    .awards-logos-row {
        justify-content: center;
        gap: 40px;
    }
    .award-logo-item {
        flex: 1 1 190px;
    }
    .award-logo-item img {
        max-height: 85px; /* Аккуратное пропорциональное уменьшение на планшетах */
    }
}
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column; /* Перестраиваем статистику вертикально */
        gap: 45px;
    }
    .awards-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .awards-section {
        padding: 60px 0;
    }
    .awards-logos-grid {
        gap: 35px;
    }
    .award-logo-item {
        flex: 1 1 130px;
    }
    .award-logo-item img {
        max-height: 60px;
    }
    .awards-description-box p {
        font-size: 14px;
    }
}
/* ==========================================================================
   17. СЕКЦИЯ ARTWORKS
   ========================================================================== */
.artworks-section {
    background-color: #ecf3f4;
    padding: 40px 0 60px 0;
    font-family: 'Montserrat', sans-serif;
}
.artworks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
/* Заголовок Artworks — убираем лишний margin-top, если он был у браузера по умолчанию */
.artworks-title {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 50px 0;
    text-align: center;
    letter-spacing: -0.5px;
}
/* Контейнер карточки произведения */
.artwork-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 35px; /* Подтянули всё, что ниже, ближе к карточке */
}
/* Массивная темная рама со сложной мягкой 3D-тенюшкой */
.artwork-frame {
    background-color: #1a1a1a;
    padding: 16px;
    box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.25),
            0 15px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px; /* Рама держит форму, а текст под ней теперь свободен! */
    box-sizing: border-box;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Легкий интерактив при наведении */
.artwork-frame:hover {
    transform: translateY(-5px);
    box-shadow:
            0 40px 75px rgba(0, 0, 0, 0.3),
            0 20px 35px rgba(0, 0, 0, 0.18);
}
.artwork-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* Название картины */
.artwork-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}
/* Описание */
.artwork-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    max-width: 100%;
    margin: 0 0 25px 0;
    white-space: nowrap;
    text-align: center;
}
/* Ссылка LEARN MORE */
.artwork-link {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.artwork-link:hover {
    color: #2fd1dc;
    transform: translateX(4px);
}
/* Маленькая вертикальная красная палочка-разделитель в самом низу */
.artworks-footer-line {
    width: 1px;
    height: 60px;
    background-color: #d14332;
    margin-top: 0;
}
/* ==========================================================================
   АДАПТИВНОСТЬ
   ========================================================================= */
@media (max-width: 768px) {
    .artworks-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .artwork-frame {
        padding: 12px;
    }
    .artwork-name {
        font-size: 20px;
    }
    .artwork-desc {
        white-space: normal;
        font-size: 15px;
        padding: 0 20px;
    }
}
/* ==========================================================================
   18. СЕКЦИЯ ГАЛЕРЕИ РАБОТ (ARTWORKS GRID)
   ========================================================================== */
.artworks-gallery-section {
    background-color: #ecf3f4;
    padding: 60px 0 100px 0;
    font-family: 'Montserrat', sans-serif;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}
/* Сетка на 3 колонки с большими красивыми отступами */
.artworks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 80px;
}
/* Элемент галереи */
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* Контейнер рамки для картины с тенью */
.gallery-frame {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.18),
            0 10px 20px rgba(0, 0, 0, 0.1);
}
.gallery-frame:hover {
    transform: translateY(-5px);
    box-shadow:
            0 30px 50px rgba(0, 0, 0, 0.25),
            0 15px 25px rgba(0, 0, 0, 0.15);
}
/* СТИЛЬ 1: Темная деревянная рама */
.item-dark-frame .gallery-frame {
    background-color: #1a1a1a;
    padding: 12px;
}
/* СТИЛЬ 2: Минималистичная белая рама */
.item-white-frame .gallery-frame {
    background-color: #ffffff;
    padding: 8px;
}
/* Изображения внутри рамок */
.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* Название картины */
.gallery-item-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}
/* Текст описания (компактный, так как колоночный адаптив) */
.gallery-item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 18px 0;
    padding: 0 10px;
}
/* Ссылка LEARN MORE */
.gallery-item-link {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}
.gallery-item-link:hover {
    color: #2fd1dc;
    transform: translateX(4px);
}
/* ==========================================================================
   АДАПТИВНОСТЬ СЕТКИ ГАЛЕРЕИ
   ========================================================================== */
@media (max-width: 1024px) {
    .artworks-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 60px;
    }
    .gallery-container {
        padding: 0 30px;
    }
}
@media (max-width: 650px) {
    .artworks-grid {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    .gallery-container {
        padding: 0 20px;
    }
    .gallery-frame {
        max-width: 380px;
    }
}
/* ==========================================================================
   19. СЕКЦИЯ ОТЗЫВА (TESTIMONIAL — ИСПРАВЛЕННАЯ)
   ========================================================================== */
.testimonial-section {
    background-color: #ecf3f4;
    padding: 40px 0 120px 0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.testimonial-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
/* Изящные, округлые кавычки из оригинального шрифта */
.testimonial-quote-text {
    font-family: 'Fraunces', serif;
    font-size: 180px;
    line-height: 0.7;
    color: #2fd1dc;
    margin-bottom: -20px;
    user-select: none;
    display: block;
}
/* Текст цитаты: стал на размер больше */
.testimonial-text {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 45px 0;
    padding: 0;
}
/* Блок автора */
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.author-name {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
}
.author-role {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}
/* ==========================================================================
   АДАПТИВНОСТЬ
   ========================================================================== */
@media (max-width: 1024px) {
    .testimonial-text {
        font-size: 38px;
    }
}
@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0 80px 0;
    }
    .testimonial-text {
        font-size: 28px;
    }
    .testimonial-quote-text {
        font-size: 120px;
        margin-bottom: -10px;
    }
}
/* ==========================================================================
   20. ЦЕЛЬНЫЙ МОНОЛИТНЫЙ БАННЕР ВЫСТАВОК (ИСПРАВЛЕНО И РАЗДЕЛЕНО)
   ========================================================================== */
.exhibitions-banner-section {
    width: 100%;
    background-color: #ecf3f4;
    padding: 60px 0 0 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
/* Блок заголовка сверху на светлом фоне */
.exhibitions-top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.exhibitions-title-text {
    font-family: 'Fraunces', serif;
    font-size: 80px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}
.exhibitions-red-line {
    width: 1px;
    height: 40px;
    background-color: #d14332;
}
/* ТЕМНЫЙ БАННЕР: Сдвинут вниз, заголовок и линия остаются выше */
.exhibition-dark-inner-banner {
    width: 100%;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 60px;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 50px 0;
    box-sizing: border-box;
}
/* Контейнер внутри темного баннера */
.exhibition-banner-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    box-sizing: border-box;
}
/* Левая часть внутри баннера */
.exh-left-meta {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.exh-badge {
    font-size: 12px;
    font-weight: 600;
    color: #2fd1dc;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.exh-main-title {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.exh-date-range {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}
/* Правая часть внутри баннера с вертикальной чертой */
.exh-right-details {
    max-width: 50%;
    padding-left: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5px;
    box-sizing: border-box;
}
.exh-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 35px 0;
}
/* Ссылка READ MORE */
.exh-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #2fd1dc;
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.exh-read-more:hover {
    color: #2fd1dc;
    border-color: #ffffff;
}
/* ==========================================================================
   АДАПТИВ ПОД МОБИЛКИ
   ========================================================================== */
@media (max-width: 900px) {
    .exhibitions-title-text {
        font-size: 42px;
    }
    .exhibition-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .exh-left-meta, .exh-right-details {
        max-width: 100%;
    }
    .exh-right-details {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 25px;
    }
    .exh-main-title {
        font-size: 34px;
    }
}
/* ==========================================================================
   21. СЕКЦИЯ ПРЕДСТОЯЩИХ ВЫСТАВОК (UPCOMING EXHIBITIONS)
   ========================================================================== */
.upcoming-exhibitions-section {
    width: 100%;
    background-color: #ecf3f4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.upcoming-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
/* Шапка секции */
.upcoming-header {
    text-align: center;
    margin-bottom: 60px;
}
.upcoming-section-title {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}
.upcoming-section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}
/* Сетка карточек */
.upcoming-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
/* Стили самой карточки */
.upcoming-card {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Эффект при наведении на карточку */
.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
/* Обертка для картинок, чтобы они были фиксированной высоты и не искажались */
.card-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Текстовый контент внутри карточки */
.card-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-date {
    font-size: 13px;
    font-weight: 700;
    color: #d14332;
    margin-bottom: 15px;
    display: block;
}
.card-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}
.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
/* Ссылка на карточке */
.card-link {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: color 0.2s ease;
}
.card-link:hover {
    color: #d14332;
}
/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ КАРТОЧЕК
   ========================================================================== */
@media (max-width: 992px) {
    .upcoming-grid {
        gap: 20px;
    }
    .card-content {
        padding: 30px 20px;
    }
    .upcoming-section-title {
        font-size: 38px;
    }
}
@media (max-width: 768px) {
    .upcoming-grid {
        flex-direction: column;
        gap: 40px;
    }
    .upcoming-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}
/* ==========================================================================
   22. СЕКЦИЯ ПРОШЕДШИХ ВЫСТАВОК (PAST EXHIBITIONS)
   ========================================================================== */
.past-exhibitions-section {
    width: 100%;
    background-color: #ecf3f4;
    padding: 100px 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.past-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
/* Двухколоночная шапка */
.past-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 70px;
    gap: 80px;
}
.past-section-title {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
    flex-shrink: 0;
}
.past-header-right {
    max-width: 550px;
    padding-top: 12px;
}
.past-red-line {
    width: 40px;
    height: 1px;
    background-color: #d14332;
    margin-bottom: 20px;
}
.past-section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}
/* Сетка GRID для 4 колонок */
.past-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 50px;
}
/* Карточки выставок */
.past-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.past-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 25px;
}
.past-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
/* Небольшой интерактивный эффект при наведении на картинку */
.past-card:hover .past-img {
    transform: scale(1.05);
}
.past-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}
.past-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    padding: 0 10px;
}
/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ СЕТКИ
   ========================================================================== */
@media (max-width: 1024px) {
    .past-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
    }
    .past-section-title {
        font-size: 46px;
    }
}
@media (max-width: 768px) {
    .past-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    .past-header-right {
        padding-top: 0;
    }
    .past-section-title br {
        display: none;
    }
    .past-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .past-img-box {
        height: 250px;
    }
}
/* ==========================================================================
   23. СЕКЦИЯ СТРАНИЦЫ МАГАЗИНА (SHOP)
   ========================================================================== */
.shop-page-section {
    width: 100%;
    background-color: #ecf3f4; /* Тот самый светло-серый фон сайта по бокам */
    padding: 60px 0 100px 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.shop-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    box-sizing: border-box;
}
/* Хлебные крошки */
.shop-breadcrumbs {
    font-size: 13px;
    color: #999999;
    margin-bottom: 15px;
}
/* Главный заголовок Shop */
.shop-main-title {
    font-family: 'Fraunces', serif;
    font-size: 80px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 60px 0;
    letter-spacing: -1px;
}
/* Панель фильтра и сортировки */
.shop-catalog-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: #666666;
}
/* Стилизация выпадающего списка */
.catalog-sort-select {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
    border: none;
    background-color: transparent;
    padding-right: 20px;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23666666' d='M0 0l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}
/* Сетка товаров */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 60px;
}
/* Карточка товара */
.product-card {
    display: flex;
    flex-direction: column;
}
.product-img-box {
    width: 100%;
    height: 340px;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-img {
    transform: scale(1.03);
}
/* Информация о товаре */
.product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-category {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}
.product-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}
.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}
/* Ссылка ADD TO CART */
.product-add-btn {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.product-add-btn:hover {
    color: #d14332;
    border-color: #d14332;
}
/* ==========================================================================
   АДАПТИВ ПОД РАЗНЫЕ ЭКРАНЫ
   ========================================================================== */
@media (max-width: 1024px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
        row-gap: 50px;
    }
    .shop-main-title {
        font-size: 60px;
        margin-bottom: 40px;
    }
}
@media (max-width: 576px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .shop-catalog-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .shop-main-title {
        font-size: 46px;
    }
    .product-img-box {
        height: 400px;
    }
}
/* ==========================================================================
   24. ИСПРАВЛЕННАЯ СЕКЦИЯ КОНТАКТОВ (БЕЗ БЕЛОЙ КОРЕБКИ)
   ========================================================================== */
.contact-page-section {
    width: 100%;
    background-color: #ecf3f4; /* Весь фон теперь чисто серый */
    padding: 80px 0 120px 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
/* Контейнер теперь прозрачный и просто выравнивает контент по центру */
.contact-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
/* Шапка страницы */
.contact-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}
.contact-main-title {
    font-family: 'Fraunces', serif;
    font-size: 80px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 35px 0;
    letter-spacing: -1px;
}
.contact-top-red-line {
    width: 1px;
    height: 45px;
    background-color: #d14332;
}
/* Двухколоночная разметка */
.contact-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
/* Левая колонка */
.contact-info-col {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}
.info-block {
    margin-bottom: 35px;
}
.info-block.no-margin-bottom {
    margin-bottom: 0;
}
.contact-sub-title-serif {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}
.contact-text-muted {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}
.contact-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0 0 35px 0;
}
/* Список контактов и выравнивание SVG */
.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #555555;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    flex-shrink: 0;
}
/* Блок счетчиков соцсетей */
.contact-follow-label {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 35px;
}
.contact-social-grid {
    display: flex;
    gap: 50px;
}
.social-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.social-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.social-number {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}
.social-label {
    font-size: 11px;
    font-weight: 600;
    color: #777777;
    letter-spacing: 1px;
}
/* Правая колонка (Форма) */
.contact-form-col {
    flex: 1;
    max-width: 46%;
    padding-left: 50px;
    border-left: 1px solid #1ba2ab;
    box-sizing: border-box;
}
.contact-html-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}
.required-star {
    color: #d14332;
}
.form-input,
.form-textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 14px 15px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #1a1a1a;
    outline: none;
    box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
    border-color: #1ba2ab;
}
.form-textarea {
    resize: vertical;
}
.form-submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background-color: #d14332;
    border: none;
    border-radius: 4px;
    padding: 16px 40px;
    align-self: flex-start;
    cursor: pointer;
    letter-spacing: 1.5px;
    transition: background-color 0.2s ease;
}
.form-submit-btn:hover {
    background-color: #b53425;
}
/* ==========================================================================
   АДАПТИВ
   ========================================================================== */
@media (max-width: 992px) {
    .contact-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .contact-info-col,
    .contact-form-col {
        max-width: 100%;
    }
    .contact-form-col {
        padding-left: 0;
        border-left: none;
        padding-top: 40px;
        border-top: 1px solid #1ba2ab;
    }
    .contact-main-title {
        font-size: 60px;
    }
}
/* ==========================================================================
   25. СЕКЦИЯ КОРЗИНЫ (CART)
   ========================================================================== */
.cart-page-section {
    width: 100%;
    background-color: #ecf3f4; /* Наш общий светло-серый фон сайта по бокам */
    padding: 80px 0 120px 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Белый блок-коробка по центру */
.cart-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff; /* Белый фон коробки */
    padding: 80px 80px 100px 80px; /* Большие отступы внутри */
    box-sizing: border-box;
}

/* Строка уведомления об пустой корзине */
.cart-empty-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f8f9fa; /* Очень легкая серая подложка внутри уведомления */
    padding: 20px 25px;
    border-top: 3px solid #1a1a1a; /* Жирная темная верхняя рамка */
    box-sizing: border-box;
    margin-bottom: 35px;
}

.cart-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-notice-text {
    font-size: 15px;
    color: #555555;
    font-weight: 400;
}

/* Кнопка RETURN TO SHOP */
.cart-return-wrapper {
    display: flex;
    justify-content: flex-start;
}

.cart-return-btn {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1.5px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); /* Тонкая серая линия под текстом */
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cart-return-btn:hover {
    color: #d14332; /* Плавное изменение цвета при наведении на фирменный красный */
    border-color: rgba(209, 67, 50, 0.4);
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ КОРЗИНЫ
   ========================================================================== */
@media (max-width: 992px) {
    .cart-container {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .cart-page-section {
        padding: 40px 0 60px 0;
    }
    .cart-container {
        padding: 30px 20px;
    }
    .cart-empty-notice {
        padding: 15px 20px;
    }
    .cart-notice-text {
        font-size: 14px;
    }
}
/* ==========================================================================
   26. ВЫДВИЖНОЙ САЙДБАР КОРЗИНЫ (SIDE CART)
   ========================================================================== */

/* Затемняющий фон */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-sidebar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
/* Сам сайдбар */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* Анимация скрытия/появления */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-sidebar.is-open {
    transform: translateX(0);
}
/* Шапка сайдбара */
.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cart-sidebar-title {
    font-size: 18px;
    font-weight: 500;
    color: #555555;
    margin: 0;
}
.cart-sidebar-close {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.cart-sidebar-close:hover {
    background-color: #f5f5f5;
}
/* Список товаров (скроллится, если товаров много) */
.cart-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}
.cart-sidebar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-bottom: 25px;
}
.cart-item-img-wrapper {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background-color: #f5f5f5;
    overflow: hidden;
}
.cart-item-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-details {
    flex: 1;
}
.cart-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}
.cart-item-meta {
    font-size: 14px;
    color: #777777;
}
.cart-item-price {
    color: #1a1a1a;
}
.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: color 0.2s;
}
.cart-item-remove:hover {
    color: #d14332;
}
/* Подвал сайдбара */
.cart-sidebar-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 30px;
    background-color: #ffffff;
}
.cart-sidebar-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555555;
    margin-bottom: 25px;
}
.subtotal-amount {
    font-weight: 600;
    color: #1a1a1a;
}
/* Кнопки действий */
.cart-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-action-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s, color 0.2s;
    box-sizing: border-box;
}
.btn-view-cart {
    background-color: transparent;
    color: #1a1a1a;
}
.btn-view-cart:hover {
    background-color: #f8f9fa;
}
.btn-checkout {
    background-color: transparent;
    color: #1a1a1a;
}
.btn-checkout:hover {
    background-color: #f8f9fa;
}
/* Ограничиваем размер гигантских иконок-стрелок, если они вылезут */
.custom-artworks-pagination svg {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
}

/* Делаем пагинацию в линейку по центру */
.custom-artworks-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.custom-artworks-pagination .page-link {
    padding: 8px 14px;
    border: 1px solid #ccc;
    color: #000;
    text-decoration: none;
    background: #fff;
}

.custom-artworks-pagination .page-item.active .page-link {
    background: #000;
    color: #fff;
    border-color: #000;
}
/* Эффект мягкого проявления галереи при загрузке страницы */
.artworks-gallery-section {
    animation: fadeInGallery 0.6s ease-in-out forwards;
}

@keyframes fadeInGallery {
    from {
        opacity: 0;
        transform: translateY(10px); /* Легкое, едва заметное приподнятие */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================================================================
   AUTH PAGES (LOGIN & REGISTER)
   ========================================================================== */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
    background-color: #f8fafc; /* Светлый нейтральный фон */
    padding: 40px 20px;
}
.auth-card {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.auth-title {
    font-family: 'Playfair Display', 'Times New Roman', serif; /* Твой фирменный шрифт с засечками */
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.auth-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}
.auth-form {
    text-align: left;
}
.auth-form .form-group {
    margin-bottom: 20px;
}
.auth-form .form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}
.auth-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    font-size: 14px;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}
.auth-form .form-group input:focus {
    outline: none;
    border-color: #e67e22; /* Твой оранжевый акцент */
}
.auth-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a; /* Строгая темная кнопка */
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}
.auth-submit-btn:hover {
    background-color: #e67e22; /* Оранжевый при наведении */
}
.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: #555;
}
.auth-footer a {
    color: #e67e22; /* Красивая оранжевая ссылка */
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.auth-footer a:hover {
    border-bottom-color: #e67e22;
}
