/* Styling Header */
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    object-fit: cover;
}

.logo-img {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    transition: 0.3s;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

/* Tombol Hamburger */
.hamburger-menu {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}


/* Menghilangkan panah default pada accordion */
.accordion-button::after {
    display: none !important;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 50px;
    }

    .nav-menu li {
        display: block;
    }

    .nav-menu a {
        font-size: 20px;
        padding: 15px;
        display: block;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .header h1 {
        font-size: 32px;
    }

    .tentang-kami .img-fluid {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 28px;
    }

    .tentang-kami h1 {
        font-size: 22px;
    }

    .tentang-kami p {
        font-size: 14px;
    }

    .tentang-kami .img-fluid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px;
    }

    .header h1 {
        font-size: 22px;
    }

    .btn-warning {
        font-size: 14px;
        padding: 10px 20px;
    }

    .tentang-kami h1 {
        font-size: 20px;
    }

    .tentang-kami p {
        font-size: 12px;
    }
}


/* Efek saat Scroll */
.scrolled .navbar {
    background: rgba(0, 0, 0, 0.85);
    /* Lebih gelap saat di-scroll */
}




/* Styling Text */
.header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

/* Styling Button */
.btn-warning {
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
}

/* Tentang Kami */
/* Style Section Tentang Kami */
.tentang-kami {
    background-color: #f8f9fa;
}

.tentang-kami h1 {
    color: black;
}

.tentang-kami h4 {
    color: #333;
    margin-bottom: 10px;
}

.tentang-kami p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Ukuran Gambar Lebih Kecil di Section Tentang Kami */
.tentang-kami .img-fluid {
    max-width: 80%;
    /* Lebar maksimal gambar 80% dari kolom */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tentang-kami .img-fluid:hover {
    transform: scale(1.05);
}

/* Responsive untuk Mobile */
@media (max-width: 768px) {
    .tentang-kami .row {
        text-align: center;
    }

    .tentang-kami .col-md-6 {
        margin-bottom: 30px;
    }
}


/* Penerbittan Buku */


.kenapa-deepublish {
    background-color: #002F6C;
}

.card-keunggulan {
    background-color: #FFA726;
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.card-keunggulan:hover {
    transform: translateY(-10px);
}

.card-keunggulan .icon i {
    color: white;
}

.card-keunggulan h5 {
    color: white;
}

.card-keunggulan p {
    color: white;
    font-size: 14px;
}

/* Review Customer */
.customer {
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 48%;
    min-height: 300px;
}

.logos {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* susun ke bawah */
    align-items: center;
    /* posisikan ke tengah */
    gap: 20px;
    /* jarak antar logo */
}

.logos a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logos img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logos img:hover {
    transform: scale(1.1);
}


.review {
    margin-bottom: 20px;
    padding: 15px;
    background: #f1f1f1;
    border-radius: 10px;
}

.stars {
    color: #f4c542;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
}

/* Taukah Anda  */


/* Mitra */

.text-orange {
    color: #FF6600;
}

.logo-slider img {
    cursor: pointer;
    width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.logo-slider img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.logo-slider .swiper-slide {
    width: auto;
    /* Supaya lebar otomatis mengikuti gambar */
    margin-right: 1px;
    /* Perkecil jarak antar logo */
}

.logo-slider .swiper-slide img {
    max-height: 100px;
    /* Atur tinggi maksimum logo */
    width: auto;
    display: inline-block;
}


/* F & Q */

.accordion-button {
    background-color: #FF6600;
    color: white;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: #fff;
    color: #333;
}

/* Bagian Gambar */

.cta-section {
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
}

.cta-section h2,
.cta-section p {
    color: #fff;
}

.cta-section .btn-warning {
    background-color: #FF6600;
    border: none;
    transition: all 0.3s;
}

.cta-section .btn-warning:hover {
    background-color: #cc5200;
}

/* Footer */