/* Yovara Motion Pictures - Clean Cinematic Layout */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    background-color: #0b0f19 !important;
    color: #f8fafc !important;
    width: 100%;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #38bdf8;
}

nav a {
    color: #f1f5f9;
    text-decoration: none;
    margin-left: 30px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #38bdf8;
}

/* Hero Section with Only the Big Poster */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 130px 20px 60px 20px;
    background: #0b0f19 !important;
}

.hero-poster-container {
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(56, 189, 248, 0.3);
    margin-bottom: 30px;
}

.hero-poster-container img {
    width: 100%;
    height: auto;
    display: block;
}

.btn {
    background: #38bdf8;
    color: #0b0f19;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0ea5e9;
}

section {
    padding: 100px 50px;
    background-color: #0b0f19 !important;
}

.center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #1e293b !important;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Instagram 4:5 Ratio for BTS Photos */
.bts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bts-card {
    background: #1e293b !important;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bts-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.leader-card {
    background: #1e293b !important;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box {
    background: #1e293b !important;
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

footer {
    text-align: center;
    padding: 35px;
    background: #070913 !important;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
    }
    nav {
        margin-top: 10px;
    }
    nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
    section {
        padding: 60px 20px;
    }
}
@media screen and (max-width: 768px) {
    .hero {
        padding: 90px 10px 30px 10px !important;
        min-height: auto !important;
    }
    .hero-poster-container {
        width: 100% !important;
        max-width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .hero-poster-container img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}
