/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Increase Bio heading size on mobile */
    .about-page .section-title.caveat-hero-title {
        font-size: 4rem;
    }
    
    /* Increase Music heading size on mobile */
    .music-page .section-title.caveat-hero-title {
        font-size: 4rem;
    }
    
    /* Increase Contact heading size on mobile */
    .contact-page .section-title.caveat-hero-title {
        font-size: 4rem;
    }
    
    /* Increase Events heading size on mobile */
    .events-page .section-title.caveat-hero-title {
        font-size: 4rem;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 0.5rem;
    }

    /* Hero content mobile styles */
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    /* Adjust spacing for mobile */
    .row[style*="height: 20vh"] {
        height: 30vh !important;  /* Increase height on mobile */
    }

    .carousel-section {
        margin-top: 1rem !important;  /* Remove negative margin on mobile */
    }

    /* Featured song mobile styles */
    .featured-song h3 {
        font-size: 1.8rem;
    }

    .featured-song h4 {
        font-size: 1.2rem;
    }

    /* Card title mobile styles */
    .card-title {
        font-size: 1.3rem;
    }

    .card-body h4 {
        font-size: 1rem;
    }

    .carousel-item img {
        height: 350px;
    }

    footer .col-md-4 {
        text-align: center !important;
        margin: 0.5rem 0;
    }

    /* Featured video mobile styles */
    .featured-song .card {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0.5rem !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% + 2rem) !important;
    }

    .featured-song .ratio {
        min-height: 45vh !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .featured-song .card-body {
        padding: 0.5rem !important;
        margin: 0 !important;
    }

    /* Adjust content page padding for mobile */
    .content-page {
        margin: 80px auto 80px;
        min-height: calc(100vh - 160px);
        padding: 1rem 1rem 2rem !important;
        margin-left: 2% !important;
        margin-right: 2% !important;
        max-width: 96% !important;
    }

    /* Home page specific mobile adjustments */
    .home-page .content-page {
        padding: 1rem 1rem 2rem !important;
    }

    /* Adjust carousel width for mobile */
    .carousel-section {
        width: 100%;  /* Make carousel full width of container */
    }

    /* Adjust featured song container padding */
    .featured-song.container-fluid {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .featured-song h3 {
        margin-bottom: 1rem !important;
    }

    .video-container {
        max-height: none;
        height: auto;
        overflow: visible;
        padding-bottom: 2rem;
    }

    /* Make music page content scroll with page on mobile */
    .mobile-scroll {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .mobile-scroll .row {
        margin-bottom: 2rem;
    }
} 