:root {
    --navbar-height: 80px;
    --navbar-height-mobile: 60px;
    --primary-color: #ff8c00;
    --black-color: #000000;
    --white-color: #ffffff;
    --border-radius-small: 8px;

    --video-muri: url("/assets/video/video_muri.webp");

    --overlay: rgba(0, 0, 0, 0.5);

    --foto-depan-showroom: url("/assets/img/depan_showroom.webp");
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

* {
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
    background-color: var(--black-color);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav {
    display: flex;
    gap: 10px;
}

.navbar-nav .nav-link {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    background-color: var(--black-color);
    border-radius: var(--border-radius-small);
}

.dropdown-menu .dropdown-item {
    color: var(--white-color);
    font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-reservasi {
    display: inline-block;
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    font-size: 1rem;
    padding: 8px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
}

.btn-reservasi:hover {
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

.btn-reservasi.active {
    background: linear-gradient(135deg, #e06300, #ff751a);
    border: 1px solid white;
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
    color: white;
}

.btn-reservasi:not(.active) {
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    border: none;
}

/* END NAVBAR */

/* JUMBOTRON */
.jumbotron-video {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--video-muri) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.jumbotron-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.jumbotron-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.jumbotron-content h1 {
    font-size: 3rem;
    font-weight: 600;
}

.jumbotron-content p {
    font-size: 1.2rem;
    margin-top: 20px;
    line-height: 1.6;
}

.primary-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s;
}

.primary-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* END JUMBOTRON */

/* CONTENT IMAGE HOME */
.content-image-home {
    padding-top: 50px;
}

.image-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-container .main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-container .main-image:hover {
    transform: scale(1.02);
}

.image-container .small-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container .small-image:hover {
    transform: scale(1.02);
}

/* END IMAGE HOME */

/* INFORMASI BOX */
.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    border-radius: 10px;
    transition: background 0.3s ease;
    background: rgba(255, 140, 0, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #ff8c00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.info-text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.info-detail {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2px;
}

.info-time {
    font-size: 1rem;
    font-weight: bold;
    color: #ff8c00;
}

.tight-gap {
    display: flex;
    gap: 2px;
}

.tight-gap > p {
    margin-bottom: 0;
}

/* END INFORMASI BOX */

/* TAGLINE */
.tagline {
    margin-top: 50px;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--foto-depan-showroom) no-repeat center center/cover;
    position: relative;
}

.tagline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.tagline-content {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px;
    color: white;
    position: relative;
    z-index: 2;
}

.tagline-text {
    flex: 1;
    max-width: 55%;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.highlight {
    font-weight: bold;
    color: #ffdd44;
}

.tagline-logo {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tagline-logo img {
    width: 100%;
}
/* END TAGLINE */

/* VISIT FIGURE */
/* Section Styling */
.visit-figure {
    padding: 50px 0;
    text-align: center;
    background-color: #f9f9f9;
}

/* Header */
.visit-figure-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.visit-figure-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
}

.visit-figure-header h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
}

/* Read More Button */
.btn-readmore {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
    gap: 8px;
}

.btn-readmore:hover {
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

/* Card Styling */
.card-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* margin-bottom: 20px; */
}

.card-content:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Tags */
.card-tags {
    margin: 2px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.card-tag {
    display: inline-block;
    background: #ff8c00;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.card-tag:hover {
    background: #e07a00;
}

/* Title */
.card-title-figure {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-top: 12px;
}

/* Description */
.card-description {
    font-size: 1rem;
    color: #555;
    margin-top: 2px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Date */
.card-date-figure {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .container-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .visit-figure-header {
        flex-direction: column;
        text-align: center;
    }

    .btn-readmore {
        margin-top: 10px;
    }

    .container-content {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards per row */
    }

    .card-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container-content {
        grid-template-columns: repeat(1, 1fr);
        /* 1 card per row */
    }

    .card-image {
        height: 160px;
    }
}

/* Education Card Styling */
.visit-education {
    background-color: #f9f9f9;
    text-align: center;
}

.visit-education-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.visit-education-header h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    position: relative;
}

.visit-education-header h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
}

.card-collection {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-collection:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.card-collection .card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: all 0.3s ease;
}

.card-collection:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.overlay-content {
    text-align: center;
    padding: 10px;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.card-date {
    font-size: 0.75rem;
    font-style: italic;
    color: #ffcc00;
    opacity: 0.9;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .card-collection .card-image {
        height: 180px;
    }

    .card-overlay {
        height: 45%;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-date {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .card-collection .card-image {
        height: 160px;
    }

    .card-overlay {
        height: 50%;
    }

    .card-title {
        font-size: 0.85rem;
    }

    .card-date {
        font-size: 0.7rem;
    }

    .section-collection-header h2 {
        font-size: 1.6rem;
    }
}


/* ABOUT */

.carousel {
    width: 100vw;
    height: 33vh;
    min-height: 250px;
    max-height: 500px;
    overflow: hidden;
    margin-top: 80px;
    position: relative;
}

.carousel-item img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
    z-index: 2;
}

.breadcrumb-nav {
    font-size: 1rem;
    color: #ffcc00;
    text-transform: uppercase;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.breadcrumb-nav a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.carousel-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .carousel-overlay h1 {
        font-size: 2rem;
    }

    .breadcrumb-nav {
        font-size: 0.9rem;
    }
}

.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

/* Gaya gambar */
.image-container img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.main-image {
    height: 280px;
    /* Sesuaikan ukuran gambar utama */
}

.small-image {
    height: 130px;
    /* Sesuaikan ukuran gambar kecil */
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .main-image {
        height: 220px;
    }

    .small-image {
        height: 100px;
    }
}

/* Section Styling */
.section-location {
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

/* Title */
.location-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Address & Contact Info */
.location-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

/* Google Maps */
.location-map iframe {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    border: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 992px) {
    .location-title {
        font-size: 1.6rem;
    }

    .location-info p {
        font-size: 0.95rem;
    }

    .location-map iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-lg-5,
    .col-lg-7 {
        width: 100%;
    }

    .location-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .location-map iframe {
        height: 220px;
    }
}

/*  */
.founder-section {
    padding: 80px 0;
    background-color: #e8d8c4;
    /* Warna coklat soft */
}

.founder-image {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.founder-names {
    margin-top: 15px;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5a3e2b;
    font-family: "Dancing Script", cursive;
}

.founder-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #5a3e2b;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-title {
        font-size: 1.8rem;
    }

    .founder-text {
        font-size: 1rem;
    }

    .founder-section .row {
        text-align: center;
    }

    .founder-image {
        max-width: 250px;
    }

    .founder-name {
        font-size: 1.3rem;
    }
}

.awards-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.awards-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #5a3e2b;
    margin-bottom: 20px;
}

.awards-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.award-icon {
    width: 32px;
    height: 32px;
    background-color: #ff8c00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
}

.award-icon:hover {
    transform: scale(1.1);
}

.award-image {
    max-width: 45%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.award-image:hover {
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 992px) {
    .awards-title {
        font-size: 2rem;
    }

    .awards-description {
        font-size: 1rem;
    }

    .awards-list li {
        font-size: 1rem;
    }

    .award-image {
        max-width: 45%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 20px;
    }

    .awards-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .awards-description {
        font-size: 1rem;
        text-align: center;
    }

    .awards-list {
        text-align: center;
        padding-left: 0;
    }

    .awards-list li {
        justify-content: center;
    }

    .award-image {
        max-width: 45%;
    }
}

/* END ABOUT */


/* COLLECTION */

.section-collection-header {
    padding: 50px 0;
    text-align: center;
}

.section-collection-header h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    position: relative;
    margin-bottom: 10px;
}

.section-collection-header h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
}

/* Koleksi Card Styling */
.card-collection {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-collection:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.card-collection .card-image {
    height: 300px;
    object-fit: cover;
    object-position: top;
    width: 100%;
    border-radius: 10px;
}

/* Gradient Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: all 0.3s ease;
}

.card-collection:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Overlay Content */
.overlay-content {
    text-align: center;
    padding: 10px;
}

/* Title - White */
.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Date - Yellow and Small */
.card-date {
    font-size: 0.75rem;
    font-style: italic;
    color: #ffcc00;
    opacity: 0.9;
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .card-collection .card-image {
        height: 180px;
    }

    .card-overlay {
        height: 45%;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-date {
        font-size: 0.7rem;
    }
}

/* Mobile View (Extra Small Devices) */
@media (max-width: 576px) {
    .card-collection .card-image {
        height: 160px;
    }

    .card-overlay {
        height: 50%;
    }

    .card-title {
        font-size: 0.85rem;
    }

    .card-date {
        font-size: 0.7rem;
    }

    .section-collection-header h2 {
        font-size: 1.6rem;
    }
}
/* END COLLECTION */


/* VISIT */
.section-visit {
    padding-bottom: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-visit-header {
    padding: 50px 0;
    text-align: center;
}

.section-visit-header h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    position: relative;
    margin-bottom: 10px;
}

.section-visit-header h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
}

/* News Card */
.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 150px;
    /* Ukuran gambar lebih kecil */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-content {
    padding: 15px;
    /* Lebih compact */
}

/* Tags */
.news-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.news-tag {
    background: #ff8c00;
    color: white;
    padding: 3px 8px;
    font-size: 0.8rem;
    /* Lebih kecil */
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Heading */
.news-heading {
    font-size: 1.1rem;
    /* Lebih kecil */
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

/* Description */
.news-description {
    font-size: 0.85rem;
    text-align: justify;
    color: #666;
    margin-bottom: 10px;
}

/* Read More Button */
.read-more {
    display: inline-block;
    color: #ff8c00;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e07a00;
}

/* Responsive */
@media (max-width: 992px) {
    .news-title {
        font-size: 1.8rem;
    }

    .news-heading {
        font-size: 1rem;
    }

    .news-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 50px 15px;
    }

    .news-title {
        font-size: 1.6rem;
    }

    .news-card {
        margin-bottom: 15px;
    }

    .news-image {
        height: 130px;
        /* Sedikit lebih kecil di layar kecil */
    }
}
/* END VISIT */

/* RESERVASI */

/* Section Styling */

.ticket-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.ticket-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
    border-radius: 3px;
}

/* Ticket Card Styling */
.ticket-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.reservasi {
    height: 440px;
}

.ticket-card .photography {
    height: 100%;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

/* Features List */
.ticket-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 15px;
}

.ticket-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.ticket-features .icon {
    background: #ff8c00;
    color: white;
    font-size: 1rem;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
}

/* Detail Section */
.ticket-detail {
    background: #fff5e6;
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
}

.ticket-detail p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

/* Photography Packages */
.photography .photo-package {
    background: #fff5e6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.photography h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e06300;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tombol More */
.btn-more {
    display: block;
    margin: 10px auto;
    padding: 8px 20px;
    background: #ff8c00;
    color: white;
    font-size: 1rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #e06300;
    transform: scale(1.05);
}

.btn-brochure {
    display: block;
    margin: 10px auto;
    padding: 8px 20px;
    background: #e06300;
    color: white;
    font-size: 1rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-brochure:hover {
    background: #ff8c00;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

/* RESERVASI INFO */
.reservation-info-section {
    background-color: #f9f9f9;
    text-align: center;
}

.reservation-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

/* Garis Aksen di Bawah Judul */
.reservation-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
    border-radius: 8px auto 0;
}

/* Accordion Styling */
.accordion {
    padding-bottom: 60px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 15px;
    background: #ff8c00;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: #e07a00;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
    padding: 20px;
    background: #fffef5;
    border-radius: 0 0 8px 8px;
}

/* List Styling */
.reservation-list {
    list-style: none;
    padding: 0;
}

.reservation-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}

/* Bulat Orange Sebagai Ikon */
.reservation-list .icon {
    background: #ff8c00;
    color: white;
    font-size: 1rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 4px;
}

/* Memastikan paragraf tetap sejajar dengan ikon */
.reservation-list p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* RESERVASI FORM */

/* Section Styling */
.reservation-procedure-section {
    padding: 50px 0;
}

.ticket-info-section {
    background-color: #f9f9f9;
}

.ticket-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    padding: 30px 0;
    position: relative;
}

.ticket-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
    border-radius: 3px;
}

/* Ticket Card Styling */
.ticket-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reservasi {
    height: 440px;
}

.ticket-card .photography {
    height: 100%;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

/* Features List */
.ticket-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 15px;
}

.ticket-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.ticket-features .icon {
    background: #ff8c00;
    color: white;
    font-size: 1rem;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
}

/* Detail Section */
.ticket-detail {
    background: #fff5e6;
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
}

.ticket-detail p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

/* Photography Packages */
.photography .photo-package {
    background: #fff5e6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.photography h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e06300;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tombol More */
.btn-more {
    display: block;
    margin: 10px auto;
    padding: 8px 20px;
    background: #ff8c00;
    color: white;
    font-size: 1rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #e06300;
    transform: scale(1.05);
}

/*.btn-brochure {*/
/*    display: block;*/
/*    margin: 10px auto;*/
/*    padding: 8px 20px;*/
/*    background: #e06300;*/
/*    color: white;*/
/*    font-size: 1rem;*/
/*    border-radius: 20px;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-brochure:hover {*/
/*    background: #ff8c00;*/
/*    transform: scale(1.05);*/
/*}*/

.hidden {
    display: none;
}

/* RESERVASI INFO */
.reservation-info-section {
    background-color: #f9f9f9;
    text-align: center;
}

.reservation-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

/* Garis Aksen di Bawah Judul */
.reservation-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff8c00;
    margin: 8px auto 0;
    border-radius: 8px auto 0;
}

/* Accordion Styling */
.accordion {
    padding-bottom: 60px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 15px;
    background: #ff8c00;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: #e07a00;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
    padding: 20px;
    background: #fffef5;
    border-radius: 0 0 8px 8px;
}

/* List Styling */
.reservation-list {
    list-style: none;
    padding: 0;
}

.reservation-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}

/* Bulat Orange Sebagai Ikon */
.reservation-list .icon {
    background: #ff8c00;
    color: white;
    font-size: 1rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 4px;
}

/* Memastikan paragraf tetap sejajar dengan ikon */
.reservation-list p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Ribbon agar selalu muncul */
.ribbon {
    position: absolute;
    top: -10px; /* Menyesuaikan posisi */
    left: -10px; /* Menyesuaikan posisi */
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 25px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Pastikan berada di atas kartu */
}

.umum {
    background: #e06300;
}

.paket {
    background: #ff8c00;
}

/* Segitiga kecil agar tampak seperti bendera */
.ribbon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid #d87e34; /* Warna lebih gelap untuk efek bayangan */
}

/* Hilangkan efek hover pada ribbon */
.ticket-card:hover .ribbon {
    transform: none;
}


/* Struktur utama */
.procedure-body {
    font-size: 1rem;
    color: #333;
    padding: 25px;
    background: #fffaf0;
    /* Soft warm background */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

/* Mengatur list item */
.reservation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reservation-list li {
    display: flex;
    align-items: flex-start;
    padding: 5px;
    border-radius: 8px;
}

/* Styling untuk ikon bulat */
.reservation-list .icon {
    background: #ff8c00;
    color: white;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

/* Memastikan konten sejajar dengan ikon */
.reservation-content {
    flex: 1;
}

/* Judul */
.reservation-content h2 {
    font-size: 1.2rem;
    color: #ff8c00;
    margin-bottom: 6px;
}

/* Teks paragraf */
.reservation-content p {
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* RESERVASI FORM */

/* Section Styling */
.form-select .form-control .text-area {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
}

.reservation-form-section {
    padding: 60px 0;
    background-color: #fffef5;
}

.reservation-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* Wizard Steps */
.reservation-wizard {
    gap: 20px;
}

.wizard-step {
    text-align: center;
    opacity: 0.6;
}

.wizard-step.active {
    opacity: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 24px;
    height: 24px;
}

/* Form Styling */
.form-step {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.form-step.active {
    display: block;
}

/* Button CTA WA */
.btn-cta-wa {
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    margin-top: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
}

.btn-cta-wa:hover {
    color: white;
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.02);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

.btn-reservasi-manual {
    background-color: white;
    color: #000;
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    margin-top: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
}

.btn-reservasi-manual:hover {
    color: #000;
    transform: scale(1.02);
}

.wa-icon {
    margin-right: 2px;
}

/* End Button CTA WA */

/* Button Styling */
.btn-next {
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
}

.btn-next:hover {
    color: white;
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.02);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

.btn-secondary {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

/* Input Group Styling */
.input-group-text {
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-step {
        max-width: 100%;
        padding: 20px;
    }

    .wizard-step p {
        font-size: 0.85rem;
    }
}

/* END RESERVASI */

/* MODAL BROSUR */

/* Styling modal header */
.custom-modal .modal-header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.custom-modal .btn-close {
    filter: invert(1);
}

/* Styling gambar agar penuh di modal */
.brosur-full {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Membuat gambar lebih lembut */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-download {
    display: inline-block;
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
}

.btn-download:hover {
    color: white;
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

/* END MODAL BROSUR */

/* DETAIL KOLEKSI */
.section-collection-news {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.collection-news-image img {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.collection-news-content {
    text-align: left;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.news-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
}

.news-meta span {
    display: inline-block;
    margin-right: 2px;
}

.news-meta .news-category {
    background: #ff751a;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 30px;
}

.news-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
}

.news-description figure a img {
    width: 300px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 6px;
    object-fit: contain;
}

.news-description iframe {
    max-width: 100%;
    height: auto;
}

/* KOLEKSI TERKAIT */
.related-collections {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-top: 2px solid #ff8c00;
}

.relevan-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.relevan-navigation h2 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    position: relative;
}

.btn-readmore-relevan {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.2);
    gap: 8px;
}

.btn-readmore-relevan:hover {
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

/* Title */
.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

/* Wrapper Koleksi */
.collections-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Koleksi Card */
.collection-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    width: 120px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.collection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);
}

/* Koleksi Image */
.collection-img {
    height: 100px;
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    object-position: top;
}

/* Koleksi Title */
.collection-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

/* RECENT KOLEKSI & POST */
.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-collections,
.recent-posts {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.recent-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Item Koleksi & Post */
.recent-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

/* Gambar */
.recent-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

/* Info */
.recent-info {
    flex: 1;
}

.recent-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.recent-name a {
    text-decoration: none;
    color: #ff751a;
}

.recent-date {
    font-size: 0.85rem;
    color: #777;
}

/* More Button */
.btn-more {
    display: inline-block;
    background: linear-gradient(135deg, #ff9c33, #ff751a);
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.btn-more:hover {
    background: linear-gradient(135deg, #ff751a, #e06300);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(255, 120, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-title {
        font-size: 1.6rem;
    }

    .news-description {
        font-size: 0.95rem;
    }

    .recent-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .collection-news-content {
        text-align: center;
    }

    .sidebar-section {
        flex-direction: column;
    }

    .recent-collections,
    .recent-posts {
        margin-top: 20px;
    }

    .recent-title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 1.5rem;
    }

    .news-description {
        font-size: 0.9rem;
    }

    .recent-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .recent-img {
        margin-bottom: 5px;
    }

    .collections-wrapper {
        justify-content: left;
        gap: 10px;
    }

    .collection-card {
        width: 100px;
    }

    .collection-title {
        font-size: 0.7rem;
    }
}

/*  */

/* Post Navigation Section */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 2px solid #ff8c00;
    margin-top: 20px;
    flex-wrap: nowrap;
    /* Prevents wrapping */
}

/* Individual Post Navigation Links */
.post-nav {
    text-decoration: none;
    color: #ff751a;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
    max-width: 48%;
    /* Ensures each takes only half space */
    white-space: nowrap;
    /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Adds "..." if text overflows */
}

/* Hover Effect */
.post-nav:hover {
    color: #e06300;
}

/* Post Image */
.post-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

/* Post Info */
.post-info {
    display: flex;
    flex-direction: column;
}

/* Post Title */
.post-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin: 2px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-navigation {
        flex-direction: row;
        /* Keeps them side by side */
        gap: 10px;
    }

    .post-nav {
        flex: 1;
        /* Ensures both elements take equal space */
        justify-content: center;
    }

    .post-img {
        width: 50px;
        height: 50px;
    }

    .post-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .post-navigation {
        flex-direction: row;
        align-items: center;
    }

    .post-nav {
        max-width: 48%;
        text-align: center;
    }

    .post-img {
        width: 45px;
        height: 45px;
    }
}
/* END DETAIL KOLEKSI */

/* FOOTER */
.footer-area {
    background-color: var(--white-color);
}

.social-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

.border-orange {
    border: 0.5px solid var(--primary-color);
}

.contact-icon {
    width: 24px;
    height: 24px;
}

/* END FOOTER */
