@font-face {
    font-family: 'Cinzel';
    src: url('/fonts/Cinzel-Regular.woff2') format('woff2'), url('/fonts/Cinzel-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/fonts/Cinzel-Bold.woff2') format('woff2'), url('/fonts/Cinzel-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/fonts/Cinzel-Black.woff2') format('woff2'), url('/fonts/Cinzel-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel Decorative';
    src: url('/fonts/CinzelDecorative-Regular.woff2') format('woff2'), url('/fonts/CinzelDecorative-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel Decorative';
    src: url('/fonts/CinzelDecorative-Bold.woff2') format('woff2'), url('/fonts/CinzelDecorative-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel Decorative';
    src: url('/fonts/CinzelDecorative-Black.woff2') format('woff2'), url('/fonts/CinzelDecorative-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --black: #000000;
    --dark-red: #3D0000;
    --medium-red: #950101;
    --bright-red: #FF0000;
}
body {
    font-family: 'Cinzel Decorative', serif;
    background-color: var(--black);
    color: white
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700; /* Bold weight */
}

.nav-link, .dropdown-item {
    font-family: 'Cinzel', serif;
    font-weight: 700; /* Bold weight */
}

.custom-header {
    background-color: var(--black);
    padding: 1rem 0;
    position: relative;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo-svg {
    height: 50px;
    width: auto;
    max-width: 100%;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 700;
    transition: color 0.3s;
    font-family: 'Cinzel', serif;
}

    .nav-link:hover {
        color: var(--bright-red) !important;
    }

.dropdown-menu {
    background-color: var(--dark-red);
    border: 1px solid var(--medium-red);
}

.dropdown-item {
    color: white !important;
    font-family: 'Cinzel', serif;
}

    .dropdown-item:hover {
        background-color: var(--medium-red);
        color: var(--bright-red) !important;
    }
/* Mobile Header Adjustments */
@media (max-width: 991.98px) {
    .logo-container {
        order: -1;
        margin: 10px 0;
        width: 100%;
    }

    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }

    .navbar-collapse {
        background-color: var(--dark-red);
        padding: 15px;
        margin-top: 10px;
        border-top: 1px solid var(--medium-red);
    }

    .nav-item {
        text-align: center;
        padding: 5px 0;
    }
}
.custom-footer {
    background-color: var(--dark) !important;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
    font-family: 'Cinzel', serif;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    max-width: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: white;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: var(--bright-red);
    }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

    .social-icon:hover {
        color: var(--bright-red);
    }

.footer-bottom {
    border-top: 1px solid var(--medium-red);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

h5 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bright-red);
}

/* Mobile Footer Adjustments */
@media (max-width: 767.98px) {
    .custom-footer .col-md-4,
    .custom-footer .col-md-2 {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .input-group {
        flex-direction: column;
    }

        .input-group input {
            margin-bottom: 10px;
            width: 100% !important;
        }

        .input-group button {
            width: 100%;
        }
}
