
html {
  scroll-behavior: smooth;
}




/* art-center.css — стилі тільки для сторінки Арт-центру */
/* (без хедера та футера — вони використовуються з існуючих файлів) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #262625;
    color: #2c2b28;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO СЕКЦІЯ (АРТ-ЦЕНТР) ========== */
.art-hero {
    position: relative;
    background: linear-gradient(135deg, #2c3e2b 0%, #4a6b3e 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0px 60px 20px;
    color: white;
    z-index: 2;
    width: 100%;
}

.art-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 123, 0.25);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(201, 168, 123, 0.6);
    color: white;
}

.hero-title {
    font-size: clamp(38px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    max-width: 800px;
}

.hero-title .accent {
    color: #c9a87b;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a87b;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #c9a87b;
    border-radius: 50px;
    color: #c9a87b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-light:hover {
    background: #c9a87b;
    color: white;
}

/* ========== ЗАГАЛЬНІ СЕКЦІЇ ========== */
.section {
    padding: 70px 0;
}

.section-light {
    background-color: #ffffff;
}

.section-beige {
    background-color: #faf7f0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #c9a87b;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #2c2b28;
}

.section-header h2 .accent {
    color: #c9a87b;
}

/* ========== ОПИС ПРОЄКТУ ========== */
.project-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.project-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4945;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.feature-tag {
    background: #e8e2d4;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #4a3e2c;
}

.project-visual {
    border-radius: 28px;
    text-align: center;
}

.project-visual img {
    width: 100%;
    border-radius: 20px;
    min-height: 250px;
    object-fit: cover;
}

.schema-placeholder {
    background: #d4c5a9;
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: #5a4a32;
    font-weight: 500;
}

/* ========== КЛЮЧОВІ ЕЛЕМЕНТИ ========== */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.element-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.element-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.element-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.element-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2b28;
}

.element-card p {
    font-size: 15px;
    color: #6a6862;
    line-height: 1.5;
}

/* ========== АРХІТЕКТУРНЕ РІШЕННЯ ========== */
.arch-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.arch-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4945;
    margin-bottom: 20px;
}

.arch-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.arch-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    color: #4a4945;
}

.arch-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a87b;
    font-weight: bold;
}

.arch-image {
    background: #e8e2d4;
    border-radius: 28px;
    padding: 20px;
    text-align: center;
}

.arch-image img {
    width: 100%;
    border-radius: 20px;
    min-height: 250px;
    object-fit: cover;
}

/* ========== ІНКЛЮЗИВНІСТЬ ========== */
.inclusive-block {
    background: linear-gradient(135deg, #2c3e2b 0%, #3d5a38 100%);
    border-radius: 32px;
    padding: 50px 40px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.inclusive-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.inclusive-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.inclusive-list {
    list-style: none;
    padding: 0;
}

.inclusive-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.inclusive-list li::before {
    content: "♿";
    position: absolute;
    left: 0;
    color: #c9a87b;
}

.inclusive-icon {
    text-align: center;
    font-size: 80px;
}

/* ========== 5 ПУНКТІВ ПРОЄКТУ ========== */
.points-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s;
}

.point-item:hover {
    transform: translateX(6px);
}

.point-num {
    width: 48px;
    height: 48px;
    background: #c9a87b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}

.point-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4945;
}

.point-text strong {
    color: #2c2b28;
}

/* ========== ПАРТНЕРИ ========== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.partner-logo {
    background: #e8e2d4;
    border-radius: 20px;
    padding: 20px 30px;
    font-weight: 600;
    color: #5a4a32;
    text-align: center;
    min-width: 160px;
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========== ПРОПОЗИЦІЯ ========== */
.proposal-block {
    background: #e8e2d4;
    border-radius: 28px;
    padding: 45px 40px;
    text-align: center;
}

.proposal-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2b28;
    margin-bottom: 20px;
}

.proposal-block p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4945;
    max-width: 800px;
    margin: 0 auto 25px;
}

/* ========== АДАПТИВНІСТЬ ========== */
@media (max-width: 1024px) {
    .section {
        padding: 50px 0;
    }
    .project-desc,
    .arch-block,
    .inclusive-block {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .hero-image-bg {
        width: 70%;
        opacity: 0.2;
    }
    .art-hero {
        min-height: 65vh;
    }
    .elements-grid {
        gap: 20px;
    }
    .element-card {
        padding: 25px 20px;
    }
    .inclusive-block {
        padding: 35px 25px;
    }
    .point-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .point-num {
        margin-bottom: 10px;
    }
    .partners-grid {
        gap: 20px;
    }
    .partner-logo {
        min-width: 130px;
        padding: 15px 20px;
    }
    .proposal-block {
        padding: 30px 25px;
    }
    .proposal-block h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 40px 0;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .project-text p {
        font-size: 16px;
    }
    .element-card h3 {
        font-size: 20px;
    }
    .inclusive-text h3 {
        font-size: 24px;
    }
    .inclusive-icon {
        font-size: 60px;
    }
}


/* ========== ЩОДЕННИК ПРОЄКТУ ========== */
.diary-slider-wrap {
    margin-top: 40px;
}

.diary-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.diary-swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.diary-controls {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 700px) {
    .diary-prev,
    .diary-next {
        display: none !important;
    }
}

.diary-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.diary-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.diary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diary-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 9px 18px;
    background: #ff0000;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.diary-video-btn:hover {
    background: #cc0000;
}

.diary-video-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.diary-prev,
.diary-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262625;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.diary-prev:hover,
.diary-next:hover {
    background: #262625;
    border-color: #262625;
    color: #fff;
}

.diary-prev.swiper-button-disabled,
.diary-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.diary-pagination {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.diary-content {
    padding: 24px 28px 32px;
}

.diary-badge {
    display: inline-block;
    background: #c9a87b;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.diary-date {
    font-size: 13px;
    color: #c9a87b;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diary-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c2b28;
    margin-bottom: 16px;
    line-height: 1.3;
}

.diary-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4945;
}

/* ========== АДАПТИВНІСТЬ ДЛЯ ЩОДЕННИКА ========== */
@media (max-width: 992px) {
    .diary-grid {
        gap: 30px;
    }

    .diary-content {
        padding: 20px 24px 28px;
    }

    .diary-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .diary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diary-image {
        height: 220px;
    }

    .diary-content {
        padding: 18px 22px 24px;
    }

    .diary-title {
        font-size: 18px;
    }

    .diary-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .diary-image {
        height: 180px;
    }

    .diary-content {
        padding: 16px 18px 20px;
    }

    .diary-title {
        font-size: 17px;
    }
}