body {
    font-family: 'Roboto Slab', serif !important;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.editorial-shadow {
    box-shadow: 0 24px 40px -12px rgba(50, 18, 17, 0.06);
}

.ghost-border {
    border: 1.5px solid rgba(224, 191, 188, 0.15);
}

.ghost-border:hover {
    border-color: rgba(224, 191, 188, 0.3);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

/* Text Shadow Classes */
.text-shadow-sm {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-shadow-lg {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.text-shadow-xl {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #6b2424;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 50;
    border-top: 3px solid #fed65b;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #4c0005;
    border-left-color: #fed65b;
    padding-left: 24px;
    color: #fff;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #4c0005;
    flex-direction: column;
    z-index: 40;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a,
.mobile-menu button {
    padding: 16px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    background: #6b2424;
    padding-left: 32px;
}

.mobile-submenu {
    display: none;
    background: #3a0004;
    flex-direction: column;
    width: 100%;
}

.mobile-submenu.show {
    display: flex;
}

.mobile-submenu a {
    padding-left: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }

    .hamburger-btn {
        display: none !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Roboto Slab', serif !important;
}