/* style.css - 337 Ghost Squadron Official Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafc;
    color: #1e2a41;
    line-height: 1.5;
}
h1, h2, h3, h4, .nav-links a, .btn, .logo-text, .section-title {
    font-family: 'Montserrat', sans-serif;
}
:root {
    --haf-navy: #0b2b4f;
    --haf-gold: #c9a03d;
    --white: #ffffff;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Top bar */
.top-bar {
    background: var(--haf-navy);
    color: #e0e7ff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contact-info i {
    margin-right: 6px;
    color: var(--haf-gold);
}
.contact-info span {
    margin-right: 24px;
}
.social-icons a {
    color: #ccd9f0;
    margin-left: 18px;
    transition: 0.2s;
}
.social-icons a:hover {
    color: var(--haf-gold);
}
/* Main header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 18px;
}
.logo-area img {
    height: 70px;
    width: auto;
}
.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--haf-navy);
}
.logo-text p {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--haf-gold);
}
.mobile-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: var(--haf-navy);
}
/* Navigation */
.nav-bar {
    background: var(--white);
    border-bottom: 2px solid var(--haf-gold);
}
.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2px;
}
.nav-links li a {
    display: block;
    padding: 14px 24px;
    color: var(--haf-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}
.nav-links li a:hover, .nav-links li a.active {
    background: #eef3fc;
    color: var(--haf-gold);
}
/* Dropdown */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 100;
    list-style: none;
    border: 1px solid #e2edf7;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    padding: 10px 20px;
    border-bottom: 1px solid #ecf3fa;
}
/* Mobile */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: 999;
    }
    .nav-links.active {
        max-height: 500px;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
}
/* Buttons & cards */
.btn, .btn-sm {
    background: transparent;
    border: 1px solid var(--haf-gold);
    color: var(--haf-navy);
    padding: 6px 18px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}
.btn:hover, .btn-sm:hover {
    background: var(--haf-gold);
    color: white;
}
.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: 0.2s;
    border: 1px solid #eef2f8;
}
.card-img {
    width: 100%;
    height: 200px;
    background-color: #eef2f8;
    background-size: cover;
    background-position: center;
}
.card-content {
    padding: 20px;
}
/* Forms */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
    border: 1px solid #eef2f8;
}
.form-group {
    margin-bottom: 20px;
}
input, textarea, select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbdde9;
    border-radius: 14px;
    font-family: inherit;
}
.btn-submit {
    background: var(--haf-navy);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
}
footer {
    background: var(--haf-navy);
    color: #cfdfee;
    padding: 40px 0 20px;
    margin-top: 40px;
    text-align: center;
}
