/* Responsive Styles */

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .salon-detail-header {
        flex-direction: column;
    }
    
    .salon-detail-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .nav {
        flex-wrap: wrap;
    }
    
    .nav-list {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }
    
    .search-flex {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-input {
        margin-bottom: 10px;
    }
    
    .dashboard {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        order: 2;
    }
    
    .dashboard-content {
        order: 1;
    }
    
    .table-container {
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-form-container {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .cta, .hero {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .section {
        padding: 10px 0;
        page-break-inside: avoid;
    }
    
    .btn {
        border: 1px solid #000;
        color: #000;
        background: none;
    }
}