/**
 * OguzInjury Responsive Styles
 * Mobile-first responsive breakpoints
 */

/* ================================================
   Mobile First Base (< 640px)
   ================================================ */

/* Header */
.main-nav {
    display: none;
}

.mobile-menu-button {
    display: block;
}

/* Hero */
.hero-section {
    min-height: 500px;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 2rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.75rem;
}

/* Cards Grid */
.cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Footer */
.footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ================================================
   Small Devices (640px and up)
   ================================================ */
@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   Medium Devices (768px and up)
   ================================================ */
@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 550px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* ================================================
   Large Devices (1024px and up)
   ================================================ */
@media (min-width: 1024px) {
    /* Header */
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .mobile-menu-button {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    /* Hero */
    .hero-section {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    /* Sections */
    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Cards Grid */
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================
   Extra Large Devices (1280px and up)
   ================================================ */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .cards-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================
   Print Styles
   ================================================ */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu,
    .btn,
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    .section {
        padding: 1rem 0;
    }
}

/* ================================================
   Reduced Motion
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================
   Dark Mode Support (Future)
   ================================================ */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here */
}
