.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ambient-shadow, .soft-shadow {
    box-shadow: 0 20px 30px -10px rgba(67, 16, 107, 0.08);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.gallery-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Mobile Navigation Styles */
.mobile-nav-transition {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-active {
    overflow: hidden;
}

#mobile-menu {
    transform: translateX(100%);
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Mobile Accordion Sub-menu */
.mobile-sub {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid rgba(67, 16, 107, 0.2);
}

.mobile-sub.open {
    display: flex;
}

.mobile-toggle .mobile-icon {
    transition: transform 0.25s ease;
    display: block;
}

.mobile-section.open .mobile-toggle .mobile-icon {
    transform: rotate(180deg);
}

/* Desktop Dropdown Styles */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--on-surface-variant);
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(67, 16, 107, 0.05);
    color: #43106b;
    padding-left: 25px;
}

/* Second Level Dropdown */
.sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.has-sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}
