/* Jetour Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-midnight-black: #0B0D10;
    --color-deep-space-blue: #111827;
    --color-soft-gold: #C6A85C;
    --color-warm-sand: #D6D1C4;
    --color-pure-white: #F5F5F5;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-midnight-black);
    color: var(--color-warm-sand);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-pure-white);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gold {
    color: var(--color-soft-gold);
}

.text-white {
    color: var(--color-pure-white);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-soft-gold);
    color: var(--color-soft-gold);
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--color-soft-gold);
    color: var(--color-midnight-black);
}

.btn-primary {
    background: var(--color-soft-gold);
    color: var(--color-midnight-black);
    border: 1px solid var(--color-soft-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-soft-gold);
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-midnight-black);
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 13, 16, 0.3) 0%, rgba(11, 13, 16, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-pure-white);
    opacity: 0.9;
}

/* Base Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.cyber-form .form-group {
    margin-bottom: 1.5rem;
}

.cyber-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-soft-gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.cyber-form input,
.cyber-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 168, 92, 0.3);
    color: var(--color-pure-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.cyber-form input:focus,
.cyber-form textarea:focus {
    border-color: var(--color-soft-gold);
    background: rgba(255, 255, 255, 0.1);
}

.cyber-form input[type="checkbox"] {
    appearance: auto;
    cursor: pointer;
}

/* Mobile Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-pure-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--color-midnight-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-manifesto h2 {
        font-size: 2rem;
    }
}