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

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gold: #ff9500;
    --accent-red: #c41e3a;
    --navy-blue: #1a2847;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --cream: #fffbf5;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    line-height: 1.7;
    color: #ffffff;
    background-color: #000000;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-logo {
    height: 90px;
    width: auto;
    background: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #cccccc;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding: 200px 2rem 200px;
    background: #000000;
    text-align: center;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 1200px;
    width: 90%;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 20px rgba(255, 149, 0, 0.3));
    background: transparent;
}

#hero h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    padding: 80px 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-color: #000000;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.alt-bg {
    background-color: #1a1a1a;
}

.section h2 {
    font-size: 2.75rem;
    color: var(--accent-gold);
    margin-bottom: .5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section h3 {
    font-size: 2.0rem;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.section h3 .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--medium-gray);
    display: block;
    margin-top: 0.5rem;
}

.section h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.tight-heading {
    line-height: 1.2;
}

.tight-heading .subtitle {
    display: block;
    margin-top: 0.3rem;
}

.section p {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #ffffff;
}

.section p + p {
    margin-top: 1rem;
}

.lead {
    font-size: 1.5rem !important;
    font-weight: 400;
    color: var(--accent-gold);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    margin-top: 2rem;
}

.note {
    font-style: italic;
    color: #999;
    font-size: 0.95rem;
}

/* Layout helpers */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.center {
    text-align: center;
}

/* Bullet lists */
.bullet-list {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.bullet-list li {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: #ffffff;
}

.bullet-list li::marker {
    color: var(--accent-gold);
}

/* Contact section */
#contact {
    background-color: #000000;
    color: #ffffff;
}

#contact h2,
#contact h3,
#contact p,
#contact .center {
    color: #ffffff !important;
}

.contact-button {
    display: inline-block;
    background: var(--accent-gold);
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.5);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.7);
    background: var(--accent-red);
    color: #ffffff;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--accent-gold);
}

/* Mobile responsiveness */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    .two-column,
    .three-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #hero h1 {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 2.5rem;
    }

    .section h3 {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 800px;
    }

    .nav-logo {
        height: 70px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    #hero {
        padding: 120px 1.5rem 80px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .section h2 {
        font-size: 2.50rem;
    }

    .hero-logo {
        max-width: 600px;
    }
}
