@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}
html {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.wrap {
    background: url("/assets/Property 1=Default.png") no-repeat center
        center/cover;
}

#navigasi {
    display: flex;
    color: white;
    justify-content: space-between;
    flex-direction: row;
    gap: 6rem;
    align-items: center;
    padding: 1.5rem 8%;
    left: 0;
    right: 0;
    top: 0;
}
#navigasi img {
    max-width: 9rem;
}
#navigasi a {
    color: white;
    margin: 0; /* Menghapus margin default */
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    font-size: 0.9rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
}

#button-login {
    display: flex;
    background: rgba(2, 62, 138, 1);
    width: 7.9rem;
    height: 2.5rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}
#button-login a {
    color: rgba(255, 255, 255, 1);
}
#hero {
    min-height: 105vh;
    display: flex;
    flex-direction: column;
    /* flex: wrap; */
    justify-content: start;
    align-items: start;
    gap: 7rem;
    padding: 1.5rem 8%;
    z-index: 1;
    position: relative;
    margin-bottom: -200px;
    overflow: hidden;
}
.search-bar {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 1rem;
}
.form-control {
    flex: 1;
    width: 150px;
}
.search-bar input,
.search-bar select {
    background: transparent;
    border: none;
    color: white;
}
.search-bar select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem; /* beri ruang buat icon */
    width: 250px;
}
.search-bar select option {
    background-color: white !important;
    color: #333 !important;
    padding: 8px 12px;
}
@media (prefers-color-scheme: light) {
    .search-bar select option {
        background-color: white;
        color: #333;
    }
}
.search-bar input:focus,
.search-bar select:focus {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: none;
    outline: none;
}
.search-bar input::placeholder {
    color: #ddd;
}
.search-bar button {
    border-radius: 2rem;
    padding: 0.4rem 3rem;
}
.search-bar .form-select {
    color: white;
}
.hero-title {
    padding-bottom: 14rem;
}
.hero-title h1 {
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px; /* 131.818% */
}
#prodi {
    background: url("/assets/Subtract.png") no-repeat center center/cover;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Horizontal */
    align-items: center;
    /* padding-top: 200px; */
    min-height: 100vh;
}
.wrap-prodi {
    padding: 1.5rem 8%;
    padding-bottom: 5rem;

    width: 95%;
}
.btn-more {
    display: flex;
    height: 36px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    background: #023e8a;
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    text-decoration: none;
}
#scroll-container {
    overflow-x: auto;
    overflow: hidden;
    /* white-space: nowrap; */
    padding-bottom: 10px;
    display: flex;

    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: thin; /* Untuk browser Firefox */
    -ms-overflow-style: none; /* Untuk IE dan Edge */
}
.card-list {
    width: 370px;
    height: 250px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    color: black;
    user-select: none;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid rgba(188, 225, 148, 1);
    background: rgba(250, 250, 250, 1);
    position: relative;
}

.card-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 62, 138, 0.4);
    border-radius: 10px;
    pointer-events: none;
}

.arrow-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.arrow-icon:hover {
    transform: translateY(-50%) scale(1.1);
    color: #764ba2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.arrow-icon:active {
    transform: translateY(-50%) scale(0.95);
}
.card-title {
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    /* Heading/h4/Bold */
    font-family: "Plus Jakarta Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    margin: 0;
    text-align: center;
    /* margin: 14px 0 40px; */
}

#koleksi {
    min-height: 130vh;
    background: url("/assets/koleksi.png") no-repeat center center/cover;
    z-index: 1;
    position: relative;
    margin-top: -130px;
    /* pading-top: 200px; */
}
.wrapper {
    padding-top: 200px;
    display: grid;
    place-items: center;
    justify-items: center; /* Horizontal */
    align-items: start;
}

.kategori-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding-bottom: 10rem; */
    align-items: center;
    width: 200px;
    height: 540px;
    padding: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: width 0.6s ease, height 0.6s ease, transform 0.6s ease;
}

.kategori-box img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.kategori-title {
    writing-mode: vertical-rl;
    transform: rotate(360deg);
    color: white;
    position: absolute;
    font-family: "Plus Jakarta Sans";
    font-size: 40px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    z-index: 1;
    transition: transform 0.3s ease, writing-mode 0.3s ease;
}

.kategori-subtitle {
    position: relative;
    text-align: center;
    color: white;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 500;
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Hover effect */
.kategori-box:hover {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    width: 600px;
    height: 540px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.tugas-akhir:hover::before {
    background: none;
    opacity: 0.2;
}
.laporan-magang:hover::before {
    background: none;
}

.kategori-box:hover img {
    transform: scale(1.1);
}

.kategori-box:hover .kategori-title {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    transform-origin: left top;

    transition: transform 0.6s ease, writing-mode 0.6s ease;
}

.tugas-akhir {
    background-image: url("/assets/koleksi3.jpg");
}

.laporan-magang {
    background-image: url("/assets/koleksi4.jpg");
}

.tugas-akhir::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(237, 91, 49, 0.36) 0%,
        rgba(237, 91, 49, 0.83) 100%
    );
    z-index: 1;
}
.laporan-magang::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 62, 138, 0.36) 0%,
        rgba(2, 62, 138, 0.83) 100%
    );
    z-index: 1;
}

.kategori-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#tentang {
    min-height: 100vh;
    padding: 1.5rem 8%;
    overflow: hidden;
}
#tentang h1 {
    color: #1a1a1a;
    text-align: center;
    /* Heading/h1/SemiBold */
    font-family: "Plus Jakarta Sans";
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 58px; /* 131.818% */
}

#tentang .deskripsi {
    color: #000;
    text-align: justify;
    /* Paragraph/p16/Medium */
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.image-about {
    width: 600px; /* batasi maksimal */
    height: auto; /* jaga rasio */
    flex-shrink: 1; /* izinkan mengecil kalau space terbatas */
}

.btn-deskripsi {
    display: flex;
    width: 250px;
    height: 35px;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #185adc;
    color: #185adc;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 116.667% */
    text-decoration: none;
}
#berita {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* place-items: center; */
    justify-content: center; /* Horizontal */
    align-items: center; /* Vertical */
}
.wrap-berita {
    overflow: hidden;
    padding: 1.5rem 8%;
    width: 100%;
}
#berita h1 {
    color: #1a1a1a;

    /* Heading/h1/SemiBold */
    font-family: "Plus Jakarta Sans";
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 58px; /* 131.818% */
}
#scroll-container2 {
    overflow-x: auto;
    /* white-space: nowrap; */
    padding-bottom: 10px;
    display: flex;

    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: thin; /* Untuk browser Firefox */
    -ms-overflow-style: none; /* Untuk IE dan Edge */
}
.news-card {
    width: 450px;
    height: 350px;
    flex-shrink: 0;
    aspect-ratio: 3/4;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    filter: brightness(60%);
}
.card-content h4 {
    color: #fff;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 130% */
}

.card-content p {
    color: #fff;
    text-align: center;
    /* Paragraph/p12/Medium */
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
}
#lokasi {
    padding: 1.5rem 8%;
    overflow: hidden;
}
#card-lokasi {
    height: 400px;
}
#card-lokasi iframe {
    width: 100%;
    height: 100%;
}
footer {
    padding: 1.5rem 8%;
    background: #043471;
    color: white;
}
.footer-title h1 {
    color: #fff;
    /* Label/l18/Bold */
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px; /* 127.778% */
}
.footer-title h2 {
    color: #fff;
    /* Label/l16/Bold */
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
.footer-links h3 {
    color: #fff8f8;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
}
.list-unstyled li a {
    text-decoration: none !important;
    color: #fff8f8;
    /* Label/la12/Medium */
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 116.667% */
}
.footer-contact h3 {
    color: #fff8f8;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
}
.list-unstyled li p {
    text-decoration: none !important;
    color: #fff8f8;
    /* Label/la12/Medium */
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 116.667% */
}
.footer-social h3 {
    color: #fff8f8;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
}
.footer-copyright p {
    color: #fff8f8;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 116.667% */
}
@media screen and (max-width: 480px) {
    #navigasi {
        display: flex;
        color: white;
        justify-content: space-between;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        padding: 1.5rem 8%;
        left: 0;
        right: 0;
        top: 0;
    }
    .navbar-nav {
        gap: 10px !important;
    }
    #navigasi img {
        max-width: 2rem;
        max-height: 2rem;
    }
    #logo-text h1 {
        font-size: 10px !important;
    }
    #navigasi a {
        color: white;
        margin: 0; /* Menghapus margin default */
        text-decoration: none;
        color: rgba(0, 0, 0, 1);
        font-size: 0.9rem;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
    }

    #button-login {
        display: flex;
        background: rgba(2, 62, 138, 1);
        width: 7.9rem;
        height: 2.5rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
    }
    #button-login a {
        color: rgba(255, 255, 255, 1);
    }
    .hero-title {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* left: 50%; */
    }
    .hero-title h1 {
        color: #fff;
        font-family: "Plus Jakarta Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 58px; /* 131.818% */
        /* text-align:justify; */
    }
    .search-bar {
        margin-top: 4rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 2rem;
        padding: 0.2rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .search-bar button {
        border-radius: 1rem;
        padding: 0.4rem 1rem;
    }
    .search-bar select {
        display: none;
    }
    .search-bar i {
        display: none;
    }
    #prodi {
        height: 70vh;
    }

    #wrap-title-prodi {
        /* padding: 0 !important; */

        display: flex;
        flex-direction: column;
    }
    .wrap-prodi h1 {
        font-size: 15px;
    }
    .btn-more {
        display: flex;
        height: 30px;
        padding: 0 16px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-radius: 12px;
        background: #023e8a;
        color: #fff;
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 125% */
        text-decoration: none;
    }
    #scroll-container {
        overflow-x: auto;
        /* white-space: nowrap; */
        padding-bottom: 10px;
        display: flex;

        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 10px;
        scrollbar-width: thin; /* Untuk browser Firefox */
        -ms-overflow-style: none; /* Untuk IE dan Edge */
    }
    #card-list {
        width: 270px;
        height: 150px;
        display: flex;

        justify-content: center;
        align-items: center;
        color: black;
        user-select: none;
        border-radius: 10px;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
        border-bottom: 4px solid rgba(188, 225, 148, 1);
        background: rgba(250, 250, 250, 1);
        position: relative;
        background: url("/assets/bg-prodi.png") no-repeat center center/cover;
    }

    .arrow-icon {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #667eea;
        font-size: 15px;
        cursor: pointer;
        z-index: 10;
    }

    .arrow-icon:hover {
        transform: translateY(-50%) scale(1.1);
        color: #764ba2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .arrow-icon:active {
        transform: translateY(-50%) scale(0.95);
    }
    .card-title {
        color: black;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        color: #fff;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        /* Heading/h4/Bold */
        font-family: "Plus Jakarta Sans";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        margin: 0;
        text-align: center;
        /* margin: 14px 0 40px; */
    }
    #koleksi {
        height: 100vh;
    }
    .wrapper h1 {
        font-size: 15px;
    }
    .wrapper {
        padding-top: 150px;
        display: grid;
        place-items: center;
        justify-items: center;
        align-items: start;
    }
    .wrapper .container {
        padding-left: 8%;
        padding-right: 8%;
        margin-bottom: 0px !important;
    }
    .kategori-box {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100px;
        height: 400px;
        padding: 20px 0;
        border-radius: 15px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        transition: width 0.6s ease, height 0.6s ease, transform 0.6s ease;
    }

    .kategori-box img {
        /* position: relative; */
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .kategori-title {
        writing-mode: vertical-rl;
        transform: rotate(360deg);
        color: white;
        /* position: absolute; */
        font-family: "Plus Jakarta Sans";
        font-size: 25px !important;
        font-style: normal;
        font-weight: 700;
        line-height: 58px;
        z-index: 1;
        transition: transform 0.3s ease, writing-mode 0.3s ease;
    }

    .kategori-box:hover img {
        all: unset; /* menonaktifkan semua style hover */
        display: block;
    }
    /* Hover effect */
    .kategori-box:hover {
        all: unset; /* menonaktifkan semua style hover */
        display: block; /* atur tampilan kembali seperti default */
    }
    .kategori-subtitle {
        display: none !important;
    }

    #tentang {
        min-height: 140vh;
        padding: 1.5rem 8%;
    }
    #tentang h1 {
        color: #1a1a1a;
        text-align: center;
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
        /* Heading/h1/SemiBold */
        font-family: "Plus Jakarta Sans";
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 58px; /* 131.818% */
    }
    .wrap-tentang {
        display: flex;
        flex-direction: column;
        gap: 0.5rem !important;
    }
    #tentang .deskripsi {
        color: #000;
        text-align: justify;
        /* Paragraph/p16/Medium */
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 150% */
    }
    .image-about {
        width: 100%;
        height: 300px;
        flex-shrink: 0;
    }
    .btn-deskripsi {
        display: flex;
        width: 190px;
        height: 35px;
        padding: 0 8px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
        border-radius: 4px;
        border: 1px solid #185adc;
        color: #185adc;
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 14px; /* 116.667% */
        text-decoration: none;
    }
    #berita {
        height: 70vh;
        display: flex;
        flex-direction: column;
        /* place-items: center; */
        justify-content: center; /* Horizontal */
        align-items: center; /* Vertical */
    }
    #berita-title {
        padding: 1.5rem 8%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    #berita h1 {
        color: #1a1a1a;

        /* Heading/h1/SemiBold */
        font-family: "Plus Jakarta Sans";
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 58px; /* 131.818% */
    }
    #scroll-container2 {
        overflow-x: auto;
        padding-bottom: 10px;
        display: flex;

        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 10px;
        scrollbar-width: thin;
        -ms-overflow-style: none;
    }
    .news-card {
        width: 350px;
        height: 250px;
        flex-shrink: 0;
        /* aspect-ratio: 4/4; */
    }

    .news-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(60%);
    }
    .card-content h4 {
        color: #fff;
        text-align: center;
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px; /* 130% */
    }
    .card-content p {
        color: #fff;
        text-align: center;
        /* Paragraph/p12/Medium */
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px; /* 150% */
    }
    .footer-title h1 {
        color: #fff;
        /* Label/l18/Bold */
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 23px; /* 127.778% */
    }
    .footer-title h2 {
        color: #fff;
        /* Label/l16/Bold */
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
    }
    .footer-links h3 {
        color: #fff8f8;
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px; /* 125% */
    }
    .list-unstyled li a {
        text-decoration: none !important;
        color: #fff8f8;
        /* Label/la12/Medium */
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 14px; /* 116.667% */
    }
    .footer-contact h3 {
        color: #fff8f8;
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px; /* 125% */
    }
    .list-unstyled li p {
        text-decoration: none !important;
        color: #fff8f8;
        /* Label/la12/Medium */
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 14px; /* 116.667% */
    }
    .footer-social h3 {
        color: #fff8f8;
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px; /* 125% */
    }
    .footer-copyright p {
        color: #fff8f8;
        text-align: center;
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 14px; /* 116.667% */
    }
}

/* Tablets (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        display: flex;
        justify-content: start;
        align-items: start;
    }
    .hero-title h1 {
        color: #fff;
        font-family: "Plus Jakarta Sans";
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 58px; /* 131.818% */
    }
    #wrap-title-prodi {
        display: flex;
        flex-direction: column;
    }
    .search-bar select {
        display: none;
    }
    .search-bar i {
        display: none;
    }
    .wrap-tentang {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .image-about {
        width: 100%;
        height: 400px;
        flex-shrink: 0;
    }
    #berita-title {
        padding: 1.5rem 8%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .kategori-box:hover {
        all: unset; /* menonaktifkan semua style hover */
        display: block; /* atur tampilan kembali seperti default */
    }
    .kategori-box:hover img {
        all: unset; /* menonaktifkan semua style hover */
        display: block;
    }
}

/* Small laptops (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    #navigasi {
        display: flex;
        color: white;
        justify-content: space-between;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        padding: 1.5rem 8%;
        left: 0;
        right: 0;
        top: 0;
    }
    .navbar-nav {
        gap: 10px !important;
    }
    .search-bar {
        margin-top: 4rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 2rem;
        padding: 0.2rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .search-bar button {
        border-radius: 1rem;
        padding: 0.4rem 1rem;
    }
    .search-bar select {
        display: none;
    }
    .search-bar i {
        display: none;
    }
    #tentang {
        min-height: 85vh;
        padding: 1.5rem 8%;
    }
    .wrap-tentang {
        display: flex;
        flex-direction: column;
        gap: 0.5rem !important;
    }
    #tentang .deskripsi {
        color: #000;
        text-align: justify;
        /* Paragraph/p16/Medium */
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 150% */
    }
    .image-about {
        width: 100%;
        height: 400px;
        flex-shrink: 0;
    }
    .news-card {
        width: 350px;
        height: 250px;
        flex-shrink: 0;
        /* aspect-ratio: 4/4; */
    }
}

/* Large screens (1025px+) */
@media screen and (min-width: 1025px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
