

@import "carousel.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* ==========================================================================
   Header Base Structure
   ========================================================================== */
.header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    padding: 1.5rem 1.5rem 0 1.5rem; 
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo-container {
    max-width: 650px;
    margin: 0 auto 0.5rem;
    background: #e8e3d5;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-placeholder {
    color: #1e3a5f;
    font-size: 1rem;
    text-align: center;
    font-style: italic;
}

.tagline {
    color: white;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Hero copy now lives inline inside the header (no longer a separate
   full-width banner section with a background image) */
.hero-content {
    max-width: 800px;
    margin: 1rem auto 1.5rem;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Collapsible Navigation Menu Setup
   ========================================================================== */
.navbar {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.menu-toggle, .menu-icon {
    display: none;
}

/* ==========================================================================
   Page Standard Layout Container Blocks
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    padding-top: 3rem;
}

.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-section h2 {
    color: #1e3a5f;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #b82c2c;
    margin: 1rem auto;
    border-radius: 2px;
}

/* ==========================================================================
   Core Form Styling (contact_us.php)
   ========================================================================== */
.contact-form-wrapper {
    text-align: left; 
    max-width: 700px; 
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block; 
    font-weight: bold; 
    margin-bottom: 0.5rem; 
    color: #1e3a5f;
}

.form-input {
    width: 100%; 
    padding: 0.8rem; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    font-family: inherit;
    font-size: 1rem;
}

.form-textarea {
    width: 100%; 
    padding: 0.8rem; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.form-submit-container {
    text-align: center;
}

/* Form Success & Error Alerts styling wrappers */
.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

/* ==========================================================================
   Auto-Tiles Grid Layout 
   ========================================================================== */
.aircraft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.aircraft-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #b8282c;
}

.aircraft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.aircraft-card h3 {
    color: #1e3a5f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.aircraft-card p {
    color: #666;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.feature-item h3 {
    color: #1e3a5f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* Highlights Content Boxes */
.features {
    background: #f8f9fa;
    padding: 2rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.construction-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.construction-info h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Global Action Buttons */
.cta-button {
    display: inline-block;
    background: #b8282c;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ==========================================================================
   Clean Simplified Footer Component
   ========================================================================== */
.simple-footer {
    background: #1a2a3a;
    color: #ecf0f1;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.footer-links, .footer-socials {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.footer-links a, .footer-socials a {
    color: #a0b0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover, .footer-socials a:hover {
    color: #ffffff;
}

.footer-copyright {
    max-width: 1200px;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #7f8c8d;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ==========================================================================
   Mobile Layout Responsive Breakpoints
   ========================================================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .menu-icon {
        display: block;
        color: white;
        padding: 0.8rem;
        font-size: 1.2rem;
        cursor: pointer;
        font-weight: bold;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(20, 35, 55, 0.97);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .nav-menu li {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links, .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
}