:root {
    --primary-light-blue: #4d94d3;
    --primary-blue: #042c4e;
    --accent-orange: #ff8f49;
    --accent-pink: #EC4899;
    --card-background: rgba(0,0,0,0.2);
    --dark-bg: #042c4e;
    --text-white: #FFFFFF;
    --text-gray: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, var(--primary-light-blue), var(--primary-blue));
    --gradient-accent: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--dark-bg);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(3, 22, 39, 0.72);
    backdrop-filter: blur(4px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display:flex;
    font-size: 1.3rem;
}

.nav-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.brand-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    white-space: nowrap;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn.active {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.nav-btn:not(.active) {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--primary-blue);
}

.nav-btn:not(.active):hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 2rem 40px;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
    background: url('/assets/studio_bkg.jpg') no-repeat 35% 18%;
    background-size: cover;
    max-width: 1136px;
    margin: 0 auto;
    box-shadow: 0 0 2px rgba(0,0,0,0.5), 0 0 24px rgba(0,0,0,0.5);
    border-radius: 0 0 15px 15px;
}
@media (max-width: 1136px) {
    .hero {
      border-radius: 0;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-weight: 300;
}

.hero-location {
    font-size: 1.4rem;
    color: var(--accent-orange);
    font-weight: 600;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 100px;
}

.service-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-section.active {
    display: block;
}

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

.section-header {
    text-align: center;
    margin: 2em 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.service-card {
    background: var(--card-background);
    border: 2px solid var(--primary-light-blue);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-1em);
    box-shadow: 0 1em 2em rgba(0,0,0,0.2);
    border-color: var(--accent-orange);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 1rem 0;
}

.service-card .price span {
    font-size: 1rem;
    color: #9CA3AF;
}

.service-card .description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Instruments Section */
.instruments-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 4px solid var(--accent-pink);
}

.instruments-section h3 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.instruments-section p {
    color: var(--text-gray);
    line-height: 2;
    font-size: 1.33rem;
}

/* Film Services */
.film-services {
    text-align: center;
    margin: 3rem 0;
}

.film-services .service-card {
    max-width: 500px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    margin: 60px 0;
}

.video-section-title {
    text-align: center;
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-light-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.5);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder::before {
    content: '▶';
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    background: var(--card-background);
    border-radius: 20px;
    padding: 3rem;
    margin: 60px 0;
    border: 2px solid var(--primary-blue);
}

.about-section h2 {
    color: var(--accent-orange);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.awards {
    margin-top: 2rem;
}

.awards h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.awards ul {
    list-style: none;
    padding-left: 0;
}

.awards li {
    margin: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.awards li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.awards a {
    color: var(--accent-orange);
    text-decoration: none;
}

.awards a:hover {
    text-decoration: underline;
}

/* Fixed Contact Button */
.contact-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: var(--gradient-accent);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-fixed:hover {
    transform: scale(1.05);
    animation: none;
}

.contact-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: 0 8px 15px rgba(0,0,0,0.3); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-fixed {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 960px) {
    .brand-cont { display: none; }
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
  .header {
      font-size: 3.4vw;
      padding: 0.75rem 1rem;
  }
  .nav-btn {
    padding: 0.6em 3vw;
  }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 1rem 100px;
    }
    
    .hero {
        padding: 100px 1rem 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .instruments-section {
        padding: 1.5rem 1rem;
    }
}

/* About Content */
.about-content {
    background: var(--card-background);
    border-radius: 20px;
    padding: 3rem;
    margin: 40px 0;
    border: 2px solid var(--primary-blue);
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Spotify Link */
.spotify-link {
    margin-top: 2rem;
    text-align: center;
}

.spotify-btn {
    display: inline-block;
    background: url('/assets/mike_spotify.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    text-decoration: none;
    color: transparent;
    width:400px;
    height:90px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    box-sizing: content-box;
}
@media (max-width: 768px) { .spotify-btn { width:360px; height:81px; } }
@media (max-width: 640px) { .spotify-btn { width:60vw; height:13vw; } }

.spotify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(31, 214, 96, 0.32);
}

.spotify-circle {
    width: 40px;
    height: 40px;
    background: #1DB954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    margin-top: 40px;
}

.contact-section h2 {
    color: var(--accent-orange);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--card-background);
    border: 2px solid var(--primary-light-blue);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.4;
}

/* IMDB Video Placeholder */
.imdb-placeholder::before {
    display: none;
}

.imdb-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}
