/* Pilot Styles */
:root {
    --primary-pilot-color: #004d99; /* Azul oscuro de aviación */
    --secondary-pilot-color: #1976D2; /* Azul medio */
    --accent-pilot-color: #FFD700; /* Dorado para detalles */
    --dark-pilot-color: #212121; /* Gris oscuro para texto */
    --light-pilot-color: #f0f4f7; /* Gris claro */
    --white: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: var(--light-pilot-color);
    color: var(--dark-pilot-color);
}

/* Header & Navbar */
.pilot-header {
    background: var(--dark-pilot-color);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.pilot-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.pilot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.pilot-logo span {
    color: var(--accent-pilot-color);
}

.pilot-nav-links {
    display: flex;
    list-style: none;
}

.pilot-nav-links li a {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--light-pilot-color);
    font-weight: 400;
    transition: color 0.3s;
}

.pilot-nav-links li a:hover {
    color: var(--accent-pilot-color);
}

/* Hero Section */
.pilot-hero {
    height: 100vh;
    background: url('../images/pilot-hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.pilot-hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.pilot-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.pilot-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.pilot-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-pilot-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.pilot-btn:hover {
    background-color: var(--secondary-pilot-color);
}

/* Sections */
.pilot-section {
    padding: 80px 0;
}

.pilot-section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-pilot-color);
}

.pilot-section-title span {
    color: var(--dark-pilot-color);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pilot-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.horizontal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.vertical-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img, .gallery-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vertical-item img, .vertical-item .gallery-video-element {
    height: 500px;
}

/* Contact Form */
.pilot-contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.pilot-contact-form input,
.pilot-contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.pilot-contact-form textarea {
    height: 150px;
    resize: vertical;
}

.pilot-contact-form button {
    width: 200px;
    margin: 0 auto;
}

/* Footer */
.pilot-footer {
    background-color: var(--dark-pilot-color);
    color: var(--light-pilot-color);
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pilot-nav-links {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }
    .pilot-hero-content h1 {
        font-size: 2.5rem;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}



/* Estilos para el carrusel temático de avioneta */
.pilot-carousel {
    background-color: #2c3e50; /* Un color de fondo oscuro que simula el interior de la cabina */
    padding: 60px 0;
    color: #ecf0f1;
}

.pilot-carousel .pilot-section-title {
    color: #ecf0f1;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 5px solid #34495e; /* Borde que simula el panel */
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: #1a2530;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(52, 73, 94, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(52, 73, 94, 1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #5d6d7e; /* Puntos inactivos */
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: #f1c40f; /* Color dorado para el punto activo */
}