@font-face {
    font-family: "Gotham";
    src: url("/fonts/GOTHAM-MEDIUM.TTF") format("truetype");
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/GOTHAM-BOLD.TTF") format("truetype");
    font-weight: bold;
}

body {
    font-family: "Gotham", sans-serif;
}

/* Fullscreen image tanpa padding sama sekali */
.image-section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* Section teks biasa */
.text-section {
    padding: 60px 20px;
    background-color: #fff;
}

.text-section .container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    color: #dc2525;
    font-weight: bold;
}

p {
    color: #dc2525;
}

.process-img {
    width: 80%; /* Lebar gambar tidak full */
    max-width: 800px; /* Batas maksimum biar nggak terlalu gede di layar besar */
    height: auto; /* Biar tetap proporsional */
    border-radius: 20px; /* Radius sudut melengkung */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Opsional: efek bayangan */
    transition: transform 0.3s ease;
}

.process-img:hover {
    transform: scale(1.01); /* Efek zoom ringan saat hover, opsional */
}

.poster-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.poster-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.poster-item {
    scroll-snap-align: center;
    width: 80vw;
    max-width: 300px;
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.poster-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Desktop Grid */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .image-section {
        width: 100vw;
        height: 30vh;
    }

    .process-img {
        width: 90%;
        height: 300px;
    }
}
