/* responsive.css - Responsive Tasarım */

/* Large Desktop (1440px ve üstü) */
@media (min-width: 1440px) {
    :root {
        --container-width: 1400px;
    }
}

/* Tablet ve Küçük Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-dark);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        z-index: 999;
        backdrop-filter: blur(10px);
        justify-content: flex-start;
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info-hero {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil (576px - 767px) */
@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .concert-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .concert-info {
        grid-template-columns: 1fr;
    }
    
    .concert-actions {
        flex-direction: column;
    }
    
    .btn-ticket {
        width: 100%;
        justify-content: center;
    }
    
    .reference-grid {
        grid-template-columns: 1fr;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
    }
    
    .category-tab {
        width: 100%;
        text-align: center;
    }
    
    .global-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-button .tooltip {
        display: none;
    }
}

/* Küçük Mobil (575px ve altı) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-content h3 {
        font-size: 2rem;
    }
    
    .group-logo-container {
        width: 120px;
        height: 120px;
    }
    
    .group-card-logo {
        padding: 1.5rem 1rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Login sayfası responsive */
    .login-box {
        padding: 2rem 1.5rem;
    }
    
    /* Admin panel responsive */
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .table-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Çok küçük ekranlar (320px - 375px) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .stat-content h3 {
        font-size: 1.8rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Yüksek çözünürlük ekranlar için */
@media (min-resolution: 192dpi) {
    .hero {
        background-attachment: scroll;
    }
}

/* Koyu mod tercihi */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--primary-dark);
        color: var(--text-light);
    }
}

/* Açık mod tercihi (isteğe bağlı) */
@media (prefers-color-scheme: light) {
    :root {
        --primary-dark: #f5f5f5;
        --secondary-dark: #e0e0e0;
        --card-dark: #ffffff;
        --card-light: #f0f0f0;
        --border-dark: #ddd;
        --text-light: #333;
        --text-gray-light: #555;
        --text-gray: #777;
    }
    
    .hero {
        background: linear-gradient(rgba(245, 245, 245, 0.9), rgba(224, 224, 224, 0.95)),
                    url('../images/heroes/hero-bg-light.jpg');
    }
    
    .navbar {
        background-color: var(--secondary-dark);
        border-bottom-color: var(--border-dark);
    }
}

/* Yazdırma için stiller */
@media print {
    .navbar,
    .hero-buttons,
    .global-contact,
    .footer,
    .btn-contact {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .hero {
        padding: 50px 0;
        background: none;
    }
    
    .hero h1 {
        color: #000;
        -webkit-text-fill-color: #000;
    }
}