@font-face {
    font-family: 'Literata';
    src: url('font/Literata-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 1 999;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Literata';
    src: url('font/Literata-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 1 999;
    font-style: italic;
    font-display: swap;
}


/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


body {
    font-family: "Literata", serif;
    margin: 0;
    padding: 0;
    background: #f3efe8;
    font-style: normal;
}

/* Loader Styling */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3efe8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Spinner */
.spinner {
    width: 110px;
    height: 110px;
    background-image: url('../images/loader.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 110px 110px;
}

/* Fade-in Image */
img.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img.fade-in.loaded {
    opacity: 1;
}

/* Header */
header {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-bottom: 1px solid #eee9e1;
}


.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 50px
}

.homespace {
    width: 20px;
    display: flex;
    justify-items: start;
}


.nav-left,
.nav-right {
    display: flex;
    gap: 0;
}

.nav-left {
    margin-right: auto;
}

.nav-right {
    margin-left: auto;
    width: 210px
}

.navspace {
    width: 70px
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    transition: color 0.3s;
    color: #292f33;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: center;
    padding: 15px 30px;
    white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
    background-color: #f3efe8;
}

.nav-left a.active,
.nav-right a.active {
    color: #bda062;
}


/* Login Button */
.login-space {
    width: 100px;
    display: flex;
    justify-content: flex-end;
}

.btn-login {
    background-color: #BDA062;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #a88d53;
}

.btn-login-mobile {
    background: none;
    color: #BDA062 !important;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0px;
    padding: 13px 0;
    border-radius: 0;
    text-decoration: none;
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 16px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #BDA062;
}

.cmdcontainer {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {

    .nav-right {
        width: 160px
    }

    .navspace {
        width: 20px
    }
}


/* Mobile Styles */
@media (max-width: 768px) {



    .nav-left,
    .nav-right,
    .homespace,
    .login-space {
        display: none;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile nav panel */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        justify-content: space-between;
    }

    .mobile-nav.open {
        right: 0;
    }

    .mobile-nav a {
        color: #292F33;
        text-decoration: none;
        padding: 13px 0;
        font-weight: 300;
        font-size: 20px;
        letter-spacing: 0px;

    }

    .mobile-nav a.active {
        color: #BDA062;
    }

    .close-btn {
        align-self: flex-end;
        font-size: 2rem;
        color: #BDA062;
        background: none;
        border: none;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .mobilelink {
        display: flex;
        flex-direction: column;
    }

    .mobilefooter {
        display: flex;
        flex-direction: column;
    }

    .mobilefooter h3 {
        font-weight: 300;
        font-style: Light;
        font-size: 16px;
        letter-spacing: 0px;
        color: #485052;
        text-align: left;
        margin-bottom: 20px;
    }

    .navsocial {
        display: flex;
        max-width: 258px;
        justify-content: space-between;
    }
}


.site-footer {
    padding: 20px;
    background-color: rgba(238, 233, 225, 1);

}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    padding: 13px 0 0 0;
}

/* Row 1 */
.footer-logo h2 {
    margin: 0;
    color: #fff;
    text-align: center;
}

/* Row 2 */
.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    padding: 0;
}

.footer-links h4 {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(72, 80, 82, 1);
}

.footer-links a {
    color: rgba(189, 160, 98, 1);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;

}

.footer-links a:hover {
    color: rgba(189, 160, 98, .8);
}

.footersocial {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.footersocial img {
    width: 18px;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footerinfo {
    display: flex;
    gap: 80px;
}

.footerinfo h4 {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: left;
    color: rgba(72, 80, 82, 1);
}

.footerinfo p,
.footerinfo a {
    color: rgba(189, 160, 98, 1);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
}

.footerinfo-link {
    display: flex;
    max-width: 250px;
    width: 100%;
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    color: rgba(189, 160, 98, 1);
    align-items: center;
}

.footerspace {
    background-color: #BDA062;
    width: 1px;
}

/* Row 3: Two-column */
.footer-bottom {
    border-top: 1px solid rgba(229, 225, 218, 1);
    padding-top: 20px;
}

.footercopy {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footercopy p {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(72, 80, 82, 1);
}


.footercopy a {
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(72, 80, 82, 1);
}


.footer-contact p {
    margin: 5px 0;
}

.footer-legal {
    text-align: right;
}

.footer-legal a {
    color: #ccc;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .footerspace {
        display: none;
    }
}


@media (max-width: 1024px) {
    .footer-middle {
        flex-wrap: wrap;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        gap: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-top: 30px;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links {
        display: flex;
        gap: 20px 40px;
        flex-wrap: wrap;
        padding: 50px 0;
        max-width: 290px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }

    .footer-links div:last-child {
        display: none;
    }

    .footerinfo {
        display: flex;
        gap: 30px;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
    }

    .footerinfo h4 {
        text-align: center;
    }

    .footerinfo p {
        font-size: 18px;
    }

    .footer-middle {
        margin-bottom: 50px;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
        gap: 30px;
    }

    .footerinfo-link {
        display: block;
        max-width: 100%;
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0px;
        color: rgba(189, 160, 98, 1);
        align-items: center;
        margin: 0 auto;
    }

    .footercopy {
        display: block;
    }

    .footercopy p {
        margin-bottom: 10px;
    }

}


/* Page Content */
#content {
    display: none;
}

section {
    margin: 0;
    padding: 0;
    /* border-radius: 8px;*/
    opacity: 0;
}



img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Styles for very small devices */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    /* Styles for small devices */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        color: white;
        z-index: 1000;
        transition: background 0.3s, box-shadow 0.3s;
        background: rgba(255, 255, 255, 0.3);
        padding: 15px 30px;
        border-bottom: 1px solid #eee9e1;

    }

    header.scrolled {
        transition: all 0.3s ease;
        backdrop-filter: blur(13px);
        border-bottom: 1px solid #fff;
        background-color: rgba(255, 255, 255, 0.6);
    }


    .site-footer {
        background-color: transparent;

    }

    .footer-top {
        padding: 40px 0 0 0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    section.visible {
        opacity: 1;
    }

    .nav-left,
    .nav-right {
        gap: 50px;
    }

    .homespace {
        width: 50px;
    }

    .login-space {
        width: 100px;
    }

    header {
        background: rgba(255, 255, 255, 1);

    }

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Styles for wide screens */
}




/* animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.innercontainer {
    background-color: #fff;
}

@media (min-width: 768px) {
    .innercontainer {
        margin-top: 80px;
    }

    .footer-links h4 {
        text-align: left;
    }
}