/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Small tablet (max 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__names {
        font-size: 3.5rem;
    }

    .hero__logo {
        max-width: 180px;
    }

    .hero__date {
        font-size: 1.05rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown__number {
        font-size: 2.2rem;
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .registry-category__header {
        flex-direction: column;
        text-align: center;
    }

    .registry-category__description {
        padding-left: 1.5rem;
    }

    .footer-names {
        font-size: 2rem;
    }

    .info-section__illustration {
        width: 120px;
    }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
        --header-height: 60px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .hero__names {
        font-size: 2.5rem;
    }

    .hero__logo {
        max-width: 150px;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .hero__date {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown__number {
        font-size: 1.8rem;
    }

    .countdown__label {
        font-size: 0.65rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .logo-img {
        height: 38px;
    }

    .form-radio-group:not(.form-radio-group--vertical) {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn--large {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .registry-category__image {
        width: 60px;
        height: 60px;
    }

    .iban-box {
        display: block;
        padding: 1.25rem;
    }

    .info-section__illustration {
        width: 100px;
    }
}
