@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Special+Elite&display=swap');

:root {
    --bg-color: #020202;
    --text-color: #f0f0f0;
    --accent-color: #ff2a2a;
    --accent-glow: #ff0000;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Special Elite', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for flashlight effect */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    font-size: 18px;
}

/* Custom Cursor */
/* Custom Cursor */
.cursor-flashlight {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
}

/* Visible Center Point for Cursor */
.cursor-flashlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px red;
}

/* Typography Overhaul */
h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1;
}

/* Header */
header {
    position: fixed;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    cursor: none;
    /* Keep cursor hidden */
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section (Start) - Keeping largely intact but blending edges */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), #020202), url('assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 8vw;
    /* Giant flexible text */
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeUp 1.5s ease forwards;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 1.5s ease 0.3s forwards;
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1.5s ease 0.6s forwards;
}

.btn {
    padding: 20px 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.btn.primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* Fluid Layout Sections */
section {
    padding: 15vh 10vw;
    position: relative;
}

/* About - Asymmetric Layout */
.intro-text {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
    margin-bottom: 100px;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.intro-text:hover {
    opacity: 1;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5vw;
}

.info-item {
    flex: 1;
    min-width: 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.info-item h3 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Fullscreen Horizontal Scroll Gallery (Cinematic) */
#gallery {
    padding: 0;
    position: relative;
    background: #000;
}

.gallery-viewport {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    height: 80vh;
    align-items: center;
    padding: 0 10vw;
}

.gallery-img {
    height: 60vh;
    margin-right: 5vw;
    filter: grayscale(100%);
    transition: 0.5s;
    opacity: 0.6;
    z-index: 10;
}

.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    opacity: 1;
    z-index: 10;
}

/* Team - Editorial List */
#team {
    padding-top: 20vh;
}

.team-list {
    display: flex;
    flex-direction: column;
}

.team-member {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: 0.3s;
}

.team-member:hover {
    padding-left: 20px;
    border-color: var(--accent-color);
}

.team-member h3 {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.team-member:hover h3 {
    color: #fff;
}

.team-member p {
    font-size: 1rem;
    color: var(--accent-color);
}

/* Persistent Download Area */
.download-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .team-member h3 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 15vw;
    }

    #gallery {
        overflow-x: scroll;
    }

    nav {
        display: none;
    }

    /* Hamburger menu would go here */
}

/* Gallery Navigation Arrows */
#gallery {
    position: relative;
    /* Context for absolute arrows */
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* Circular button */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    /* Ensure pointer cursor */
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-nav:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    width: 30px;
    height: 30px;
    pointer-events: none;
    /* Prevent SVG from capturing clicks */
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Video Section */
#video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5vh;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    /* Not too big as requested */
    aspect-ratio: 16 / 9;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 42, 42, 0.4);
    border-color: var(--accent-color);
}