/* ===============================
   Global Variables
================================ */
:root {
    --primary-color: #ff9900;
    --secondary-color: #a3a3a3;
    --dark-bg: #1a1a2e;
    --white: #ffffff;
    --black: #000000;
}

/* ===============================
   Reset & Base Styles
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

.subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.section {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--white);
}

.light-bg {
    background-color: var(--white);
    color: var(--black);
}

.white-bg {
    background-color: #f8f8f8;
    color: var(--black);
}

/* ===============================
   Buttons
================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ===============================
   Header
================================ */
header {
    background-color: rgba(26, 26, 46, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo wrapper */
.logo {
    display: flex;
    align-items: center;
}

/* Logo image */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

/* Standard nav links */
nav ul li a:not(.btn-primary) {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:not(.btn-primary):hover {
    color: var(--primary-color);
}

/* ===============================
   Luxury Header Button
================================ */
header .btn-primary {
    padding: 5px 14px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

header .btn-primary:hover {
    transform: translateY(-1px);
}

/* ===============================
   Hero Section
================================ */
#hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;

    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Ensure content sits above overlay */
#hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

#hero h2 {
    font-size: 3rem;
}

/* Space launch date away from button */
.launch-date {
    margin-top: 30px;
    font-style: italic;
    color: var(--secondary-color);
}

/* ===============================
   Services / Grids
================================ */
.services-grid,
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card,
.company-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: var(--black);
}

.service-card h4 {
    color: var(--primary-color);
}

/* ===============================
   Club Section
================================ */
.club-section {
    text-align: center;
}

.club-benefits {
    list-style: none;
    margin: 30px auto;
    max-width: 600px;
    padding: 0;
}

.club-benefits li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23ff9900' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* ===============================
   Footer
================================ */
footer {
    padding: 30px 0;
    background-color: #0d0d1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 900px) {
    h2 {
        font-size: 2rem;
    }

    #hero {
        min-height: 60vh;
    }
}

@media (max-width: 600px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
    }

    .section {
        padding: 50px 0;
    }

    .logo-img {
        height: 32px;
    }
}
