/* Responsive Styles */

/* General responsive adjustments */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h2 {
        font-size: 2.5em;
    }
    
    .hero-content p {
        font-size: 1.3em;
    }
}

/* Tablet Adjustments */
@media screen and (max-width: 992px) {
    /* Header & Navigation */
    .header-container {
        padding: 0 20px;
    }
    
    .logo-text h1 {
        font-size: 1.4em;
    }
    
    nav ul li {
        margin-left: 20px;
    }
    
    /* Sections */
    .about-content {
        flex-direction: column;
    }
    
    .loyalty-promo .container {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
    }
    
    /* Services Detail Page */
    .service-item {
        flex-direction: column;
    }
    
    .service-item img {
        width: 100%;
        height: 250px;
    }
    
    /* Loyalty Program Page */
    .loyalty-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
}

/* Mobile Landscape Adjustments */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Header & Navigation */
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    nav ul li:last-child {
        margin-bottom: 0;
    }
    
    /* Hero Section */
    .hero {
        height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
    
    /* Sections */
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Contact Page */
    .form-row {
        flex-direction: column;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
    }
    
    /* Loyalty Program Page */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait Adjustments */
@media screen and (max-width: 480px) {
    /* Header */
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-circle span {
        font-size: 14px;
    }
    
    .logo-text h1 {
        font-size: 1.2em;
    }
    
    /* Hero Section */
    .hero-content h2 {
        font-size: 1.8em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    /* Sections */
    .btn, .whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.8em;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-btn {
        margin-left: 0;
    }
    
    /* Service Detail */
    .service-time-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Other */
    .about h2, .services h2, .testimonials h2, .contact-section h2, .page-banner h2 {
        font-size: 1.8em;
    }
    
    .about-content, .contact-info, .contact-main {
        gap: 20px;
    }
    
    .loyalty-cta h3, .how-it-works h3, .benefits h3, .current-promotions h3, .point-system h3 {
        font-size: 1.5em;
    }
    
    .loyalty-program {
        padding: 40px 0;
    }
    
    .loyalty-intro, .how-it-works, .benefits, .point-system, .current-promotions {
        margin-bottom: 40px;
    }
}

/* Print Styles */
@media print {
    header, .hero, .contact-section, footer, .menu-toggle, .cta-buttons, .whatsapp-btn, .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .legal-content {
        padding: 0;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
}