/**
 * Aurora Split Menu — Layout & Base Styles
 *
 * Structural styles only. Colors, typography, spacing are controlled
 * via Elementor widget style controls (selectors).
 */

/* =========================================================================
   Wrapper
   ========================================================================= */

.aurora-split-menu-wrapper {
    position: relative;
    width: 100%;
}

/* =========================================================================
   Flex Container — Desktop
   ========================================================================= */

.aurora-split-menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Left and right columns take equal remaining space */
.aurora-split-menu-left,
.aurora-split-menu-right {
    flex: 1 1 0;
    min-width: 0;
}

/* Menu halves: ensure UL is flex, alignment controlled by Elementor controls */
.aurora-split-menu-left .aux-master-menu,
.aurora-split-menu-right .aux-master-menu {
    display: flex;
}

/* =========================================================================
   Center Block
   ========================================================================= */

.aurora-split-menu-center {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}

/* Logo */
.aurora-split-logo-link {
    display: inline-block;
    line-height: 0;
}

.aurora-split-logo-link img {
    display: block;
    max-width: 100%;
    height: auto;
}

.aurora-split-logo-link svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Subtitle */
.aurora-split-subtitle {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px;
    text-align: center;
    margin-top: 5px;
}

/* =========================================================================
   Social Icons
   ========================================================================= */

.aurora-split-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

/* Social icons — right side position (4th flex child in container) */
.aurora-split-social--right {
    flex: 0 0 auto;
    margin-top: 0;
}

.aurora-split-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.aurora-split-social-icon i,
.aurora-split-social-icon svg {
    display: block;
}

/* =========================================================================
   Burger Button — Hidden on Desktop
   (Inline <style> from widget hides above breakpoint;
    this ensures base display for mobile)
   ========================================================================= */

.aurora-split-menu-wrapper .aux-burger-box {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* =========================================================================
   Fullscreen Overlay — Logo & Social
   ========================================================================= */

.aurora-split-menu-wrapper .aux-fs-popup .aux-panel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
}

.aurora-fs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.aurora-fs-logo {
    text-align: center;
    margin-bottom: 30px;
}

.aurora-fs-logo-link {
    display: inline-block;
    line-height: 0;
}

.aurora-fs-logo-link img,
.aurora-fs-logo-link svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Override Phlox JS positioning — let flex layout handle centering */
.aurora-split-menu-wrapper .aux-fs-popup .aux-fs-menu {
    position: static !important;
    top: auto !important;
    transform: none !important;
}

/* Override social_visibility & icon_size responsive controls inside overlay */
.aurora-split-menu-wrapper .aux-fs-popup .aurora-split-social {
    display: flex !important;
    margin-top: 30px;
}

.aurora-split-menu-wrapper .aux-fs-popup .aurora-split-social-icon {
    font-size: 35px;
}

.aurora-split-menu-wrapper .aux-fs-popup .aurora-split-social-icon svg {
    width: 35px !important;
    height: 35px !important;
}

/* =========================================================================
   Editor Notice
   ========================================================================= */

.aurora-split-menu-notice {
    padding: 15px;
    background: #f0f0f0;
    border-left: 4px solid #0073aa;
    color: #333;
    font-size: 14px;
}
