/* Общие стили */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #002366;
}

/* Шапка */
header {
    background-color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
    color: #002366;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #002366;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #002366, #FFD700);
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    background: white;
    color: #002366;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #FFD700;
    color: #002366;
}

/* О нас */
.about {
    padding: 50px;
    text-align: center;
}

/* Рейсы */
.flights {
    background-color: #f5f5f5;
    padding: 50px;
    text-align: center;
}

#search {
    padding: 10px;
    width: 60%;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-size: 16px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: white;
    border: 2px solid #FFD700;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #002366;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    background-color: #FFD700;
    color: white;
    transform: scale(1.05);
}

/* Флот */
.fleet {
    padding: 50px;
    text-align: center;
    background: white;
}

.fleet-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.fleet-card {
    background: #f5f5f5;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 15px;
    width: 280px;
    text-align: center;
    transition: 0.3s;
}

.fleet-card:hover {
    background: #FFD700;
    color: white;
    transform: scale(1.05);
}

.fleet-card img {
    width: 100%;
    border-radius: 10px;
}

/* Подвал */
footer {
    background-color: #002366;
    color: white;
    text-align: center;
    padding: 15px;
}
