/* assets/css/responsive.css - Responsive stil dosyası */

/* Tablet için (992px'den küçük) */
@media (max-width: 991px) {
    .container {
        max-width: 768px;
    }

    .main-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Geniş telefon için (768px'den küçük) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
    }

    .products-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Küçük telefon için (576px'den küçük) */
@media (max-width: 575px) {
    .services-grid,
    .products-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Mobil menüyü gösterme/gizleme için JavaScript */
.mobile-menu.active {
    display: block;
}

@media (max-width: 767px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 17px;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
}
