/* ====================================
   LUCAS GUIDE DE PÊCHE - RESPONSIVE STYLES
   ==================================== */

@media (max-width: 991px) {

    /* === HEADER & NAVIGATION === */
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: var(--shadow-xl);
        padding: var(--spacing-xl);
        gap: var(--spacing-xl);
        z-index: 998;
        /* Just below burger (1001) but high enough */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a:not(.btn) {
        color: var(--color-text-primary);
        font-size: 1.2rem;
    }

    /* === BURGER ANIMATION === */
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--color-blue-lake);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: var(--color-blue-lake);
    }

    /* === HERO SECTION === */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-secondary {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 768px) {

    /* === GENERAL === */
    .section {
        padding: var(--spacing-xl) 0;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    /* === HERO === */
    .hero h1 {
        font-size: 2rem;
    }

    .hero-secondary .hero-content h1 {
        transform: translateY(-30px);
        margin-bottom: -30px;
    }

    .hero-content-home {
        transform: translateY(0);
    }

    .hero-content-home h1 {
        transform: none;
        margin-bottom: var(--spacing-md);
        padding-bottom: 120px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .boat-equipment-list {
        margin-left: 1.25rem;
    }

    /* === CARDS - Afficher la photo en entier sur mobile === */
    .card-img {
        height: auto;
        object-fit: contain;
        background-color: #f5f5f5;
    }

    /* === FOOTER === */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .social-links {
        justify-content: center;
    }

    .footer-links li {
        justify-content: center;
    }

    /* === UTILS === */
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        flex-direction: column;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* === ICON CARDS === */
    .icon-card {
        padding: 0.5rem;
    }

    .icon-card-icon {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .icon-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
        line-height: 1;
    }

    .icon-card p {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
}
