:root {
    --navy: #0a1128;
    --royal-blue: #2563eb;
    --sky-blue: #3b82f6;
    --gold: #d4af37;
    --cream: #f8f4e3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    background: var(--navy);
    color: var(--cream);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 40, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--royal-blue);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Hero - Clean, Not Boxy */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 2rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.tagline {
    font-size: 1.2rem;
    color: var(--sky-blue);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.summary {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--royal-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--sky-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Gallery - Flowing, Not Grid */
.gallery {
    padding: 4rem 2rem;
    background: #0f1419;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.gallery-grid img {
    min-width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.7;
    font-style: italic;
}

/* Media Section - Cards But Not Boxy */
.media-section {
    padding: 5rem 2rem;
    background: var(--navy);
}

.media-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--royal-blue);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateX(10px);
    border-left-width: 8px;
}

.media-item h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: bold;
}

.btn-link:hover {
    color: var(--gold);
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 2rem 1rem;
    border-top: 2px solid var(--royal-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* SPLIT-SCREEN HERO - Matthew Willard Style */
.hero {
    min-height: 100vh;
    background: #000;
    padding-top: 80px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
}

.hero-image-side {
    position: relative;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-text-side {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* TWO-TONE TYPOGRAPHY */
.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-accent {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    color: #d4af37;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-image-side {
        min-height: 50vh;
    }
    
    .hero-text-side {
        padding: 4rem 2rem;
    }
    
    .title-accent {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - PROPER SCALING
   ======================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .hero-split {
        grid-template-columns: 45% 55%;
    }
    
    .hero-text-side {
        padding: 6rem 4rem;
    }
    
    .title-accent {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 4.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-image-side {
        min-height: 60vh;
    }
    
    .hero-text-side {
        padding: 4rem 2.5rem;
    }
    
    .title-accent {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .main-nav .logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        display: none; /* Add mobile menu later */
    }
    
    .hero-text-side {
        padding: 3rem 1.5rem;
    }
    
    .title-accent {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure images scale properly */
img {
    max-width: 100%;
    height: auto;
}

/* Fluid typography */
html {
    font-size: 16px;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* Container responsive padding */
.container {
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
}

/* ========================================
   MOBILE NAVIGATION FIX
   ======================================== */

@media (max-width: 968px) {
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    /* Hamburger Menu Button */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
    }
}

@media (min-width: 969px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Sticky Header on Mobile */
@media (max-width: 968px) {
    .main-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(10px);
    }
}
