/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Raleway:wght@300;400;500&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;
    background-color: #F2F2F2;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    background-color: transparent;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* Links */
main a {
    color: #59573E;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

main a:hover {
    text-decoration-color: #59573E;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: black;
}

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: 'Raleway', 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: #59573E;
    color: #1c1e26;
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #A6A26D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Site Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #8C8177;
    border-bottom: 1px solid #59573E;
}

.site-header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.site-header p {
    margin: 0;
    color: white;
}

.site-header a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-header a:hover {
    color: #E8E4DC;
}

@media screen and (max-width: 600px) {
    .site-header {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .site-header h1 {
        font-size: 1.1rem;
    }
}

/* Navbar */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #8C8177;
}

.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: white;
    position: relative;
    font-size: 1.15rem;
    font-weight: 300;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E8E4DC;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover {
    color: #E8E4DC;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    left: 0;
}

.nav-menu a.active {
    color: #E8E4DC;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 100001;
}

.menu-label {
    color: white;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 992px) {
    .navbar {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }
}

.mobile-menu {
    flex-basis: 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.navbar.menu-open {
    border-bottom: none;
    box-shadow: none;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: transparent;
    margin: 0;
    padding: 1.5rem 0;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E8E4DC;
    transition: width 0.3s ease, left 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #E8E4DC;
}

.mobile-menu a:hover::after,
.mobile-menu a.active::after {
    width: 100%;
    left: 0;
}

@media screen and (min-width: 993px) {
    .mobile-menu {
        display: none;
    }
}


/* Footer */
.footer {
    background: #8C8177;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-column p {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.footer-column p a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: #E8E4DC;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #59573E;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #E8E4DC;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

