section {
    padding-top: 128px;
    position: relative;
}

section::before {
    z-index: -1;
    content: '';
    font-size: 72px;
    color: gray;
    opacity: 0.25;
    position: absolute;
    top: 20px;
    left: 30px;
}

.btn.button {
    border: 3px solid black;
    border-radius: 32px;
}

.btn.button:hover, .btn.button.active  {
    border: 3px solid black;
    background-color: black;
    color: white;
}

.navbar {
    background-color: #B4121B;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}

.navbar-nav .nav-link {
    color: white;
}

.navbar-brand:hover,
.navbar-nav .nav-link:hover {
    color: #cccccc; /* Sedikit lebih redup agar terlihat ada interaksi */
}

#home {
    background-color: white;
}
.carousel-item {
    height: 60vh;
    min-height: 800px;
    background-color: #212529;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about img {
    width: 100%;
}

#about {
    background-color: #B4121B;
    color: white;
}
.about h1 {
    font-size: 72px;
    color: white;
}

.about img {
    width: 100%;
}

.accordion-button {
    background-color: #212529;
    color: #cccccc;
}

#team {
    background-color: blanchedalmond;
}

/* .card-team {
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "team-1 team-2" "team-3 team-4" "team-5 team-6";
    gap: 16px; */
/* } */ */

.card-img-top {
    width: 100%;
}

/* gallery */

#gallery {
    background-color: blanchedalmond;
}

.gallery img {
    width: 100%;
}

/* --- Basic Setup --- */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    margin: 0;
    padding: 20px;
    color: #333;
}

.gallery {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Navigasi Filter --- */
.portfolio-nav {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 30px;
}

.portfolio-nav a {
    text-decoration: none;
    color: #888;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.portfolio-nav a:hover {
    color: #000;
}

.portfolio-nav a.active {
    color: #f39c12;
}

/* --- Grid Galeri (PENTING) --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Transisi untuk animasi hide/show */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Kelas .hide BARU: Hanya untuk animasi, bukan menghilangkan total */
.portfolio-item.hide {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none; /* Agar tidak bisa diklik saat transparan */
}


.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* --- Efek Overlay saat Hover (Tidak ada perubahan) --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .overlay-text {
    transform: translateY(0);
}

.overlay-text h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
}

.overlay-text p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

/* ... (semua kode CSS Anda sebelumnya) ... */

/* --- STYLING UNTUK TOMBOL SHOW MORE --- */
.show-more-container {
    /* text-align: center; */
    margin-top: 40px; /* Jarak dari galeri */
}

#show-more-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#show-more-btn:hover {
    background-color: #f39c12; /* Warna oranye saat hover */
}

.show-more-container {
    display: flex; /* Mengaktifkan mode flexbox */
    justify-content: center; /* Menengahkan item secara horizontal */
    margin-top: 40px;
}

/* ... (semua kode CSS Anda sebelumnya) ... */

/* --- STYLING UNTUK TOMBOL SHOW MORE & SHOW LESS --- */
.show-more-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Memberi jarak jika kedua tombol sempat terlihat bersamaan */
    margin-top: 40px;
}

#show-more-btn, #show-less-btn { /* Terapkan style ke kedua tombol */
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

#show-more-btn:hover, #show-less-btn:hover {
    background-color: #f39c12;
}

/* SEMBUNYIKAN TOMBOL "SHOW LESS" SECARA DEFAULT */
#show-less-btn {
    display: none;
}

.contact {
    padding-bottom: 128px;
}
.contact::before {
    content: 'Contact';
}
.contact-form {
    border: 1px solid black;
    padding: 64px 32px;
}

.form-label {
    font-weight: 700;
}