:root {
    --bg-dark: #050505;
    --bg-secondary: #111111;
    --primary: #F97316; /* Vibrant Orange */
    --text-light: #d1d5db;
    --text-dark: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

h1, h2, h3, .font-display {
    font-family: 'Poppins', sans-serif;
}

main > section, footer {
    scroll-snap-align: start;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    width: 100%;
}

#gallery, #videography {
    height: auto;
}

.hero-section {
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.text-orange, .nav-link.active {
    color: var(--primary) !important;
}

.border-orange {
    border-color: var(--primary);
}

.btn-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.section-divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 1.5rem auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(249, 115, 22, 0.5);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

footer .container {
    width: 100%;
}

#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: transparent;
    transition: background-color 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

#top-nav.scrolled {
    background-color: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.08);
}

#top-nav .main-nav ul a {
    font-size: 1rem;
    transition: color 0.3s ease;
}

#top-nav .main-nav ul a:hover {
    color: var(--primary) !important;
}

.team-card {
    cursor: pointer;
}

.form-input {
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid #4a4a4a;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
    border-color: var(--primary);
}

/* --- Swiper Slider Styles --- */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 480px;
    background: #111;
    border-radius: 1rem;
    overflow: hidden;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0004);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}