/* ================================
   Responsive Design
   Mobile-First Approach
   ================================ */

/* ================================
   Tablet Landscape and Below (992px)
   ================================ */

@media screen and (max-width: 992px) {
    /* Navigation */
    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-logo {
        position: relative;
        left: auto;
        transform: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Releases */
    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    /* Contact Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ================================
   Tablet Portrait and Below (768px)
   ================================ */

@media screen and (max-width: 768px) {
    /* General */
    html {
        font-size: 15px;
    }

    /* Hero Section */
    .hero-section {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .member-badges {
        margin-top: 3rem;
    }

    .badge-logos {
        gap: 1.5rem;
    }

    /* Services */
    .services-section {
        padding: 4rem 1.5rem;
        background-attachment: scroll;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-number {
        font-size: 2rem;
    }

    /* Releases */
    .releases-section {
        padding: 4rem 1.5rem;
    }

    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .release-title {
        font-size: 1.1rem;
    }

    .release-artist {
        font-size: 0.9rem;
    }

    /* About */
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.3rem;
    }

    .about-list li {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-content {
        padding: 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-info p {
        font-size: 0.85rem;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ================================
   Mobile Large (480px)
   ================================ */

@media screen and (max-width: 480px) {
    /* General */
    html {
        font-size: 14px;
    }

    /* Navigation */
    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .mobile-menu {
        padding: 1.5rem;
        gap: 1rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .member-badges {
        margin-top: 2rem;
    }

    .member-text {
        font-size: 0.9rem;
    }

    .badge-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .badge-logo {
        padding: 0.8rem 1.5rem;
        min-width: 120px;
        min-height: 60px;
    }

    .badge-logo img {
        max-height: 40px;
    }

    /* Sections */
    .services-section,
    .releases-section,
    .about-section,
    .contact-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Services */
    .service-item {
        padding: 1.2rem;
    }

    .service-number {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }

    /* Releases */
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .release-cover {
        margin-bottom: 1rem;
    }

    .play-overlay i {
        font-size: 2.5rem;
    }

    .streaming-badges {
        gap: 0.8rem;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
    }

    .badge-icon i {
        font-size: 1rem;
    }

    /* About */
    .about-content {
        gap: 2rem;
    }

    .about-text {
        padding: 0;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .about-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .about-list li::before {
        left: 0;
        font-size: 1.2rem;
    }

    /* Contact */
    .contact-form {
        margin-top: 2rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-info {
        margin-bottom: 1.5rem;
    }

    .footer-info p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .footer-social {
        margin-bottom: 1.5rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon i {
        font-size: 1.3rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    /* Scroll to Top */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ================================
   Mobile Small (360px)
   ================================ */

@media screen and (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .nav-container {
        padding: 0 0.8rem;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

/* ================================
   Desktop Large (1400px and above)
   ================================ */

@media screen and (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .releases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================
   Print Styles
   ================================ */

@media print {
    .navbar,
    .mobile-menu,
    .scroll-to-top,
    .play-overlay,
    .streaming-badges,
    .footer-social {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .hero-section,
    .services-section {
        background-image: none;
        background-color: white;
    }

    .hero-overlay,
    .services-overlay {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ================================
   Accessibility Enhancements
   ================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav-link,
    .service-item,
    .release-item,
    .badge-icon {
        border-width: 2px;
    }

    .submit-btn,
    .social-icon,
    .scroll-to-top {
        border: 2px solid #ffffff;
    }
}

/* Dark Mode Support (already dark by default) */
@media (prefers-color-scheme: dark) {
    /* Enhance existing dark theme */
    .form-group input,
    .form-group textarea {
        background-color: #f5f5f5;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 3px;
}
