/* --- IMPORT FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM CONFIG --- */
:root {
    --gold-primary: #D7AE50;
    --gold-hover: #b8923e;
    --black-primary: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1a1a1a;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* --- SWIPER CUSTOMIZATION --- */
.swiper-pagination-bullet {
    background-color: #000;
    opacity: 0.2;
    width: 8px;
    height: 8px;
    transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold-primary);
    opacity: 1;
    width: 30px;
    border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--gold-primary);
}

/* Smooth Fade for details */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary~* {
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar Hide */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}