/* humblepilates/assets/css/header.css */
/* CSS Variables untuk Warna Branding */
:root {
    --primary-color: #aa4126;
    --secondary-color: #f4d6be;
}

/* Header dan Navigasi */
header {
    color: #fff;
    padding: 10px 0;
    height: 50px;
    border-bottom: 1px solid #afafaf;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

nav .logo img {
    height: 100%;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
    display: flex;
    margin-right: auto;
}

nav ul li a {
    color: #939393;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 200;
    margin: auto;
}

nav ul li a:hover {
    color: var(--secondary-color);
    color: #aa4126;
}

/* Menu Toggle (Untuk Mobile) */
.menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Responsivitas */

p#dsc_view {}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    background-color: unset !important;
    padding: unset;
    height: 100%;
    box-sizing: border-box;
    border: unset;
    padding-left: 10px;
    padding-right: 10px;
}

a.navbar-brand {
    height: 100%;
    width: unset;
    box-sizing: border-box;
}

.container {}

.navbar .container {height: 100%;}

.navbar-brand img {
    height: 100%;
    box-sizing: border-box;
}

div#navbarNav {
    /* height: 100%; */
}

ul.navbar-nav.ms-auto {
    height: 100%;
    box-sizing: border-box;
}

a.nav-link {
    box-sizing: border-box;
    height: 100%;
}

button.navbar-toggler {
    border: unset;
    height: 100%;
}

span.navbar-toggler-icon {
    height: 100%;
    text-align: left;
    margin-left: auto;
}

p.descrp {
    max-width: 400px;
    width: u;
}

button.navbar-toggler {
    padding: unset;
}

.navbar-toggler:focus {
    box-shadow: unset !important;
    background-color: unset;
}

/* header.css */
.navbar {
    padding: 10px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e7e7e7;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    height: 100%;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.navbar-menu {
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    list-style: none;
    display: flex;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.dropdown-divider {
    height: 1px;
    background-color: #ddd;
    margin: 5px 0;
}



@media (max-width: 968px) {
    .navbar-toggler {
        display: block;
    }
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 160%;
        z-index: 99;
        left: 0;
        background-color: #f8f9fa;
        padding: 20px;
        border-bottom: 1px solid #123;
    }
    a.nav-link{

text-align: left;

font-size: 12px;
}
    .navbar-nav {
        flex-direction: column;
    }
    .nav-item {
        margin: 10px 0;
        margin-right: auto;
    }

    .container {
}
}



i.fas {
    margin: auto;
    text-align: left;
    margin-left: auto;
    margin-right: 20px;
}