/* Base responsive styles */
html {
    background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
}

* {
    box-sizing: border-box;
}

h1{
    text-align: center;
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
}

ul{
    list-style-type: none;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

li{
    display: inline-block;
    margin: 0;
}

li a {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    display: block;
    border: 2px solid #000;
    border-radius: 5px;
    background: #fff;
    transition: all 0.3s ease;
}

li a:hover {
    background: #000;
    color: #fff;
    cursor: pointer;
}

.about-image {
    display: block;
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 30px auto;
    border: 2px solid #000;
    border-radius: 10px;
}

#bio {
    width: 50%;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #000;
}

/* Billboard Slideshow Styles */
.billboard-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #000;
    height: 200px;
}

/* Home page specific centering */
body.home-page {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%) !important;
    background-color: #000 !important;
}

.home-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%) !important;
    background-color: #000 !important;
}

.home-page .billboard-container {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    border-radius: 0;
}

.home-page .home-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-page h1 {
    color: #fff;
}

.home-page li a {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.home-page li a:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.billboard-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.billboard-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
}

.billboard-slide.active {
    opacity: 1;
    z-index: 1;
}

.billboard-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 3px 3px 0px #000, -3px -3px 0px #000, 3px -3px 0px #000, -3px 3px 0px #000;
    margin: 0;
    padding: 0;
    animation: slideIn 1s ease-out;
}

.billboard-slide:nth-child(2) .billboard-text {
    color: #000;
    background: #fff;
    padding: 20px 40px;
    text-shadow: none;
    border: 5px solid #000;
}

.billboard-slide:nth-child(3) .billboard-text {
    color: #fff;
    background: #000;
    padding: 20px 40px;
    text-shadow: none;
    border: 5px solid #fff;
}

.billboard-slide:nth-child(4) .billboard-text {
    color: #000;
    text-shadow: 3px 3px 0px #fff, -3px -3px 0px #fff, 3px -3px 0px #fff, -3px 3px 0px #fff;
    background: transparent;
}

.billboard-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Music Embeds Styles */
.music-embeds {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    font-family: 'Roboto', sans-serif;
}

.embed-container {
    width: 100%;
}

.embed-container h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.embed-container iframe {
    width: 100%;
    max-width: 100%;
    border: none;
}

/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.contact-section {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.contact-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px 0;
    font-family: 'Roboto', sans-serif;
}

.contact-email {
    text-align: center;
    font-size: 1.3rem;
    margin: 0;
}

.contact-email a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: #333;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.social-link:hover {
    background: #000;
    color: #fff;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.social-text {
    flex: 1;
}

/* Services Page Styles */
.services-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

#production-service {
    cursor: pointer;
}

.services-note {
    text-align: center;
    font-size: 1rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
    font-style: italic;
}

.service-item h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.service-item:hover h2 {
    color: #fff;
}

/* Inquiry Modal Styles (for Services page) */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.inquiry-modal.active {
    display: flex;
}

.inquiry-modal-content {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.inquiry-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.inquiry-close:hover {
    color: #666;
}

.inquiry-modal-content h2 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

#production-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-submit-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-submit-btn:hover {
    background: #fff;
    color: #000;
}

/* Audio Modal Styles */
.audio-modal-content {
    max-width: 800px;
}

.modal-description {
    color: #000;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.audio-players-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0;
}

.audio-player-wrapper {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    background: #f9f9f9;
}

.audio-player-wrapper h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

.simple-audio-player {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.audio-play-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.audio-play-btn:hover {
    background: #fff;
    color: #000;
}

.audio-progress-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.audio-progress-bar {
    width: 100%;
    height: 8px;
    background: #ddd;
    border: 1px solid #000;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-progress-fill {
    height: 100%;
    background: #000;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 4px;
}

.audio-time {
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 90px;
    text-align: right;
    flex-shrink: 0;
}

/* Samples and Vocals Container - Grid Layout */
.samples-container,
.vocals-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 0;
}

/* Mixing/Mastering Contact Section */
.mixing-contact-section {
    margin-top: 0;
    padding-top: 0;
}

.mixing-contact-section h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
}

#mixing-mastering-form,
#samples-form,
#session-vocals-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }
    
    /* Typography */
    h1 {
        font-size: 1.5rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    /* Navigation - 3x3 Grid */
    ul {
        font-size: 1rem;
        padding: 0 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    li {
        display: block;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    li a {
        padding: 10px 8px;
        display: block;
        border: 2px solid #000;
        border-radius: 5px;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    li a:hover {
        background: #000;
        color: #fff;
    }
    
    /* About Image */
    .about-image {
        max-width: 90%;
        margin: 20px auto;
    }
    
    /* Bio Box */
    #bio {
        width: 90%;
        padding: 15px;
        font-size: 1rem;
        margin: 20px auto;
    }
    
    /* Billboard */
    .billboard-container {
        height: 250px;
    }
    
    .billboard-text {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }
    
    .billboard-slide:nth-child(2) .billboard-text,
    .billboard-slide:nth-child(3) .billboard-text {
        padding: 20px 30px;
        font-size: 2rem;
    }
    
    .home-page .billboard-container {
        margin: 0 auto 20px auto;
    }
    
    .home-page .home-nav {
        padding: 0 10px;
    }
    
    /* Music Embeds */
    .music-embeds {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
        margin: 20px auto;
    }
    
    .embed-container h2 {
        font-size: 1.3rem;
    }
    
    /* Services Page */
    .services-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
        margin: 20px auto;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .service-item h2 {
        font-size: 1.5rem;
    }
    
    .services-note {
        font-size: 0.9rem;
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .inquiry-modal-content {
        padding: 20px;
        width: 95%;
        max-width: 95%;
    }
    
    .inquiry-modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .inquiry-submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Audio Modal Mobile Styles */
    .audio-modal-content {
        max-width: 95%;
        padding: 20px;
    }
    
    .audio-player-wrapper {
        padding: 15px;
    }
    
    .audio-player-wrapper h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .audio-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .audio-play-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .audio-time {
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .mixing-contact-section {
        margin-top: 0;
        padding-top: 0;
    }
    
    .mixing-contact-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    /* Contact Page */
    .contact-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .contact-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-email {
        font-size: 1rem;
    }
    
    .contact-email a {
        font-size: 1rem;
        word-break: break-word;
    }
    
    .social-link {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    body {
        padding: 0 5px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    ul {
        font-size: 0.9rem;
        gap: 8px;
        padding: 0 5px;
    }
    
    li a {
        padding: 8px 6px;
        font-size: 0.85rem;
    }
    
    .about-image {
        max-width: 95%;
        margin: 15px auto;
    }
    
    #bio {
        width: 95%;
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .billboard-container {
        height: 200px;
    }
    
    .billboard-text {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .billboard-slide:nth-child(2) .billboard-text,
    .billboard-slide:nth-child(3) .billboard-text {
        padding: 18px 25px;
        font-size: 1.7rem;
    }
    
    .contact-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-email {
        font-size: 0.95rem;
    }
    
    .embed-container h2 {
        font-size: 1.1rem;
    }
    
    .service-item h2 {
        font-size: 1.3rem;
    }
    
    .services-note {
        font-size: 0.85rem;
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .inquiry-modal-content {
        padding: 15px;
    }
    
    .inquiry-modal-content h2 {
        font-size: 1.3rem;
    }
    
    .inquiry-close {
        right: 15px;
        top: 10px;
        font-size: 1.5rem;
    }
}