/* Black Liquid Software — Landing Page Styles */

@font-face {
    font-family: 'TT Tsars';
    src: url('fonts/TTTsars.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── Reset & Base ─────────────────────────────── */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'TT Tsars', Georgia, 'Times New Roman', serif;
    background-color: #0a0a0a;
    color: #d4cfc6;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── Subtle background texture ────────────────── */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(180, 155, 100, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(180, 155, 100, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ── Layout ───────────────────────────────────── */

.page-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* ── Hero Section ─────────────────────────────── */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
    text-align: center;
    min-height: 70vh;
}

.logo-container {
    margin-bottom: 32px;
    animation: fadeUp 1.2s ease-out;
}

.logo-container img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.logo-container img:hover {
    transform: scale(1.03);
}

.title-image {
    margin-bottom: 12px;
    animation: fadeUp 1.2s ease-out 0.2s both;
}

.title-image img {
    height: 36px;
    width: auto;
}

.tagline {
    font-size: 0.95rem;
    color: #8a8477;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 48px;
    animation: fadeUp 1.2s ease-out 0.4s both;
}

/* ── Divider ──────────────────────────────────── */

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b49b64, transparent);
    margin: 0 auto 48px;
    animation: fadeUp 1.2s ease-out 0.5s both;
}

/* ── About Section ────────────────────────────── */

.about {
    max-width: 640px;
    padding: 0 24px 60px;
    text-align: center;
    animation: fadeUp 1.2s ease-out 0.6s both;
}

.about p {
    font-size: 1.05rem;
    color: #a09b90;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

/* ── Discord Link ─────────────────────────────── */

.community {
    padding: 40px 24px 80px;
    text-align: center;
    animation: fadeUp 1.2s ease-out 0.8s both;
}

.community-label {
    font-size: 0.8rem;
    color: #6b665c;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border: 1px solid #b49b6433;
    color: #d4cfc6;
    text-decoration: none;
    font-family: 'TT Tsars', Georgia, serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.35s ease;
    background: rgba(180, 155, 100, 0.04);
}

.discord-link:hover {
    border-color: #b49b64;
    background: rgba(180, 155, 100, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.discord-link .arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.35s ease;
}

.discord-link:hover .arrow {
    transform: translateX(4px);
}

/* ── Footer ───────────────────────────────────── */

footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid rgba(180, 155, 100, 0.08);
    width: 100%;
}

footer p {
    font-size: 0.78rem;
    color: #4a4740;
    letter-spacing: 0.1em;
}

/* ── Animations ───────────────────────────────── */

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

/* ── Responsive ───────────────────────────────── */

@media (max-width: 600px) {
    .hero {
        padding: 60px 20px 32px;
        min-height: 60vh;
    }

    .logo-container img {
        width: 140px;
    }

    .title-image img {
        height: 24px;
    }

    .tagline {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .about p {
        font-size: 0.95rem;
    }

    .discord-link {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}
