/* Yacht Page Specific Styles */

/* Yacht Hero Section */
.yacht-hero {
    margin-top: 80px;
    height: 60vh;
    min-height: 500px;
}

.yacht-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.yacht-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 102, 204, 0.6) 0%,
        rgba(0, 102, 204, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.yacht-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.yacht-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.yacht-price-tag {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Yacht Details Section */
.yacht-details {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 50px;
}

.details-content h2,
.details-specs h2 {
    margin-bottom: 20px;
}

.yacht-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.details-content h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    padding-left: 30px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

/* Specifications Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.spec-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.spec-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.spec-item h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.spec-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* Booking CTA */
.booking-cta {
    margin-top: 50px;
}

/* Gallery Section */
.yacht-gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-size: 48px;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .yacht-hero-title {
        font-size: 48px;
    }

    .yacht-hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .yacht-hero-title {
        font-size: 36px;
    }

    .yacht-hero-subtitle {
        font-size: 18px;
    }

    .yacht-price-tag {
        font-size: 22px;
        padding: 12px 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Additional styles for yacht page */

/* Seasonal Note */
.seasonal-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Included/Not Included Lists */
.included-list li::before {
    content: '✓';
    color: #28a745;
}

.not-included-list li::before {
    content: '✗';
    color: #dc3545;
}

/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    border-radius: 20px;
    color: white;
    margin-top: 30px;
    box-shadow: var(--shadow-hover);
}

.pricing-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.price-label {
    font-size: 18px;
    font-weight: 500;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.seasonal-pricing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.seasonal-pricing p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .price-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .price-value {
        font-size: 28px;
    }
}
/* New Yacht Badge */
.yacht-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

@media (max-width: 768px) {
    .yacht-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
}