/* =========================
   GALERI SECTION
========================= */
.gallery-section {
    padding: 80px 20px;
    background: var(--serenity-dark);
    text-align: center;
}

.gallery-section .section-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: var(--white);
}

/* =========================
   VIDEO SECTION
========================= */
.gallery-video {
    max-width: 420px;
    margin: 0 auto 50px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(138, 127, 141, 0.15);
    border: 2px solid var(--serenity-medium);
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(138, 127, 141, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--serenity-dark);
    box-shadow: 0 10px 25px rgba(138, 127, 141, .3);
}

/* =========================
   HERO IMAGE
========================= */
.gallery-hero {
    max-width: 500px;
    margin: 0 auto 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(138, 127, 141, .18);
}

.gallery-hero img {
    width: 100%;
    display: block;
    transition: transform .7s ease;
}

.gallery-hero:hover img {
    transform: scale(1.04);
}

/* =========================
   GRID
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin: auto;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(138, 127, 141, .12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 16px;
    }

    .gallery-section .section-title {
        font-size: 2rem;
    }

    .gallery-video {
        max-width: 90%;
    }

    .gallery-hero {
        max-width: 90%;
    }
}

/* live-streaming */

/* =========================
   LIVE STREAM SECTION
========================= */
.live-stream-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--serenity-light), #ffffff);
    text-align: center;
}

.live-stream-section .section-title {
    font-size: 2.3rem;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--serenity-dark);
}

.live-stream-section .section-title i {
    margin-right: 10px;
    color: var(--serenity-dark);
}

/* =========================
   WRAPPER
========================= */
.live-stream-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   ITEM
========================= */
.live-stream-item {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(138, 127, 141, .15);
    transition: transform .4s ease;
    border: 1px solid var(--serenity-medium);
}

.live-stream-item:hover {
    transform: translateY(-6px);
}

/* =========================
   EMBED
========================= */
.live-stream-embed {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.live-stream-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   INFO
========================= */
.live-stream-info {
    padding: 16px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--serenity-light);
    color: var(--serenity-deep);
}

.live-stream-info i {
    margin-right: 8px;
}

/* =========================
   LINK MODE
========================= */
.live-stream-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 200px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--serenity-dark);
    text-decoration: none;
    background: linear-gradient(135deg, var(--serenity-light), #ffffff);
    transition: all .3s ease;
}

.live-stream-link:hover {
    background: linear-gradient(135deg, var(--serenity-medium), #ffffff);
}

.live-stream-link i {
    font-size: 1.6rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .live-stream-section {
        padding: 60px 16px;
    }

    .live-stream-section .section-title {
        font-size: 2rem;
    }

    .live-stream-link {
        height: 170px;
    }
}