﻿/* Extracted from views\landing.php */

body {
        margin: 0;
        padding: 0;
        background: #0b0b0e;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

    .landing-hero {
        height: 100vh;
        background: url('assets/img/silk_road_hero.png') no-repeat center center fixed;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        padding: 0 20px;
    }

    .landing-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(11,11,14,1) 100%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        max-width: 900px;
        animation: heroFadeIn 1.5s ease-out;
    }

    @keyframes heroFadeIn {
        from { opacity: 0; transform: scale(1.05); }
        to { opacity: 1; transform: scale(1); }
    }

    .hero-title {
        font-family: 'Cinzel', serif;
        font-size: 80px;
        color: #ffd700;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 10px;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }

    .hero-subtitle {
        font-size: 20px;
        color: #ddd;
        margin-top: 20px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 300;
        opacity: 0.8;
    }

    .cta-container {
        margin-top: 50px;
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .cta-btn {
        padding: 18px 45px;
        font-family: 'Cinzel', serif;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .btn-primary {
        background: #8b0000;
        color: #fff;
        border: 1px solid #ffd700;
        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-5px);
        filter: brightness(1.2);
        box-shadow: 0 15px 40px rgba(139, 0, 0, 0.6);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        color: #ffd700;
        border: 1px solid rgba(255, 215, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: #ffd700;
        transform: translateY(-3px);
    }

    .tribe-section {
        padding: 100px 5%;
        background: #0b0b0e;
        text-align: center;
    }

    .section-title {
        font-family: 'Cinzel', serif;
        font-size: 36px;
        margin-bottom: 60px;
        color: #ffd700;
    }

    .tribe-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .tribe-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 8px;
        padding: 30px;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .tribe-card:hover {
        background: rgba(255,215,0,0.05);
        border-color: #ffd700;
        transform: translateY(-10px);
    }

    .tribe-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .tribe-name {
        font-family: 'Cinzel', serif;
        font-size: 22px;
        margin-bottom: 15px;
        color: #fff;
    }

    .tribe-desc {
        color: #888;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer {
        padding: 50px;
        border-top: 1px solid rgba(255,255,255,0.05);
        text-align: center;
        color: #444;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
