/* 
 * Sirius Songs - Responsive Stylesheet
 * Handles all responsive design aspects
 */

/* ==================== 
   Responsive Styles
   ==================== */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    /* Already covered by default styles */
}

/* Medium Desktops (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        margin-top: 1rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-member:nth-child(3),
    .team-member:nth-child(4) {
        margin-top: 1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid .value-card:nth-child(3),
    .values-grid .value-card:nth-child(4) {
        margin-top: 1rem;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-large);
        transition: var(--transition-medium);
        z-index: 1000;
        padding: 4rem 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-list li {
        margin: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
        margin-top: 1rem;
    }
    
    .occasions-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    
    .studio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        margin-top: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-row:nth-child(even) {
        direction: ltr;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-card {
        transform: none;
        margin: 2rem 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .faq-categories {
        flex-wrap: wrap;
    }
    
    .faq-categories a {
        margin-bottom: 0.5rem;
    }
    
    .form-steps-indicator {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .occasion-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Phones (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    table.comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .contact-cta {
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-steps-indicator .step-title {
        display: none;
    }
    
    .form-steps-indicator {
        justify-content: space-around;
    }
    
    .occasion-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .faq-categories a {
        margin: 0.25rem;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Small Mobile Phones (Up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cta h2 {
        font-size: 1.4rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        margin-left: auto;
    }
    
    .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features {
        padding: 0 1rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1.5rem;
    }
    
    .faq-question i {
        font-size: 0.8rem;
    }
    
    .contact-info .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 0.5rem;
    }
    
    .form-steps-indicator {
        padding: 0.5rem 0;
    }
    
    .step-indicator {
        width: 30px;
        height: 30px;
    }
    
    .form-navigation {
        display: flex;
        flex-direction: column;
    }
    
    .form-navigation .btn {
        margin-bottom: 0.5rem;
    }
}

/* Additional Responsive Contact Page Styles */
@media (min-width: 992px) {
    .contact-container {
        display: grid;
        grid-template-columns: 40% 60%;
        gap: 2rem;
    }
}

/* Additional Responsive Form Styles */
@media (min-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-navigation {
        display: flex;
        justify-content: space-between;
    }
}

/* Responsive FAQ Category Tabs */
@media (max-width: 767px) {
    .faq-categories {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .faq-categories a {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Responsive Form Step Indicators */
@media (max-width: 767px) {
    .form-steps-indicator {
        display: flex;
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0.5rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

/* Custom Styles for Song Creation Form */
@media (min-width: 768px) {
    .occasion-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .style-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .occasion-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .style-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .occasion-options {
        grid-template-columns: 1fr;
    }
    
    .style-options {
        grid-template-columns: 1fr;
    }
}