/* ZephyrDream Responsive Styles */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    /* Header adjustments */
    .header .container {
        padding: 1rem 15px;
    }
    
    .nav ul {
        gap: 1.5rem;
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    /* Section padding */
    .section,
    .services,
    .about,
    .principles,
    .faq,
    .newsletter-section,
    .contact,
    .service-details,
    .service-pricing,
    .testimonials,
    .cta-section {
        padding: 60px 0;
    }
    
    /* Grid adjustments */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Form adjustments */
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    /* Hide desktop navigation, show mobile menu */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile navigation */
    .nav.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-medium);
        padding: 1rem 0;
    }
    
    .nav.mobile-open ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav.mobile-open li {
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.mobile-open a {
        display: block;
        padding: 1rem;
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Section padding */
    .section,
    .services,
    .about,
    .principles,
    .faq,
    .newsletter-section,
    .contact,
    .service-details,
    .service-pricing,
    .testimonials,
    .cta-section {
        padding: 40px 0;
    }
    
    /* Grid adjustments */
    .services-grid,
    .principles-grid,
    .approaches-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Service cards */
    .service-card {
        padding: 1.5rem;
    }
    
    /* Process steps */
    .process-step,
    .step-detailed {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Newsletter form */
    .newsletter-form {
        padding: 1.5rem;
    }
    
    /* Thank you page */
    .thank-you-section {
        padding: 100px 0 40px;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Contact grid */
    .contact-grid {
        text-align: center;
    }
    
    /* Legal pages */
    .legal-header {
        padding: 100px 0 40px;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-text {
        padding: 0 1rem;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 0;
    }
    
    /* Cookie modal */
    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn {
        width: 100%;
    }
    
    /* Browser guides */
    .browser-guides {
        grid-template-columns: 1fr;
    }
    
    /* Cookie table */
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 500px;
    }
    
    /* Newsletter preview */
    .newsletter-sample {
        margin: 0 1rem;
    }
    
    .newsletter-content {
        padding: 1.5rem;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .header .container {
        padding: 1rem 10px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo img {
        width: 32px;
        height: 32px;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    /* Page headers */
    .page-header,
    .service-hero,
    .newsletter-hero,
    .legal-header {
        padding: 100px 0 30px;
    }
    
    .page-header h1,
    .service-hero h1,
    .newsletter-hero h1,
    .legal-header h1 {
        font-size: 2rem;
    }
    
    /* Typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Cards */
    .service-card,
    .principle-card,
    .approach-card,
    .benefit-card {
        padding: 1.25rem;
    }
    
    /* Service icons */
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large img {
        width: 40px;
        height: 40px;
    }
    
    /* Pricing cards */
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    /* Forms */
    .newsletter-form {
        padding: 1.25rem;
    }
    
    .form-group input {
        padding: 10px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.25rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-section {
        text-align: center;
    }
    
    /* Cookie banner */
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Legal content */
    .contact-info {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Table adjustments */
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .cookie-modal-content {
        padding: 1rem;
    }
    
    .legal-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta-section,
    .btn,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero,
    .page-header,
    .service-hero,
    .newsletter-hero,
    .legal-header {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .service-card,
    .pricing-card,
    .testimonial {
        border: 1px solid #ccc;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --primary-light: #333333;
        --primary-dark: #000000;
        --text-dark: #000000;
        --text-light: #000000;
        --border-color: #000000;
        --background-light: #ffffff;
    }
    
    .btn-primary {
        background: #000000;
        border: 2px solid #000000;
    }
    
    .btn-outline {
        border: 2px solid #000000;
        color: #000000;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .service-card:hover,
    .pricing-card:hover,
    .principle-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* Focus Styles for Accessibility */
@media (prefers-reduced-motion: no-preference) {
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 3px solid var(--accent-color);
        outline-offset: 2px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* This would be implemented if dark mode is desired */
    /* Currently maintaining light theme for all users */
}
