* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #5B3535;
    --gold: #D1B361;
    --lavender: #C2C2FF;
    --cream: #FAF8F0;
    --dark: #2a2a2a;
    --heading-font: 'Roboto Slab', serif;
    --body-font: 'Roboto Serif', serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark);
    background: var(--cream);
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 2rem 5%;
    background: rgba(250, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav.scrolled {
    padding: 1.5rem 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 200px;
    transition: all 0.3s ease;
}

nav.scrolled .logo {
    height: 100px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--body-font);
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-button {
    background: var(--gold);
    padding: 0.7rem 2rem;
    border-radius: 15px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.nav-cta-button:hover {
    background: #e5c670;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 179, 97, 0.3);
}

.nav-cta-button::after {
    display: none;
}

/* Hero Section - Full width */
.hero {
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(rgba(91, 53, 53, 0.6), rgba(91, 53, 53, 0.6)), 
        url('assets/microphone_studio.jpg') center center no-repeat;
    background-size: 100% auto;
    background-color: var(--primary);
    overflow: hidden;
    padding: 320px 0 80px 0;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--lavender);
    opacity: 0.1;
    clip-path: polygon(0 70%, 100% 50%, 100% 100%, 0 100%);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    width: 100%;
}

.hero .tagline {
    font-family: var(--body-font);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--cream);
    margin-bottom: 2.5rem;
    font-weight: 300;
    width: 100%;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(250, 248, 240, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    width: 100%;
}

.cta-button {
    font-family: var(--body-font);
    display: block;
    width: fit-content;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(209, 179, 97, 0.3);
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(209, 179, 97, 0.4);
    background: #e5c670;
}

/* Sound Wave Animation */
.sound-waves {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    width: auto;
}

.wave {
    width: 8px;
    background: var(--cream);
    opacity: 0.8;
    animation: wave 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.wave:nth-child(1) { height: 25px; animation-delay: 0s; }
.wave:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.wave:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.wave:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.wave:nth-child(5) { height: 30px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.8); opacity: 1; }
}

/* Section Styles */
section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

section.hero {
    padding: 320px 0 80px 0;
    max-width: none;
    margin: 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-family: var(--body-font);
    font-size: 1.3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Demo Reels Section */
.demo-reels {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.demo-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.audio-players {
    display: grid;
    gap: 2rem;
}

.demo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.demo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.demo-image:hover img {
    transform: scale(1.05);
}

.audio-item {
    background: var(--lavender);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.audio-item::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
}

.audio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(194, 194, 255, 0.3);
    opacity: 1;
}

.audio-title {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.custom-audio {
    width: 100%;
    height: 50px;
    position: relative;
    z-index: 1;
}

/* Custom audio player styling */
audio::-webkit-media-controls-panel {
    background: white;
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: var(--primary);
    font-family: var(--body-font);
    font-weight: 500;
}

audio::-webkit-media-controls-play-button {
    background-color: var(--gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

audio::-webkit-media-controls-play-button:hover {
    transform: scale(1.1);
}

audio::-webkit-media-controls-timeline {
    background: rgba(91, 53, 53, 0.1);
    border-radius: 10px;
    margin: 0 10px;
}

audio::-webkit-media-controls-volume-slider {
    background: rgba(91, 53, 53, 0.1);
    border-radius: 10px;
}

/* Firefox audio controls */
audio {
    filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%);
}

audio:hover {
    filter: sepia(20%) saturate(100%);
}

/* About Section with Image */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-content {
    line-height: 1.8;
    color: #666;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}


.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
}

/* Clients Section */
.clients {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.client-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.client-description:last-child {
    margin-bottom: 0;
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.0rem;
    align-items: center;
    justify-items: center;
    margin: 3rem auto;
    max-width: 1200px;
    padding-right: 4rem;
}

.client-logo {
    font-family: var(--heading-font);
    width: 180px;
    height: 120px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gold);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.client-logo:hover::before {
    opacity: 0.1;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Section with Image */
.services-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.services-image {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Contact Form */
.contact {
    background: var(--primary);
    border-radius: 20px;
    padding: 4rem 3rem;
    color: white;
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--lavender);
    opacity: 0.1;
    border-radius: 0 20px 20px 0;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.contact .section-title {
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.contact-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(250, 248, 240, 0.9);
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--cream);
}

.form-group input,
.form-group textarea {
    font-family: var(--body-font);
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.submit-button {
    font-family: var(--body-font);
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(209, 179, 97, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(209, 179, 97, 0.4);
    background: #e5c670;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 5%;
    background: var(--primary);
    color: var(--cream);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

footer p {
    margin-bottom: 0.8rem;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}

/* Footer Menu Styles */
.footer-menus {
    margin: 2rem 0;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 1rem;
}

.footer-nav-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 1600px) {
    html {
        font-size: 18px;
    }
    
    #home.hero {
        background-size: 100% auto;
    }
}

@media (max-width: 1200px) {
    .logo-wall {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .about-container,
    .services-container {
        grid-template-columns: 1fr;
    }

    .services-image {
        display: none;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .logo-wall {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    nav {
        padding: 1.5rem 5%;
    }
    
    nav.scrolled {
        padding: 1rem 5%;
    }
    
    .logo {
        height: 120px;
    }
    
    nav.scrolled .logo {
        height: 60px;
    }

    #home.hero {
        padding: 200px 0 70px 0 !important;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    section {
        padding: 3rem 5%;
    }
    .sound-waves {
        margin-top: 1.2rem;
        gap: 10px;
    }
    
    .wave {
        width: 6px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        font-size: 1.4rem;
    }

    .logo-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .client-logo {
        width: 150px;
        height: 100px;
    }
    
    footer {
        padding: 2rem 5%;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    /* Footer menus responsive */
    .footer-nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 100px;
    }
    
    nav.scrolled .logo {
        height: 50px;
    }
    
    nav {
        padding: 1rem 5%;
    }
    
    nav.scrolled {
        padding: 0.75rem 5%;
    }
    
    #home.hero {
        padding: 160px 0 50px 0 !important;
    }
    
    .logo-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .client-logo {
        width: 140px;
        height: 90px;
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        font-size: 1.2rem;
    }
    
    .sound-waves {
        margin-top: 1.5rem;
    }
    
    .footer-nav-links a {
        font-size: 0.9rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}