/* Home Hero Slider - Refined Luxury Design */
:root {
    --gold: #C9A14A;
    --navy: #0F2A44;
    --white: #ffffff;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
}

.home-hero-slider {
    width: 100%;
    /* Responsive aspect ratio - maintains consistency across screen sizes */
    aspect-ratio: 1920 / 650;
    max-height: 80vh;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

/* Adjust ratio for common desktop sizes to avoid excessive height */
@media (max-width: 1400px) {
    .home-hero-slider {
        aspect-ratio: 16 / 5.5; /* Slightly shorter for smaller desktop/laptops */
    }
}

@media (max-width: 1024px) {
    .home-hero-slider {
        aspect-ratio: 16 / 7;
    }
}

@media (max-width: 768px) {
    .home-hero-slider {
        aspect-ratio: 4 / 3;
        max-height: 50vh;
    }
}

.home-hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.slider-image-only {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease; /* Slow, elegant zoom */
}

/* Subtle zoom effect for the image in the active slide */
.swiper-slide-active .slider-image-only img {
    transform: scale(1.08); /* Minimal zoom-in for premium feel */
}

/* Swiper Navigation Customization - Minimalist Style */
.home-hero-slider .swiper-button-next,
.home-hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(201, 161, 74, 0.7); /* Translucent gold */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(var(--btn-shift, 0));
}

.home-hero-slider .swiper-button-prev { --btn-shift: -15px; }
.home-hero-slider .swiper-button-next { --btn-shift: 15px; }

.home-hero-slider:hover .swiper-button-next,
.home-hero-slider:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
    --btn-shift: 0;
}

.home-hero-slider .swiper-button-next { right: 40px; }
.home-hero-slider .swiper-button-prev { left: 40px; }

.home-hero-slider .swiper-button-next:hover,
.home-hero-slider .swiper-button-prev:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

/* Refined narrow arrows */
.home-hero-slider .swiper-button-next:after,
.home-hero-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

/* Pagination Dots Refined */
.home-hero-slider .swiper-pagination {
    bottom: 30px !important;
}

.home-hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.5;
    margin: 0 6px !important;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.home-hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 30px; /* Modern pill shape */
    border-radius: 10px;
}

