/* Tüm Responsive Ayarlar */

/* Büyük Ekranlar (Extra Large) - 1400px ve üzeri */
@media (min-width: 1400px) {
    /* Container ayarları */
    .content-wrapper {
        max-width: calc(var(--max-width) + 150px);
        padding: 0 25px;
    }
}

/* Tablet (Large) - 991.98px ve altı */
@media (max-width: 991.98px) {
    /* Container ayarları */
    .content-wrapper {
        padding: 0 18px;
    }

    /* Hero Section */
    .hero-section h1 {
        font-size: var(--hero-h1-tablet);
    }

    /* İçerik Kutuları */
    .content-box {
        padding: 2.5rem;
    }

    .content-box p {
        font-size: 1.1rem;
    }

    /* Resimler */
    .responsive-image {
        max-height: 400px;
    }

    /* Kartlar */
    .card-container {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .card-image {
        height: 160px;
    }

    /* Logo Grid */
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--spacing-md);
    }

    /* Text Section - Tablet */
    .text-section {
        max-width: 90%; /* Tablet'te biraz daha geniş */
    }

    /* Alıntı Kutuları */
    .quote-box {
        padding: var(--spacing-lg);
        min-height: auto;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .quote-text {
        font-size: 1.1rem;
        padding-top: var(--spacing-sm);
    }
}

/* Mobil (Medium) - 767.98px ve altı */
@media (max-width: 767.98px) {
    /* Container ayarları */
    .content-wrapper {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero-section {
        padding: var(--spacing-xxl) 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: var(--hero-h1-mobile);
    }

    /* Başlıklar */
    .section-title {
        text-align: center;
    }

    /* İçerik Kutuları */
    .content-box {
        padding: var(--spacing-lg);
        border-radius: var(--border-radius-md);
    }

    .content-box p {
        font-size: var(--text-small);
        text-align: left;
    }

    /* Resimler */
    .image-wrapper {
        border-radius: var(--border-radius-md);
    }

    .responsive-image {
        max-height: 300px;
    }

    /* Video */
    .video-wrapper {
        border-radius: var(--border-radius-md);
    }

    /* Kartlar */
    .card-container {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
    }

    .card-image {
        height: 200px;
    }

    .card-info {
        padding: var(--spacing-sm) 1.2rem 0.8rem 1.2rem;
    }

    /* Logo Grid */
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }

    .logo-item {
        padding: var(--spacing-sm);
        min-height: 80px;
    }

    /* Alıntı Kutuları */
    .quote-box {
        padding: var(--spacing-md);
    }

    .quote-icon {
        font-size: 2.5rem;
        left: var(--spacing-sm);
        top: 0.5rem;
    }

    .quote-text {
        font-size: var(--text-small);
    }
}

/* Küçük Mobil (Small) - 576px ve altı */
@media (max-width: 576px) {
    /* Container ayarları */
    .content-wrapper {
        padding: 0 12px;
    }

    /* Hero Section */
    .hero-section {
        padding: var(--spacing-xl) 0;
    }

    .hero-section h1 {
        font-size: var(--hero-h1-small);
    }

    /* İçerik Kutuları */
    .content-box {
        padding: var(--spacing-md);
    }

    .content-box p {
        font-size: var(--text-xsmall);
        line-height: var(--line-height-tight);
    }

    /* Resimler */
    .image-wrapper {
        border-radius: var(--border-radius-sm);
    }

    .responsive-image {
        max-height: 250px;
    }

    /* Video */
    .video-wrapper {
        border-radius: var(--border-radius-sm);
    }

    /* Kartlar */
    .card-container {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }

    .card-image {
        height: 180px;
    }

    /* Metin Boyutları */
    .text-section {
        max-width: 100%; /* Mobilde tam genişlik */
        font-size: var(--text-normal); /* Mobilde biraz daha küçük */
    }

    /* Logo Grid */
    .logo-item {
        min-height: 70px;
    }

    .logo-item img {
        max-height: 50px;
    }
}

/* Çok Küçük Ekranlar - 400px ve altı */
@media (max-width: 400px) {
    .content-wrapper {
        padding: 0 10px;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .card-container {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }
}
