/* 
   Altundağ Kuaför Salon - Responsive Stylesheet
   Core Design System v1.0
*/

/* Large Devices (Desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    /* Service Cards */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Info Cards */
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 768px) {
    /* Header */
    .header-actions .btn-text {
        display: none;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        margin: 5px 0;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Time Slots */
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    /* Header */
    .logo-container img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
    }
    
    /* Sections */
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    /* Service Cards */
    .service-card {
        margin-bottom: 20px;
    }
    
    /* Contact Form */
    .contact-form .btn {
        width: 100%;
    }
    
    /* Modal */
    .modal-dialog {
        width: 95%;
        margin: 10px auto;
    }

    /* Time Slots */
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}
