/* --- VARIABLES & RESET --- */
:root {
    --bg-color: #050505;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --accent-gold: #c5a059;
    --accent-gold-light: #e6c888;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    font-weight: 700;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 7rem);
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    margin: 40px auto;
}

.hero-quote {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

.btn-primary {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--bg-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scroll-anim 2.5s infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: 140px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    margin-bottom: 30px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 20px;
}

.section-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 30px;
    line-height: 1.2;
}

/* --- VISION SECTION --- */
.vision {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

.vision-text:last-of-type {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 40px;
}

.vision-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* --- SHOWCASE SECTION --- */
.showcase {
    padding: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 0;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.showcase-item.large {
    aspect-ratio: 1;
}

.showcase-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.showcase-placeholder:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    color: var(--accent-gold);
}

.showcase-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.showcase-placeholder small {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Showcase Images */
.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-item:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.showcase-item.large {
    aspect-ratio: 1;
}

/* Loading state for images */
.showcase-item img {
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Remove animation when image loads */
.showcase-item img[src] {
    animation: none;
    background: transparent;
}

/* --- JOIN SECTION --- */
.join {
    background: #0a0a0a;
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--accent-gold);
    color: var(--bg-color);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

.btn-submit svg {
    transition: var(--transition);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
    font-style: italic;
}

/* --- FOOTER --- */
.footer {
    background: #050505;
    padding: 100px 0 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 50px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-domain {
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

/* --- ANIMATIONS --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.large {
        aspect-ratio: 16/9;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .section {
        padding: 100px 0;
    }
}