/* fleet.css - Styles specific to fleet page */

/* Fleet hero section customizations */
/* .parallax-hero {
    position: relative;
    height: 65vh !important;  
    overflow: hidden;
}

.parallax-hero .parallax-layer.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
} */

/* Fleet filter section */
.fleet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
}

.fleet-filter button {
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    background: var(--color-navy);
    color: var(--color-platinum);
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.fleet-filter button.active {
    background: var(--color-gold);
    color: var(--color-navy);
}

.fleet-filter button:hover:not(.active) {
    background: rgba(201, 178, 107, 0.2);
}

#fleet-search {
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    background: var(--color-navy);
    color: var(--color-platinum);
    border: 1px solid var(--color-gold);
    min-width: 200px;
    font-size: 1rem;
}

/* Fleet grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.fleet-item {
    background: rgba(25, 35, 58, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.fleet-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.fleet-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--color-gold);
}

.fleet-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-platinum);
    opacity: 0.8;
}

.fleet-item .cta-btn {
    margin: 0 1.5rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fleet-filter {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    #fleet-search {
        width: 100%;
    }
}
/* fleet.css - Styles specific to fleet page */

/* Fleet hero section customizations */
.parallax-hero {
    position: relative;
    height: 65vh !important; /* Specific height for fleet hero */
    overflow: hidden;
}

.parallax-hero .parallax-layer.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
}

/* Fleet filter section */
.fleet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    align-items: center;
}

.fleet-filter button {
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    background: var(--color-navy);
    color: var(--color-platinum);
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.fleet-filter button.active {
    background: var(--color-gold);
    color: var(--color-navy);
}

.fleet-filter button:hover:not(.active) {
    background: rgba(201, 178, 107, 0.2);
}

#fleet-search {
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    background: var(--color-navy);
    color: var(--color-platinum);
    border: 1px solid var(--color-gold);
    min-width: 200px;
    font-size: 1rem;
}

/* Fleet grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.fleet-item {
    background: rgba(25, 35, 58, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.fleet-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.fleet-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--color-gold);
}

.fleet-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-platinum);
    opacity: 0.8;
}

.fleet-item .cta-btn {
    margin: 0 1.5rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fleet-filter {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    #fleet-search {
        width: 100%;
    }
}
