:root {
    --primary-pink: #d64a6f;
    --accent-blue: #2a3c6e;
    --dark-font: #1e293b;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    color: var(--dark-font);
}

h1,
.font-lemon {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 250;
    letter-spacing: -0.01em;
}

/* Custom Swiper Height (Hero Only) */
.mySwiper {
    width: 100%;
    height: calc(100vh - 40px);
}

/* Underline Decoration - Exact Single Stroke Premium Design */
.underline-brush {
    position: absolute;
    left: 5%;
    right: -2%;
    bottom: -20px;
    width: 90%;
    height: 20px;
    background:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 50"><path d="M10 20 Q 150 10, 480 30" stroke="%23d64a6f" stroke-width="6" stroke-linecap="round" fill="none" opacity="1"/><path d="M40 35 Q 200 25, 495 45" stroke="%23d64a6f" stroke-width="3" stroke-linecap="round" fill="none" opacity="1"/></svg>') no-repeat center bottom;
    background-size: contain;
    pointer-events: none;
    filter: blur(0.5px);
}

@media (min-width: 1024px) {
    .underline-brush {
        left: -2%;
        right: -2%;
        width: 150%;
        bottom: -30px;
        height: 45px;
    }
}

/* Pagination custom color and positioning */
.swiper-pagination {
    bottom: 110px !important;
    z-index: 60 !important;
}

@media (max-width: 768px) {
    .swiper-pagination {
        bottom: 100px !important;
    }
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000000 !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 8px !important;
    border-radius: 4px !important;
    background: #F282B0 !important;
}

/* --- Shared Utilities --- */
.hide-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.scroll-smooth {
    scroll-behavior: smooth;
}