/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet & Smaller (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Navigation */
    .desktop-menu {
        display: none; /* Hide standard menu */
    }

    .hamburger-menu {
        display: block; /* Show hamburger */
    }

    .main-nav {
        padding: 1.5rem 5%;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Grids */
    .grid-3, .grid-2 {
        grid-template-columns: 1fr; /* Stack everything */
        gap: 40px;
    }

    /* Portfolio Stagger Reset */
    .portfolio-item[style*="margin-top"] {
        margin-top: 0 !important;
    }

    /* Section Padding */
    .section-padding {
        padding: 80px 5% 40px; /* Increased top padding for fixed nav */
    }

    /* About Page Scrolly Layout */
    .scrolly-track {
        height: auto; /* Reset track height on mobile */
    }

    .sticky-wrapper {
        position: static;
        flex-direction: column;
        display: flex;
        gap: 0;
    }

    .col-left {
        width: 100%;
        margin-bottom: 30px;
        order: 1;
    }

    .col-left img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .col-right {
        width: 100%;
        order: 2;
    }

    .col-right .section-title {
        text-align: center !important;
        margin-top: 10px;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}
