/* Annual Alumni Week - Mobile Styles */

/* ========================================
   TABLET STYLES (768px and below)
   ======================================== */

@media (max-width: 768px) {
    /* Header adjustments */
    .custom-header-content {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .main-site-logo {
        order: 1;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    /* Navigation menu - hidden by default */
    .alumni-nav-menu {
        order: 3;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0033a0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }
    
    .alumni-nav-menu.active {
        max-height: 1000px;
        overflow-y: auto;
    }
    
    .alumni-nav-menu .alumni-menu {
        flex-direction: column;
    }
    
    .alumni-nav-menu .alumni-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile submenus stack vertically */
    .alumni-nav-menu .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .alumni-nav-menu .sub-menu .sub-menu {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .alumni-nav-menu .sub-menu .sub-menu a {
        padding-left: 40px;
    }
    
    .alumni-nav-menu li.open > .sub-menu {
        display: block;
    }
    
    .alumni-nav-menu .sub-menu li.menu-item-has-children > a::after {
        content: ' ▼';
        float: right;
    }
    
    /* Logo sizing */
    .uwpiaa-logo {
        height: 50px;
    }
    
    /* Hero section adjustments */
    .alumni-hero-section {
        height: 180px;
    }
    
    .alumni-hero-overlay {
        padding: 30px 20px 20px 20px;
    }
    
    .alumni-hero-title {
        font-size: 1.75rem;
    }
    
    /* Typography adjustments */
    .single-annual-alumni-week h2,
    .single-annual-alumni-week .entry-content h2 {
        font-size: 1.75rem;
    }
    
    .single-annual-alumni-week h3,
    .single-annual-alumni-week .entry-content h3 {
        font-size: 1.375rem;
    }
}

/* ========================================
   MOBILE STYLES (480px and below)
   ======================================== */

@media (max-width: 480px) {
    /* Hero section adjustments */
    .alumni-hero-section {
        height: 150px;
    }
    
    .alumni-hero-overlay {
        padding: 20px 20px 20px 20px;
    }
    
    .alumni-hero-title {
        font-size: 1.5rem;
    }
}
