/* 
* Responsive CSS for Chabelos Landing Page
* Ensures the site looks good on all device sizes
*/

/* Base styles are mobile-first, these are adjustments for larger screens */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .show {
        padding: 25px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .main-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .merch-gallery {
        justify-content: space-between;
    }
    
    .footer-content {
        flex-direction: row;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .member {
        min-width: 220px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Mobile-specific styles (for screens smaller than 768px) */
@media (max-width: 767.98px) {
    #header .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .social-media {
        display: none;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .band-members {
        justify-content: center;
    }
    
    .member {
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .current-track {
        flex-direction: column;
        text-align: center;
    }
    
    .album-cover {
        margin: 0 auto 15px;
    }
    
    .player-controls {
        margin: 20px auto 0;
    }
    
    .albums {
        justify-content: center;
    }
    
    .album {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .streaming-buttons {
        flex-direction: column;
    }
    
    .video-row {
        flex-direction: column;
    }
    
    .video-item {
        margin-bottom: 20px;
    }
    
    .show {
        flex-direction: column;
        text-align: center;
    }
    
    .show-date {
        margin: 0 auto 20px;
    }
    
    .show-action {
        margin: 20px 0 0;
    }
    
    .venue-map {
        height: 200px;
    }
    
    .merch-gallery {
        justify-content: center;
    }
    
    .merch-item {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-social, .footer-links {
        margin-bottom: 30px;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}

/* For very small devices (landscape phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
