@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --navy: #1a2d5a;
    --navy-dark: #0f1b38;
    --gold: #d4a843;
    --gold-light: #f0cc6b;
    --white: #ffffff;
    --gray-light: #f0f2f5;
    --gray: #8892a4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
    background: rgba(15, 27, 56, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-logo span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../photos/2.jpg') 35% 20% / cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 27, 56, 0.3) 0%,
        rgba(15, 27, 56, 0.5) 40%,
        rgba(15, 27, 56, 0.95) 85%,
        var(--navy-dark) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 80px;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-number {
    position: absolute;
    right: 60px;
    bottom: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(212, 168, 67, 0.2);
    line-height: 1;
    user-select: none;
    z-index: 1;
}

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(135deg, var(--navy) 0%, #243b6e 100%);
    border-top: 3px solid var(--gold);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 5;
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(212, 168, 67, 0.08);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 8px;
}

/* ── ABOUT SECTION ── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

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

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 70%,
        var(--navy-dark) 100%
    );
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 40px;
    background: var(--navy-dark);
}

.section-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-text p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.info-item {
    padding: 16px;
    background: rgba(26, 45, 90, 0.5);
    border-left: 3px solid var(--gold);
}

.info-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 4px;
}

.info-item .value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ── HIGHLIGHTS SECTION ── */
.highlights {
    background: var(--navy);
    padding: 80px 60px;
    text-align: center;
}

.highlights h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.highlights .subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(15, 27, 56, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px 28px;
    transition: transform 0.3s, border-color 0.3s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.highlight-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.highlight-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.highlight-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ── VIDEO SECTION ── */
.video-section {
    padding: 80px 60px;
    background: var(--navy);
    text-align: center;
}

.video-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.video-section .subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(212, 168, 67, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* ── GALLERY SECTION ── */
.gallery {
    padding: 80px 60px;
    background: var(--navy-dark);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-header .subtitle {
    color: var(--gray);
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 27, 56, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ── COMMITMENT SECTION ── */
.commitment {
    padding: 80px 60px;
    text-align: center;
    background: var(--navy-dark);
    position: relative;
}

.commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.commitment h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.commitment p {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 40px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--gold-light);
}

/* ── FOOTER ── */
footer {
    background: rgba(10, 18, 36, 0.8);
    padding: 32px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer .logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .logo-mark img {
    height: 30px;
    opacity: 0.6;
}

footer .logo-mark span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer .copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-content {
        padding: 0 30px 60px;
    }

    .hero-number {
        right: 20px;
        bottom: 20px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .about-image::after {
        background: linear-gradient(
            to bottom,
            transparent 60%,
            var(--navy-dark) 100%
        );
    }

    .about-text {
        padding: 40px 30px;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    nav {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        padding: 60px 20px;
    }

    .video-section {
        padding: 60px 20px;
    }

    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px 30px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .highlights, .commitment {
        padding: 60px 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}
