/**
 * Responsive styles for domain.com
 * Contains media queries for different screen sizes
 */

/* ========== Tablet Styles (max-width: 992px) ========== */
@media screen and (max-width: 992px) {
    /* Typography */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Layout */
    section {
        padding: 4rem 1.5rem;
    }
    
    /* Services */
    .service-image {
        height: 180px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-info p {
        max-width: 100%;
    }
}

/* ========== Mobile Styles (max-width: 768px) ========== */
@media screen and (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    /* Layout */
    section {
        padding: var(--section-padding-mobile);
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        width: 100%;
        padding: 0;
    }
    
    /* Header & Navigation */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Services */
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    /* Order Form */
    .form-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-top .col {
        margin-bottom: 1.5rem;
    }
    
    .legal-links {
        display: flex;
        flex-direction: column;
    }
    
    .legal-links a {
        margin: 0.25rem 0;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-bottom: 1rem;
        padding-right: 0;
    }
}

/* ========== Small Mobile Styles (max-width: 480px) ========== */
@media screen and (max-width: 480px) {
    /* Typography */
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Section Dividers */
    .divider {
        height: 70px;
    }
    
    /* Forms */
    .form-card {
        padding: 1.2rem;
    }
}
