
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: white;
    padding: 1rem 2rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.hero {
    background: url() center/cover no-repeat;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.btn {
    background: #ff6600;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.jet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 2rem;
    text-align: center;
}

.card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    background: #222;
    color: white;
    padding: 1rem;
    margin-top: 2rem;
}



body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 24px;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px;
}

.card {
    background: white;
    width: 250px;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);*/
    transition: 0.3s;
    transition: box-shadow 0.3 ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3)
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h2 {
    font-size: 20px;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #666;
}

.card a {
    display: block;
    margin-top: 10px;
    padding: 8px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.card a:hover {
    background: #0056b3;
}



.jet-info {
    text-align: center;
    padding: 20px;
}

.jet-info img {
    width: 60%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.jet-info p {
    font-size: 16px;
    color: #333;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-button:hover {
    background: #c70039;
}


.jet-info {
    text-align: center;
    padding: 20px;
}

.jet-info img {
    width: 60%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.jet-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-button:hover {
    background: #c70039;
}

.jet-info {
    display: flex;
    flex-direction: column; /* Aligns items vertically */
    align-items: center; /* Centers items horizontally */
    justify-content: center; /* Vertically centers content within the div */
    text-align: center; /* Centers text inside the div */
}

.jet-list {
    list-style-type: none; /* Removes default bullet points */
    padding-left: 0; /* Ensures no extra space on the left */
    margin: 0; /* Removes extra margin */
    text-align: left; /* Aligns list items text to the left */
}

.jet-list li {
    margin-bottom: 10px; /* Adds spacing between each item */
    font-size: 16px; /* Adjusts the font size for better readability */
    line-height: 1.5; /* Adds some space between the lines */
}

.back-button {
    margin-top: 20px; /* Adds space above the button */
    padding: 10px 20px; /* Adjusts the padding inside the button */
    background-color: #007bff; /* Button color */
    color: white; /* Text color */
    text-decoration: none; /* Removes underline */
    border-radius: 5px; /* Rounded corners for the button */
    font-size: 16px; /* Makes the text more readable */
}

.back-button:hover {
    background-color: #0056b3; /* Darkens the button color when hovered */
}
