/* ONE Studio Production - Main Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #03050B;
    color: #F0F2FA;
    line-height: 1.5;
}

/* Cinematic Background System */
.site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.5), rgba(3, 5, 11, 0.88));
    z-index: -1;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    padding: 24px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    background: rgba(3, 5, 12, 0.75);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(130deg, #FFFFFF, #C0B3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #9EA3C2;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: #E6E9FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.2s;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: #B47CFF;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(105deg, #3D2D7A, #7045E6);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #A87CFF;
    color: #F0EAFF;
    box-shadow: none;
}

.btn-outline:hover {
    background: #5B40B050;
    transform: translateY(-2px);
}

.btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(105deg, #5540A0, #8A5EFF);
}

/* YouTube Buttons specific */
.youtube-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-youtube {
    background: #FF0000;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    background: #CC0000;
    transform: translateY(-3px);
}

.btn-youtube i, .btn-youtube span {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin: 2rem 0 3rem;
    border-radius: 48px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 40px -12px black;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #03050BCC 0%, #03050B99 50%, transparent 100%);
    border-radius: 48px;
}

.hero-content {
    position: relative;
    max-width: 650px;
    padding: 3rem;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-tag {
    font-size: 1.1rem;
    color: #CBC9FF;
    margin-bottom: 2rem;
    border-left: 3px solid #B47CFF;
    padding-left: 18px;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
    letter-spacing: -0.3px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 4rem;
}

.project-card {
    background: #0E1120CC;
    backdrop-filter: blur(10px);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.25s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 32px -10px rgba(0, 0, 0, 0.5);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #7A5FDD80;
    box-shadow: 0 30px 40px -12px black;
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #BCC3E0;
    margin-bottom: 1.5rem;
}

/* Individual Project Page */
.project-hero {
    height: 55vh;
    min-height: 420px;
    background-size: cover;
    background-position: center 30%;
    border-radius: 0 0 48px 48px;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 2rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.project-hero .hero-title {
    background: linear-gradient(0deg, #020617F2, transparent);
    width: 100%;
    padding: 2rem 2rem 1.8rem;
}

.project-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.story-card {
    background: #0B0E1ACC;
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 6px solid #A469FF;
}

.media-section {
    margin: 2.5rem 0;
}

.audio-player {
    background: #0A0D18;
    border-radius: 60px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border: 1px solid #292E44;
}

audio {
    flex: 2;
    min-width: 240px;
    height: 44px;
    border-radius: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    margin: 2rem 0 2rem;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 35px -12px black;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About & Contact Pages */
.about-hero, .contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    border-radius: 48px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-content, .contact-content {
    max-width: 800px;
    margin: 3rem auto;
    background: #0E1120CC;
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content h2, .contact-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #C0B3FF;
}

.about-content p, .contact-content p {
    margin-bottom: 1.2rem;
    color: #D1D6F0;
    line-height: 1.6;
}

.contact-info {
    margin: 2rem 0;
    padding: 1rem;
    background: #0A0D18;
    border-radius: 24px;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info a {
    color: #B47CFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 5rem;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #1B1E30;
    font-size: 0.8rem;
    color: #8C93B0;
}

/* Feature Cards */
.feature-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 0;
}

.feature-card {
    flex: 1;
    background: #0E1120AA;
    border-radius: 28px;
    padding: 1.5rem;
    min-width: 200px;
}

.feature-card strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 780px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 2.3rem;
    }
    
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero::before {
        background: linear-gradient(100deg, #03050BCC 0%, #03050BBB 100%);
    }
    
    .youtube-buttons {
        flex-direction: column;
        align-items: center;
    }
}