* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-color: #e0e0e0;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 90px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
}

.hero-content h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 4.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5), 0 0 40px rgba(196, 30, 58, 0.3);
    margin-bottom: 20px;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(196, 30, 58, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(196, 30, 58, 1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-color);
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* About Section */
.about-section {
    background-color: var(--secondary-color);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* Team Section */
.team-section {
    background-color: var(--bg-darker);
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    border: 2px solid var(--primary-color);
}

.team-member h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.role {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.team-member p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Jets Section */
.jets-section {
    background-color: var(--secondary-color);
}

.jet-card {
    background-color: var(--bg-darker);
    padding: 50px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    margin-bottom: 50px;
}

.jet-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.jet-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.specs {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.specs h4 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.specs ul {
    list-style: none;
    padding-left: 0;
}

.specs li {
    font-size: 1.1rem;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.specs li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.jet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Airshow Section */
.airshow-section {
    background-color: var(--bg-darker);
}

.airshow-content p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.demo-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.demo-card {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.demo-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.demo-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--secondary-color);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.photo-item {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(196, 30, 58, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover::after {
    opacity: 1;
}

/* Video Section */
.video-section {
    background-color: var(--bg-darker);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 30px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-item {
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    background-color: var(--secondary-color);
}

.video-item video {
    width: 100%;
    height: 100%;
    display: block;
}

/* Booking Section */
.booking-section {
    background-color: var(--secondary-color);
}

.booking-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.booking-details {
    background-color: var(--bg-darker);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    margin: 40px 0;
}

.booking-details h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.booking-details ul {
    list-style: none;
    padding-left: 0;
}

.booking-details li {
    font-size: 1.1rem;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.booking-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 1.1rem;
    margin: 15px 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    color: var(--accent-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form button {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #a01830;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 40px 0;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
    
    .jet-gallery {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
}
