/* Custom Fonts */
.font-script { font-family: 'Great Vibes', cursive; }
.font-body { font-family: 'Montserrat', sans-serif; }

/* Smooth Fade Transition for Hero Slideshow */
.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
    z-index: -1;
}
.slide.active { opacity: 1; }

/* Form Glassmorphism - Enhanced */
.booking-form-container {
    background: linear-gradient(135deg, rgba(147, 51, 149, 0.90) 0%, rgba(108, 32, 110, 0.95) 100%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Custom Input Styles */
.custom-input {
    border: none; border-radius: 6px; padding: 12px 16px;
    width: 100%; font-size: 0.95rem; color: #555; outline: none; height: 50px;
    transition: all 0.3s ease;
}
.custom-input:focus {
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.5);
}
.custom-input::placeholder { color: #9ca3af; }

/* Checkbox customization */
.custom-checkbox { accent-color: #facc15; width: 18px; height: 18px; margin-top: 3px; }

/* Nav Link Hover Effect */
.nav-link { position: relative; transition: color 0.3s; }

/* Media Frame (Video/Slider Containers) */
.media-frame {
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.7);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.media-frame:hover {
    border-color: rgba(250, 204, 21, 0.6);
    box-shadow: 0 25px 50px -12px rgba(250, 204, 21, 0.2);
}

/* Gallery Hover Effects */
.gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    position: relative;
    border: 3px solid rgba(255,255,255,0.2); /* Thicker border for standout */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); /* Deeper shadow */
    transition: all 0.3s ease;
}
.gallery-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item:hover {
    border-color: #facc15;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -3px rgba(250, 204, 21, 0.4);
}
.gallery-item:hover .gallery-img { transform: scale(1.1); }

/* Text Card Glass Effect */
.info-card {
    background: rgba(255, 255, 255, 0.05); /* Slightly more visible */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s;
}
.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(250, 204, 21, 0.5);
}

/* LIGHT THEME OVERRIDES */
.light-theme {
    background-color: #f8fafc; /* Slate 50 */
    color: #1e293b; /* Slate 800 */
}
.light-theme .vehicle-header-bg {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.light-theme .watermark-number {
    color: rgba(0, 0, 0, 0.03);
    font-weight: 900;
}
.light-theme .media-frame {
    border: 4px solid #1e293b; /* Dark Slate Blue Border */
    box-shadow: 0 20px 40px rgba(0,0,0,0.25); /* Deeper Shadow */
}
.light-theme .gallery-item {
    border: 3px solid #cbd5e1; /* Light Slate Border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: #f1f5f9; /* Slate 100 bg to fallback */
}
.light-theme .gallery-item:hover {
    border-color: #facc15; /* Yellow on hover */
}
.light-theme .info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* Slate 200 */
    border-left: 4px solid #eab308; /* Yellow left border like dark theme */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
}
.light-theme .info-card:hover {
    transform: translateY(-5px);
    border-left-color: #facc15;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}
.light-theme .info-card h4 {
    color: #0f172a; /* Slate 900 */
}
.light-theme h2 { color: #0f172a; }
.light-theme .section-title { color: #0f172a; }
.light-theme p { color: #475569; }

/* Unified CTA Button */
.btn-cta {
    background: linear-gradient(90deg, #facc15 0%, #eab308 100%);
    color: black;
    font-weight: 900;
    padding: 1rem 3rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(250, 204, 21, 0.6);
    background: linear-gradient(90deg, #fde047 0%, #ca8a04 100%);
    color: black;
}

/* Flashing arrow animation */
@keyframes flash {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(5px); }
}
.arrow-flash { animation: flash 1.5s ease-in-out infinite; }

/* Lightbox */
#lightbox {
    transition: opacity 0.3s ease;
}

/* Content Slideshow */
.content-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    /* Border and shadow moved to .media-frame class applied to container */
}
.content-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}
.content-slide.active-slide { opacity: 1; }

/* New Header Styling */
.vehicle-header-bg {
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.watermark-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 768px) {
    .watermark-number { font-size: 18rem; }
}
