@font-face {
    font-family: 'Playball';
    src: url("../fonts/Playball-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Constantine';
    src: url("../fonts/Constantine.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.font-script {
    font-family: 'Playball';
    color: rgb(168, 71, 47);
    letter-spacing: 2px;
    text-transform: none;
}

body {
    background-color: #FAF8F5;
    overflow-x: hidden;
}

/* Responsive Arch Shapes */
.arch-top {
    border-top-left-radius: 140px;
    border-top-right-radius: 140px;
}

@media (min-width: 768px) {
    .arch-top {
        border-top-left-radius: 200px;
        border-top-right-radius: 200px;
    }
}

@media (min-width: 1280px) {
    .arch-top {
        border-top-left-radius: 500px;
        border-top-right-radius: 500px;
    }
}

.arch-bottom {
    border-bottom-left-radius: 140px;
    border-bottom-right-radius: 140px;
}

@media (min-width: 768px) {
    .arch-bottom {
        border-bottom-left-radius: 200px;
        border-bottom-right-radius: 200px;
    }
}

@media (min-width: 1280px) {
    .arch-bottom {
        border-bottom-left-radius: 500px;
        border-bottom-right-radius: 500px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.categorySlider .swiper-pagination-bullet {
    background: #A0522D;
    opacity: 0.3;
}

.categorySlider .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #A0522D;
    background: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 640px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

h1,
h2,
h3 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu-overlay {
    transition: opacity 0.4s ease;
}

/* 1. Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.reveal-on-scroll.delay-100 {
    transition-delay: 0.1s;
}

.reveal-on-scroll.delay-200 {
    transition-delay: 0.2s;
}

.reveal-on-scroll.delay-300 {
    transition-delay: 0.3s;
}

/* 2. Hero Slider Animation */
/* Default state: hidden and pushed down */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}

/* Active state: Triggered when Swiper adds 'swiper-slide-active' class */
.swiper-slide-active .hero-animate {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

/* Staggered delays for Hero items */
.hero-animate.delay-1 {
    transition-delay: 0.2s;
}

/* Title */
.hero-animate.delay-2 {
    transition-delay: 0.4s;
}

/* Subtitle */
.hero-animate.delay-3 {
    transition-delay: 0.6s;
}

/* Description */
.hero-animate.delay-4 {
    transition-delay: 0.8s;
}

/* Button */


/* MAIN BOX */
.select2-container--default .select2-selection--multiple {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    min-height: 48px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* FOCUS STATE */
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #A8472F;
    box-shadow: 0 0 0 2px rgba(168, 71, 47, 0.1);
}

/* TAG (SELECTED ITEM) */
.select2-container--default .select2-selection__choice {
    background-color: #A8472F !important;
    border: none !important;
    color: #fff !important;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-top: 4px;
}

/* REMOVE BUTTON */
.select2-container--default .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 6px;
}

/* INPUT TEXT */
.select2-container--default .select2-search__field {
    margin-top: 4px;
    font-size: 13px;
}

/* DROPDOWN */
.select2-dropdown {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* DROPDOWN OPTION */
.select2-results__option {
    padding: 10px 12px;
    font-size: 13px;
}

/* HOVER */
.select2-results__option--highlighted {
    background-color: #A8472F !important;
    color: #fff;
}

/* CALENDAR BOX */
.flatpickr-calendar {
    font-size: 14px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

/* HEADER */
.flatpickr-months {
    font-size: 16px;
}

/* DAYS */
.flatpickr-day {
    height: 42px;
    line-height: 42px;
    border-radius: 10px;
}

/* SELECTED DAY */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #A8472F !important;
    border-color: #A8472F !important;
    color: #fff;
}

/* RANGE IN BETWEEN */
.flatpickr-day.inRange {
    background: rgba(168, 71, 47, 0.1);
    color: #111;
}

/* HOVER */
.flatpickr-day:hover {
    background: #A8472F;
    color: #fff;
}

/* INPUT FIELD */
#datePicker {
    height: 48px;
    border-radius: 12px;
    font-size: 14px;
    padding-left: 14px;
}