/* style.css */
.ph-slider-wrapper-cd782764 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #2b2826; /* Dark earthy tone fallback */
    overflow: hidden;
}

.ph-swiper-cd782764 {
    width: 100%;
    height: 100%;
}

.ph-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Soft zoom effect on load/active */
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .ph-slide-bg {
    transform: scale(1);
}

.ph-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ph-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition-delay: 0.5s;
}

.swiper-slide-active .ph-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.ph-headline {
    font-family: 'Playfair Display', serif, sans-serif; /* Fallback elegant font */
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ph-divider {
    width: 60px;
    height: 2px;
    background-color: #c19a6b; /* Warm beige/cognac default */
    margin: 0 auto 25px;
    opacity: 0.8;
}

.ph-subheadline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #f5f2eb;
}

.ph-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.ph-btn-primary {
    color: #ffffff;
    border: 1px solid transparent;
}

.ph-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* Pagination dots styling */
.ph-swiper-cd782764 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.ph-swiper-cd782764 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #c19a6b;
    transform: scale(1.3);
}
