@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:wght@300;400;500;600;700&display=swap');


.arp-slider-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 520px;
    overflow: hidden;
    background-color: #000000;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
}




.arp-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- Individual Slide Styles --- */
.arp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.arp-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* --- Slide Image & Ken Burns Zoom-In Animation --- */
.arp-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease-out;
}

@keyframes arpKenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.arp-slide.active .arp-slide-image {
    animation: arpKenBurns 12s cubic-bezier(0.1, 0.1, 0.25, 1) forwards;
}

/* --- Premium Left-to-Right Saydam Kaplama (Gradient Overlay) --- */
.arp-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(var(--arp-overlay-rgb, 18, 18, 18), var(--arp-overlay-opacity, 0.85)) 0%,
        rgba(var(--arp-overlay-rgb, 18, 18, 18), var(--arp-overlay-opacity, 0.85)) 30%,
        rgba(var(--arp-overlay-rgb, 18, 18, 18), calc(var(--arp-overlay-opacity, 0.85) * 0.6)) 40%,
        rgba(var(--arp-overlay-rgb, 18, 18, 18), calc(var(--arp-overlay-opacity, 0.85) * 0.2)) 48%,
        rgba(var(--arp-overlay-rgb, 18, 18, 18), 0) 58%
    );



}

/* --- Slide Content & Micro-Animations --- */
.arp-slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 60%;
    padding: 0 10%;
    box-sizing: border-box;
    pointer-events: none; /* Prevents dragging container instead of swiping */
}

.arp-slide-content-inner {
    pointer-events: auto; /* Re-enable events for buttons and links */
}

@media (min-width: 1200px) {
    .arp-slide-content {
        max-width: var(--arp-content-width, 1290px);
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .arp-slide-content-inner {
        max-width: 650px;
    }
}

/* Title Styling */
.arp-slide-title {
    font-family: var(--arp-title-font, 'Playfair Display', Georgia, serif);
    font-size: var(--arp-title-size, 64px);
    text-transform: var(--arp-title-transform, none);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--arp-title-color, #ffffff);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.arp-slide-title p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    text-transform: inherit !important;
    font-family: inherit !important;
    display: block !important;
}


/* Subtitle Styling */
.arp-slide-subtitle {
    font-family: var(--arp-subtitle-font, 'Montserrat', sans-serif);
    font-size: var(--arp-subtitle-size, 18px);
    text-transform: var(--arp-subtitle-transform, none);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 40px 0;
    color: var(--arp-subtitle-color, #f0f0f0);
    letter-spacing: 0.5px;
    max-width: 90%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}


/* Button Styling */
.arp-slide-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-size: var(--arp-btn-size, 15px);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--arp-btn-color, #ffffff);
    background-color: var(--arp-btn-bg, #a38a5e);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-transform: var(--arp-btn-transform, uppercase);
}


.arp-slide-button:hover {
    color: var(--arp-btn-hover-color, #ffffff) !important;
    background-color: var(--arp-btn-hover-bg, #8a734d) !important;
}

.arp-btn-arrow {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.arp-slide-button:hover .arp-btn-arrow {
    transform: translateX(6px);
}

/* --- Entry Micro-Animations when Slide becomes active --- */
.arp-slide-title,
.arp-slide-subtitle,
.arp-slide-button {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.arp-slide.active .arp-slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.arp-slide.active .arp-slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.arp-slide.active .arp-slide-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* --- Navigation Arrows --- */
.arp-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    opacity: 0.7;
    outline: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.arp-slider-arrow:hover {
    opacity: 1;
    background: var(--arp-global-color, #a38a5e) !important;
    color: #ffffff !important;
    border-color: var(--arp-global-color, #a38a5e) !important;
}



.arp-slider-arrow svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.arp-prev-arrow {
    left: 2%;
}

.arp-next-arrow {
    right: 2%;
}


/* --- Pagination Bullets (Dots) --- */
.arp-slider-bullets {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.arp-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.arp-bullet:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.arp-bullet.active {
    background-color: var(--arp-global-color, #a38a5e) !important;
    width: 22px; /* Slight pill shape for active state */
    border-radius: 5px;
}

/* --- Mobile and Tablet Adaptations (Responsive) --- */
@media (max-width: 1024px) {
    .arp-slider-container {
        height: 550px;
    }
    
    .arp-slide-content {
        max-width: 80%;
        padding: 0 8%;
    }
    
    .arp-slide-title {
        font-size: calc(var(--arp-title-size, 64px) * 0.8) !important;
    }
    
    .arp-slide-subtitle {
        font-size: calc(var(--arp-subtitle-size, 18px) * 0.9) !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .arp-slider-container {
        height: 480px;
    }
    
    .arp-slide-overlay {
        background: linear-gradient(
            to right,
            rgba(var(--arp-overlay-rgb, 18, 18, 18), var(--arp-overlay-opacity, 0.85)) 0%,
            rgba(var(--arp-overlay-rgb, 18, 18, 18), var(--arp-overlay-opacity, 0.85)) 50%,
            rgba(var(--arp-overlay-rgb, 18, 18, 18), calc(var(--arp-overlay-opacity, 0.85) * 0.6)) 60%,
            rgba(var(--arp-overlay-rgb, 18, 18, 18), calc(var(--arp-overlay-opacity, 0.85) * 0.2)) 70%,
            rgba(var(--arp-overlay-rgb, 18, 18, 18), 0) 80%
        ) !important;
    }
    
    .arp-slide-content {
        max-width: 90%;
        padding: 0 6%;
        margin-top: auto;
        margin-bottom: 12%;
    }
    
    .arp-slide-title {
        font-size: var(--arp-title-size-mobile, 32px) !important;
        margin-bottom: 15px;
    }
    
    .arp-slide-subtitle {
        font-size: var(--arp-subtitle-size-mobile, 14px) !important;
        margin-bottom: 25px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .arp-slide-button {
        padding: 12px 24px;
        font-size: var(--arp-btn-size-mobile, 13px) !important;
    }

    
    .arp-slider-arrow {
        width: 45px;
        height: 45px;
        background-color: rgba(0, 0, 0, 0.15); /* make visible on mobile */
    }
    
    .arp-slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .arp-prev-arrow {
        left: 1%;
    }
    
    .arp-next-arrow {
        right: 1%;
    }
}

@media (max-width: 480px) {
    .arp-slider-container {
        height: 400px;
    }
    
    .arp-slide-subtitle {
        margin-bottom: 20px;
    }
    
    .arp-slide-button {
        padding: 10px 20px;
    }
    
    .arp-slider-arrow {
        display: none; /* Hide arrows on small screens, rely on swipe */
    }


    
    .arp-slider-bullets {
        bottom: 4%;
    }
}

