/* humblepilates/assets/css/styles.css */

/* Reset Margin dan Padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables untuk Warna Branding */
:root {
    --primary-color: #aa4126;
    --secondary-color: #f4d6be;
}

/* Body */
body {
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header dan Navigasi */
header {
    color: #fff;
    padding: 10px 20px;
    height: 50px;
}

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;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Menu Toggle (Untuk Mobile) */
.menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Main Content */
main {
    padding: 50px;
    min-height: 80vh;
}

/* Footer */
footer {
    color: #9c9c9c;
    text-align: center;
    padding: 10px 0;
}

/* Paket */
.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.package-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: "Marcellus", serif;
}

.package-card p {
    margin-bottom: 10px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Flash Messages */
.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Font Classes */
.marcellus-regular {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* Responsivitas */
@media (max-width: 768px) {
    

    nav ul li {
        margin: 10px 0;
        text-align: center;
        padding-right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-icon {
        display: block;
        color: #fff;
    }

    #menu-toggle-checkbox:checked ~ ul.nav-links {
        display: flex;
    }

    .packages {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 90%;
    }
}

/* Image Styling */
img.img_pckg {
    height: 100%;
    width: unset;
}

body {
    background: #fbfbfb !important;
}

img#promo_code_icon, img#referal_code_icon {
    position: absolute;
    width: 25px;
    right: 6px;
    bottom: 22px;
}

::before {}

.fas {}

.fas {
    font-weight: 900;
    color: #aa4126;
}

        #loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255 255 255);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .loader {
            border: 5px solid #f3f3f3;
            border-top: 5px solid #aa4126;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

