/* --- 1. FONTS & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-orange: #f06529;
    --dark: #121212;
    --light: #ffffff;
    --text-gray: #e0e0e0;
}

/* --- 2. YARGOOL LAVA LAMP BACKGROUND --- */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, #f06529 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, #a33d13 0%, transparent 50%),
                radial-gradient(circle at 50% 10%, #1a1a1a 0%, transparent 50%),
                #121212;
    background-size: 200% 200%;
    animation: lavaLamp 20s ease infinite; /* Speed adjusted for better visibility */
}

@keyframes lavaLamp {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- 3. GLOBAL STYLES --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--dark);
    color: var(--text-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

/* --- 4. NAVIGATION BAR (FIXED LAYOUT) --- */
nav {
    position: sticky;
    top: 0;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo-small { 
    height: 55px; 
    width: auto; 
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* MAIN TAB BOXES (Excluding the Language Toggle) */
.nav-links a:not(.lang-switch a) { 
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    padding: 0.7rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.nav-links a:not(.lang-switch a):hover {
    border-color: var(--primary-orange);
    background: rgba(240, 101, 41, 0.1);
    color: var(--primary-orange) !important;
}

/* --- Updated Button Styles --- */

/* This applies to the Get Started button in the Nav AND any button with .btn-boxed */
.nav-links a.nav-cta, 
.btn-boxed,
button[type="submit"] {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    padding: 0.7rem 1.1rem;
    
    /* THE BORDER: Matches the navigation tabs exactly */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover state: Makes the border and background glow orange */
.nav-links a.nav-cta:hover, 
.btn-boxed:hover,
button[type="submit"]:hover {
    border-color: var(--primary-orange) !important;
    background: rgba(240, 101, 41, 0.1) !important;
    color: var(--primary-orange) !important;
    transform: translateY(-2px); /* Adds a little "lift" effect */
}
/* --- 5. LANGUAGE TOGGLE STYLES --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    margin-left: 10px;
    height: 38px;
    box-sizing: border-box;
}

.lang-switch a {
    color: white !important;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.4;
    transition: opacity 0.2s;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.lang-switch a.active {
    opacity: 1;
    color: var(--primary-orange) !important;
    font-weight: 800;
}

.lang-switch span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

/* --- 6. GLASSMORPHISM CARDS --- */
.form-card, .member-card, .step, .faq-item, .next-steps, .manifesto-box {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 12px;
    padding: 2rem;
}

/* --- 7. FAQ STYLING --- */
.faq-section {
    padding: 5rem 0;
    margin-top: 5rem;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #ccc;
    font-size: 0.95rem;
}

/* Old Website Link Styling */
.old-site-link {
    color: #888 !important;
    text-decoration: none;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    margin-left: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.old-site-link:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange) !important;
    background: rgba(255, 255, 255, 0.05);
}

footer {
    text-align: center;
    padding: 6rem 2rem;
    background: transparent;
    color: #666;
    font-size: 0.8rem;
}