/* ========================================
   UNIFORM MOBILE MENU - ALL PAGES
   ======================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay::after {
    content: '';
    position: absolute;
    top: -8%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/logo1.png') center center/80% no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 4rem 2rem;
    overflow-y: auto;
    box-sizing: border-box;
    min-height: 100vh;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    padding: 1rem 0;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-link {
    color: #FF8C00 !important;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-weight: 200;
    font-family: 'Diplomata SC', serif;
    padding: 0.8rem 1.5rem;
    position: relative;
    background: transparent;
    border: none;
    overflow: hidden;
    flex-shrink: 0;
}

/* Mobile responsive font sizes */
@media screen and (max-width: 480px) {
    .mobile-menu-link {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }
    
    .mobile-menu-content {
        gap: 1rem;
    }
}

@media screen and (max-height: 700px) {
    .mobile-menu-link {
        font-size: 1.4rem;
        padding: 8px;
    }
    
    .mobile-menu-content {
        gap: 0.8rem;
    }
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: #FF8C00 !important;
    background: transparent;
    border: none;
}

.mobile-menu-link:active {
    transform: none;
}

/* Mobile Menu Social Icons */
.mobile-menu-social {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #FF8C00;
    flex-shrink: 0;
    width: 100%;
}

.mobile-menu-overlay .mobile-social-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Debug - ensure bottom row is visible */
.mobile-social-bottom {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media screen and (max-height: 700px) {
    .mobile-menu-social {
        margin-top: 1rem;
        padding-top: 0.8rem;
        gap: 0.8rem;
    }
    
    .mobile-menu-overlay .mobile-social-row {
        gap: 1rem;
    }
}

.mobile-social-icon {
    display: block;
    transition: transform 0.3s ease;
}

.mobile-social-icon img {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(1.2);
    opacity: 1;
}

.mobile-social-icon:hover img {
    transform: scale(1.15);
    opacity: 1;
}

/* Mobile Menu Bottom Terms Link */
.mobile-menu-bottom {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10001;
}

.mobile-terms-bottom-link {
    color: #666 !important;
    text-decoration: none !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 200 !important;
    transition: color 0.3s ease !important;
    padding: 0.5rem !important;
    display: inline-block !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 4px !important;
}

.mobile-terms-bottom-link:hover {
    color: #FF8C00 !important;
    text-decoration: none !important;
}

@media screen and (max-height: 700px) {
    .mobile-menu-bottom {
        bottom: 0.5rem;
    }
    
    .mobile-terms-bottom-link {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.6rem !important;
    }
}

