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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Typography */
h1, h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: capitalize;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin: 40px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Header */
.main-header {
    background-color: #4b6cb7; /* Blueish tone from image */
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Updated Logo Style */
.falcon-logo-placeholder {
    width: 80px; /* Adjusted size for better visibility */
    height: 80px;
    background-image: url("../images/Fake-Business/Eagle-Logo.png");
    background-size: contain; /* Ensures the whole logo is visible without cropping */
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
    /* Removed the mask and border-radius since we are using a real image now */
}

/* Ensure the header container aligns everything vertically */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}



.main-header h1 {
    font-size: 2.5rem;
    color: #00d2ff; /* Cyan-ish glow */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 100px;
}

.nav-list a {
    color: #00d2ff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-list a:hover {
    border-bottom: 2px solid #00d2ff;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(to bottom, #4b6cb7, #182848);
    padding: 40px 10%;
    text-align: center;
}

.mission-statement {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.mission-detail {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.control-room-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Section */
.products-section {
    padding: 20px 5%;
    background-color: #000;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.img-frame {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #333;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card p {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    color: #ccc;
}

/* Team Section */
.team-section {
    background-color: #000;
    padding-bottom: 50px;
}

.team-img-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.team-image {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/* Footer */
.main-footer {
    background-color: #4b6cb7;
    padding: 30px 5%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Small adjustment for the footer logo as well */
.falcon-logo-placeholder-small {
    width: 50px;
    height: 50px;
    background-image: url("../images/Fake-Business/Eagle-Logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
}

.footer-top h2 {
    font-size: 1.8rem;
    color: #00d2ff;
}

.copyright {
    text-align: right;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cta-text p {
    margin-bottom: 5px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #00d2ff;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-list {
        gap: 30px;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .copyright, .cta-text {
        text-align: center;
        margin: 20px 0;
    }
}
