/* Color Palette & Variables */
:root {
    --bg-dark: #0f1115;
    --bg-light: #181a20;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent: #d4af37; /* Gold for premium feel */
    --accent-hover: #f1cf5b;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Cinzel', serif;
}

/* Navbar */
.navbar {
    background-color: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--accent) !important;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../assets/images/studio-keyboard.jpg') no-axis center center/cover; /* We will use JS dynamically to swap bg or just stick to simple dark */
    position: relative;
    background-attachment: fixed;
}
.hero-section::before {
    content:'';
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    background: linear-gradient(to bottom, rgba(15, 17, 21, 0.7) 0%, rgba(15, 17, 21, 1) 100%);
}

.discover-btn {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section-dark {
    background-color: var(--bg-dark);
}

.section-light {
    background-color: var(--bg-light);
}

.section-title {
    font-weight: 600;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    color: var(--accent);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--text-primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.text-accent {
    color: var(--accent);
}

/* About Section */
.about-image-wrapper img {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.text-highlight {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent);
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 300;
}

/* Videos / Iframes */
.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
}

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

.video-wrapper {
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

/* Film Posters */
.poster-card {
    transition: transform 0.3s ease;
}
.poster-card:hover {
    transform: translateY(-10px);
}
.poster-card img {
    max-height: 400px;
    object-fit: contain;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact */
.contact-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.contact-box:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

/* Scroll Gallery */
.scroll-gallery-wrapper {
    position: relative;
    padding: 0 120px; /* Space for buttons + margin */
}

.scroll-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.scroll-gallery::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.scroll-item {
    flex: 0 0 auto;
    width: 300px;
}

@media (min-width: 992px) {
    .scroll-item {
        width: calc(33.333% - 1rem); /* 3 items visible */
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .scroll-item {
        width: calc(50% - 0.75rem); /* 2 items visible */
    }
}
@media (max-width: 767px) {
    .scroll-item {
        width: calc(100% - 20px); /* 1 item visible */
    }
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 1.5rem; /* Make the icon inside larger too */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.scroll-btn:hover {
    background: var(--accent);
    color: #000;
    opacity: 1;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark); 
}
::-webkit-scrollbar-thumb {
    background: var(--text-secondary); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent); 
}
