/* =====================================================================
   General CSS for All Pages (e.g. Navbar, Buttons, Font-styling, etc.)
===================================================================== */

/* Base Stylings */
body {
    font-family: 'Saira', sans-serif !important;
    background-color: #181717;
    overflow-x: hidden;
} 

.fw-medium {
    font-family: 'Saira', sans-serif !important;
    font-weight: 600 !important;
}

.fw-bold {
    user-select: none;
    font-family: 'Saira', sans-serif !important;
    font-weight: 600 !important;
    color: #181717;
}

h4, h5, h6{
    color: azure;
    user-select: none;
    font-family: 'Saira', sans-serif !important;
}

.header-links{
    color: #FF6600;
}

#no-results-message{
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;    
    margin-top: 4%;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.section-title {
    font-family: 'Saira', sans-serif !important;
    font-size: 50px;
    font-weight: 500;
    text-align: center;
    color: azure;
    margin-bottom: 50px;
    margin-top: 50px;
}

/* Adjustment for smaller screen */
@media (max-width: 900px) { 
    .section-title {
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}
/* End of Base Stylings */

/*** Buttons ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn-primary {
    background-color: #ff6600;   /* orange */
    border-color: #ff6600;       /* border orange */
    border-radius: 8px;          /* sudut melengkung */
    font-weight: 600;            /* biar lebih tegas */
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #ff6600;   /* orange lebih gelap saat hover */
    border-color: #ff6600;
    transform: scale(1.05);      /* efek zoom pas hover */
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

.btn-instagram {
    color: #FFFFFF;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transition: 0.3s;

    /* untuk center isi */
    display: flex;
    align-items: center;   
    justify-content: center; 

    gap: 8px;
    padding: 8px 18px; 
    font-weight: 25px;
    text-decoration: none;
}
        
.btn-instagram:hover {
    opacity: 0.85;
    transform: scale(1.05);
    color: #fff;
}

.btn-instagram.d-lg-block {
    display: block !important;
}
/*** End of Buttons ***/

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    color: #FFFFFF !important; /* Keep active color */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ff6600 !important; /* Keep active color */
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-item:hover {
    background-color: #ff6600 !important;
    color: #fff !important;
}
.navbar .dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** End of Navbar ***/

/*** Headers ***/
.default-bg {
    background-image: url("../img/default-bg.webp") !important;
    background-size: cover;
    background-position: center;
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Saira', sans-serif !important;
    font-size: 50px;
    font-weight: 550;
    text-align: center;
    color: azure;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.page-directory {
    font-family: 'Saira', sans-serif !important;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    color: azure;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ff6600;
}
/*** End of Headers ***/

/*** Searchbar ***/ 
.navbar-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: #1a1b23;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 1px solid #2a2b33;
}

.search-bar:focus-within {
    background-color: #222533;
    border-color: #222533;
    box-shadow: 0 4px 15px rgba(229, 90, 91, 1);
}

.search-bar:hover {
    background-color: #222533;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.InputContainer {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 0.75rem;
}

.input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: none;
    color: #f0f0f0;
    padding: 0.5rem 0;
    font-family: inherit;
}

.input::placeholder {
    color: #eee;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.input:focus::placeholder {
    opacity: 0.5;
}

.searchIcon {
    width: 20px;
    height: 20px;
    fill: #ff6600;
    transition: fill 0.2s ease;
}

.search-bar:focus-within .searchIcon {
    fill: #ff6600;
}

.border {
    width: 1px;
    height: 24px;
    background-color: #222533;
    margin: 0 0.75rem;
}
/*** End of Searchbar ***/

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/cover-footer.webp) center center no-repeat;
    background-size: cover;
}

.footer-title {
    font-family: 'Saira', sans-serif !important;
    font-size: 25px;
    color: azure;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: #ff6600;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** End of Footer ***/