/* ===================================
   Responsive Styles
   Chizota Portfolio Website
   =================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .ventures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Section Headers */
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* About Section */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: row;
    }

    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }

    .timeline-card h3 {
        font-size: 20px;
    }

    /* Ventures */
    .ventures-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .venture-card {
        padding: 30px 20px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-date {
        top: -25px;
        right: 20px;
        padding: 10px;
    }

    .date-day {
        font-size: 20px;
    }

    /* Contact */
    .contact-form {
        padding: 30px 20px;
    }

    .social-links-large {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    /* Lightbox */
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }

    .calendly-inline-widget {
        height: 600px !important;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .calendly-section h3 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .scroll-indicator {
        display: none;
    }
}