/* 
 * FK Danışmanlık - Responsive Stil Dosyası
 * Mobil uyumlu tasarım için medya sorguları
 */

/* Tablet ve küçük ekranlar (992px'e kadar) */
@media (max-width: 992px) {
    .container {
        max-width: 100%;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Header */
    .menu-toggle {
        display: block;
    }
    
    .main-nav .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav .menu.active {
        left: 0;
    }
    
    .main-nav .menu li {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-media {
        display: none;
    }
    
    /* Hero Section */
    .hero-section {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* YouTube Grid */
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    /* About Page */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Blog Page */
   @media (max-width: 991px) {
    .blog-content {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 180px;
    }
}
    
    /* Expert Page */
    .expert-profile {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Page */
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Appointment Page */
    .appointment-content {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil ekranlar (768px'e kadar) */
@media (max-width: 768px) {
    .section-header h1,
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Header */
    .header-inner {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .appointment-btn {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    /* Hero Section */
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* YouTube Grid */
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    /* Blog Page */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Page */
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    /* Appointments Table */
    .appointments-table {
        font-size: 14px;
    }
    
    .appointments-table th,
    .appointments-table td {
        padding: 8px;
    }
    
    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* Çok küçük mobil ekranlar (576px'e kadar) */
@media (max-width: 576px) {
    .section-header h1,
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero-section {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content h2 {
        font-size: 16px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    /* Blog Detail */
    .post-title {
        font-size: 26px;
    }
    
    .post-featured-image {
        margin: 0 -20px 25px;
    }
    
    .post-meta {
        gap: 10px;
        flex-direction: column;
    }
    
       .blog-post {
        padding: 20px;
    }
    
        .social-buttons {
        flex-direction: column;
    }
    
     .social-button {
        width: 100%;
    }
    
    /* Form Elements */
    .form-group .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Appointments Table */
    .appointments-table {
        font-size: 12px;
    }
    
    .appointments-table th,
    .appointments-table td {
        padding: 6px;
    }
    
    .btn-cancel {
        padding: 3px 8px;
        font-size: 12px;
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
    }
    .hero-content-inner {
        flex-direction: column;
        padding: 40px 0;
    }
    .hero-text {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .hero-image-container {
        flex: 0 0 100%;
        justify-content: center;
        height: 350px;
        position: relative;
    }
    .hero-person-image {
        position: relative;
        height: 100%;
        max-height: 350px;
    }
    .quote {
        font-size: 1.8rem;
    }
    .signature {
        text-align: center;
    }
    .services-grid, .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-inner {
        padding: 30px 0;
    }
    .hero-image-container {
        height: 300px;
    }
    .hero-person-image {
        max-height: 300px;
    }
    .quote {
        font-size: 1.6rem;
    }
    .signature {
        font-size: 2.5rem;
    }
    .services-grid, .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content-inner {
        padding: 20px 0;
    }
    .hero-image-container {
        height: 250px;
    }
    .hero-person-image {
        max-height: 250px;
    }
    .quote {
        font-size: 1.4rem;
    }
    .signature {
        font-size: 2rem;
    }
}
@media (max-width: 991px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .white-logo {
        max-width: 150px;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}