﻿body {
    background-color: white !important;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
   /* max-width: 280px;*/
}

/* Custom Background */
.bg-custom1 {
    background-image: url('../images/florida-runway.jpg'); /* Change to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Full viewport height */
}

/* Fullscreen Background */
.bg-custom {
    background-image: url('assets/images/florida-runway.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    text-align: center;
}

/* Overlay for better text visibility */
.bg-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Content Styling */
.content-container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

/* Logo Styling - Responsive Centered */
.logo-img {
    max-width: 600px; /* Limits max width */
    width: 80%; /* Makes it responsive */
    display: block;
    margin: 0 auto 20px; /* Centered and with bottom spacing */
}

/* Styling for "WELCOME TO" */
.welcome-text {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
}
/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Fixes a small jump issue */
}
/* Styling for "DREAM AVIATION" */
.main-title {
    font-size: 6rem;
    color: white;
    font-weight: bold;
}

/* Styling for "Your best choice..." */
.subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Airplane Image - Responsive Centered */
.airplane-img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 20px auto;
}

/* Button Styling */
.btn-primary {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
}

/* Responsive Adjustments */
/* Base styles */
.main-title {
    font-size: 8rem;
}
/* Responsive styles */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }

    .welcome-text {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

