/* responsive.css - Responsive styles for GreySolve */

/* Hide hamburger menu on desktop */
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    header, footer {
        padding: 1em;
    }
    main {
        padding: 1em;
    }
    
    /* Mobile Navigation */
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-top: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(27, 54, 93, 0.1);
        width: 100%;
        text-align: left;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0;
        border-radius: 0 0 15px 15px;
    }
    
    /* Hamburger Menu Button */
    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--navy);
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Three Pathways Section - Mobile Responsive */
    .three-pathways-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .three-pathways-card {
        padding: 1.5rem !important;
    }
    
    .three-pathways-card h3 {
        font-size: 1.3rem !important;
        height: auto !important;
        margin-bottom: 1rem !important;
    }
    
    .three-pathways-item {
        margin-bottom: 0.6rem !important;
        padding: 0.4rem 0 !important;
    }
    
    .three-pathways-item span {
        font-size: 0.9rem !important;
    }
    
    .three-pathways-result {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
} 