/* ========================================
   GALLERY PAGE
   ======================================== */

/* HERO */
.hero-full {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 80px 0 50px;
    background: url('images/about/sunset_at_rig.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.hero-full .hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: rgba(0, 0, 0, 0.82);
    z-index: 2;
    transform: skewX(-12deg);
    transform-origin: top left;
    border-right: 4px solid #00a3ff;
}

.hero-full .hero-content-center {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0;
    padding: 0 20px 0 80px;
    width: 100%;
}

.hero-full .hero-text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 750px;
    margin: 0;
}

.hero-full .hero-underline {
    width: 6px;
    min-height: 100px;
    background: #00a3ff;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-full .hero-text {
    text-align: left;
    flex: 1;
}

.hero-full h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-full .hero-sub {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ========================================
   GALLERY CONTENT
   ======================================== */
.gallery-content {
    padding: 60px 0 80px;
    background: #f9fafc;
}

.gallery-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 25px;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 10px;
    display: inline-block;
}

/* ========================================
   GALLERY 3 KOLOM - SLIDE FADE
   ======================================== */
.gallery-slider-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.gallery-slider-container {
    overflow: hidden;
    position: relative;
}

.gallery-slider {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide-item:hover img {
    transform: scale(1.08);
}

.gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
    color: white;
}

.gallery-slide-item:hover .gallery-slide-overlay {
    opacity: 1;
}

.gallery-slide-overlay h4 {
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ========================================
   DOTS
   ======================================== */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.gallery-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d7e2;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-dots .dot.active {
    background: #00a3ff;
    transform: scale(1.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .gallery-slide-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 40vh;
        padding: 60px 0 30px;
    }
    .hero-full h1 {
        font-size: 2.5rem;
    }
    .hero-full .hero-sub {
        font-size: 1.5rem;
    }
    .hero-full .hero-content-center {
        padding: 0 20px;
    }
    .hero-full .hero-slant {
        width: 80%;
        transform: skewX(-8deg);
    }
    .hero-full .hero-underline {
        min-height: 70px;
    }

    .gallery-section-title {
        font-size: 1.4rem;
    }

    .gallery-slide-item {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        aspect-ratio: 16/9;
    }

    .gallery-slide-overlay h4 {
        font-size: 0.9rem;
    }

    .gallery-slider-wrapper {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-full h1 {
        font-size: 1.8rem;
    }
    .hero-full .hero-sub {
        font-size: 1.2rem;
    }

    .gallery-section-title {
        font-size: 1.1rem;
    }

    .gallery-slide-item {
        aspect-ratio: 4/3;
    }

    .gallery-slide-overlay h4 {
        font-size: 0.8rem;
    }
}