/* Side Menu Styles - Amrit Style */
:root {
    --side-menu-bg: #8B1A3D;
    /* Deep Amrit Red - slightly darker than main for contrast or matching screenshot */
    --side-menu-text: #ffffff;
    --side-menu-gold: #D4AF37;
    /* Gold for accents */
    --side-menu-border: rgba(255, 255, 255, 0.2);
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    /* Adjust for larger screens */
    height: 100%;
    background-color: var(--bs-secondary);
    /* Use main brand red */
    color: white;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.side-menu-overlay.active .side-menu-container {
    transform: translateX(0);
}

/* Header */
.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--side-menu-border);
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
}

.side-menu-brand {
    font-family: var(--bs-heading-font-family);
    /* Playfair or Cinzel */
    font-size: 1.5rem;
    color: var(--bs-primary);
    /* Orange */
    font-weight: 700;
    text-transform: uppercase;
}

/* Navigation Links */
.side-menu-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.side-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-family: var(--bs-body-font-family);
    /* Source Sans 3 */
    font-size: 1.1rem;
    border-bottom: 1px solid var(--side-menu-border);
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.side-menu-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    padding-left: 2.5rem;
    color: var(--bs-primary);
}

.side-menu-link span {
    font-weight: 500;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    stroke: white;
    transition: transform 0.2s ease;
}

.side-menu-link:hover .arrow-icon {
    transform: translateX(5px);
    stroke: var(--bs-primary);
}

/* Footer Section */
.side-menu-footer {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.contact-info {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-link {
    display: flex;
    align-items: center;
    color: var(--bs-primary);
    /* Highlight contact links */
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-link svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.address-text {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 0.85rem;
}

.social-icons-menu {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.social-icon-menu {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon-menu:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.legal-links-menu {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links-menu a {
    color: inherit;
    text-decoration: none;
    margin-right: 10px;
}

.legal-links-menu a:hover {
    color: white;
    text-decoration: underline;
}

/* Scrollbar styling */
.side-menu-nav::-webkit-scrollbar {
    width: 6px;
}

.side-menu-nav::-webkit-scrollbar-track {
    background: transparent;
}

.side-menu-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

@media (min-width: 992px) {
    /* Optional: If we wanted to make this work on desktop too, styles are already responsive-ish.
       Max-width 400px handles the "sheet" aspect.
    */
}