* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #05080f;
    color: white;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #9bb3c9;
    font-size: 14px;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: white;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background: linear-gradient(to right, rgba(5,8,15,0.85), rgba(5,8,15,0.3)),
                url('Gab-Sallie.png') center/cover no-repeat;
}

/* LEFT CONTENT */
.hero-content {
    max-width: 500px;
}

.title {
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 22px;
    margin-bottom: 10px;
}

.subtagline {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #b0c4d8;
    margin-bottom: 30px;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    border: 2px solid white;
    text-decoration: none;
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn.primary {
    background: red;
    border-color: red;
}

.btn.primary:hover {
    background: #ff3333;
}

.btn.secondary:hover {
    background: white;
    color: black;
}

/* BOTTOM TEXT STRIP */
.bottom-strip {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    letter-spacing: 2px;
    color: #8fa7bd;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero {
        padding: 20px;
    }

    .title {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }

    .buttons {
        flex-direction: column;
    }
}

/* PICS SECTION */
.pics-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    background: #05080f;
    flex-wrap: wrap;
}

.pics-section a {
    display: flex;
    max-width: 45%;
}

.pics-section img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #1a2a3a;
    object-fit: cover;
}

/* INNER PAGES */
.page-hero {
    min-height: 100vh;
    padding: 140px 50px 80px;
    background: #05080f;
}

.page-hero h1 {
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: white;
    border-bottom: 1px solid #1a2a3a;
    padding-bottom: 20px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content p {
    font-family: 'Playfair Display', serif;
    color: #b0c4d8;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 22px;
    letter-spacing: 3px;
    color: #9bb3c9;
    margin: 40px 0 16px;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.character-card {
    background: #0a0f1a;
    border: 1px solid #1a2a3a;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
}

.character-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    margin-bottom: 20px;
}

.character-card h3 {
    font-size: 18px;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 10px;
}

.character-card .role {
    font-size: 12px;
    letter-spacing: 2px;
    color: red;
    margin-bottom: 16px;
}

.character-card p {
    font-family: 'Playfair Display', serif;
    color: #8fa7bd;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.file-card {
    background: #0a0f1a;
    border: 1px solid #1a2a3a;
    border-left: 3px solid red;
    padding: 30px;
    margin-bottom: 24px;
}

.file-card .file-id {
    font-size: 11px;
    letter-spacing: 3px;
    color: red;
    margin-bottom: 10px;
}

.file-card h3 {
    font-size: 18px;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 16px;
}

.file-card p {
    font-family: 'Playfair Display', serif;
    color: #8fa7bd;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.bio-block {
    margin-bottom: 50px;
    border-left: 3px solid red;
    padding-left: 24px;
}

.bio-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: red;
    margin-bottom: 16px;
}

.bio-block p {
    margin-bottom: 20px;
}

.bio-block p:last-child {
    margin-bottom: 0;
}

.proof {
    border-color: #9bb3c9;
}

.proof .bio-label {
    color: #9bb3c9;
}

.director-quote {
    border-top: 1px solid #1a2a3a;
    padding-top: 20px;
    color: #b0c4d8 !important;
    font-size: 17px !important;
}

.director-sig {
    margin-top: 20px !important;
    color: #9bb3c9 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 1px;
    line-height: 1.8 !important;
}
    background: #8fa7bd;
    color: #8fa7bd;
    user-select: none;
    border-radius: 2px;
    padding: 0 4px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #1a2a3a;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s, transform 0.2s;
}

.gallery-item:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    user-select: none;
    transition: color 0.2s;
    z-index: 1001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #2D6BFF;
}
