/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

html {
    background-color: #f4f1ed;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e8e6e3;
    background-color: transparent;
}

body.no-scroll {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #f5f3f0;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 13px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Buttons */
button, .btn {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #1c1e26;
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}



/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 10vh;
    position: sticky;
    top: 0;
    z-index: 100000;
    background: linear-gradient(180deg, rgba(26, 29, 40, 0.98) 0%, rgba(26, 29, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e8e6e3;
    position: relative;
    font-size: 1.15rem;
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #d4af37;
    transform: translateY(-1px);
}

.navbar .icon {
    display: none;
}

.navbar button.icon {
    position: relative;
    z-index: 100001;
}



.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(26, 29, 40, 0.98) 0%, rgba(26, 29, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 99990;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.mobile-menu a {
    text-decoration: none;
    color: #e8e6e3;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.mobile-menu a:hover {
    color: #d4af37;
}

@media screen and (min-width: 993px) {
    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .nav-menu a {
        display: none;
    }

    .navbar button.icon {
        display: block;
    }
}
