/* Responsive Styles */

/* Mobile First Approach */

/* Extra Small Devices (phones, 320px and up) */
@media (min-width: 320px) {
    /* Base Typography */
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Header */
    .main-header {
        padding: var(--spacing-sm) 0;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-white);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md);
        border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
        z-index: 10;
    }
    
    .nav-menu li {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }
    
    /* Subscription */
    .subscription-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .card.featured {
        transform: none;
    }
    
    .card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Testimonials */
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Trust */
    .partners {
        gap: var(--spacing-xl);
    }
    
    .partners img {
        height: 30px;
    }
    
    .certifications {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto var(--spacing-md);
    }
    
    /* Cookie Popup */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* Base Typography */
    html {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Header */
    .menu-icon {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .nav-menu li {
        padding: 0;
        border-bottom: none;
    }
    
    .contact-info {
        flex-direction: row;
        gap: var(--spacing-md);
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-3xl) 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.25rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image {
        order: 0;
        margin-bottom: 0;
    }
    
    /* Subscription */
    .subscription-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .card.featured {
        transform: scale(1.05);
    }
    
    .card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Trust */
    .certifications {
        flex-direction: row;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-logo img {
        margin: 0 0 var(--spacing-md);
    }
    
    /* Cookie Popup */
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

/* Medium Devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    /* Base Typography */
    html {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .cookie-popup,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background-color: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .policy-content,
    .thank-you-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    @page {
        margin: 2cm;
    }
} 