:root {
    /* --user-primary-color: oklch(70.5% 0.213 47.604); */
    --user-primary-color: oklch(76.463% 0.15148 229.462);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFF4E6;
}

.hero-img-container {
    /* background-color: #fff; */
    width: 100%;
    position: absolute;
    height: 100%;
    overflow: hidden;
}

.hero-img-left,
.hero-img-right {
    position: absolute;
    height: 150%;
    top: 0;
    opacity: 30%;
}


.hero-img-left {
    left: 0;
}

.hero-img-right {
    right: 0;
}

.bg-primary {
    background-color: var(--user-primary-color) !important;
}

.share {
    cursor: pointer;
    line-height: 0;
    /* right: 30%;
    top: 32%; */
}

main {
    max-width: 80rem;
    margin: 0 auto;
}


/* Neo-brutalist styles */
.neo-border {
    border: 2px solid #000;
}

.neo-border-sm {
    border: 2px solid #000;
}

.neo-shadow {
    box-shadow: 6px 6px 0 #000;
}

.neo-shadow-sm:hover {
    box-shadow: 4px 4px 0 #000;
}

.neo-btn {
    transition: transform 0.15s, box-shadow .15s ease;
}


.neo-btn:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

details summary {
    cursor: pointer;
    font-weight: 700;
}

.profile-picture {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    padding: 1rem;

}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion {
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-border-color: black;
    --bs-accordion-active-bg: color-mix(in oklch,
            var(--user-primary-color) 35%,
            transparent);
}

.accordion-collapse {
    transition: height 0.3s ease;
}

/* Icons for accordion - assuming images are available or need to be replaced */
/* .accordion-button::after {
    background-image: url("img/lock.svg");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("img/unlock.svg");
    transform: none;
} */
/* Modification: Use simple arrow or existing icons if images not present, 
   but user asked to update based on UI, so I will try to replicate or comment out if files missing 
   For now I will comment out the image URL dependency and use standard bootstrap or font awesome if possible via blade
*/

aside .start-page ul li span {
    background-color: oklch(70.5% 0.213 47.604);
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.start-page-example .pfp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: black;
}

.start-page-example .pfp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pfp:not(:first-child) {
    margin-left: -24px;
}

.pfp:nth-child(2) {
    background-color: #555;
}

.pfp:nth-child(3) {
    background-color: #999;
}

.start-page-example,
.start-page-list {
    font-size: .9rem;
    font-weight: 500;
}


.btn {
    position: relative;
    border-width: 2px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    transition-property: all;
    transition-duration: 400ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1200px) {
    .is-large {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.btn-animation {
    overflow: hidden;
}

.btn-animation::before {
    position: absolute;
    left: -10%;
    top: -110%;
    height: 0px;
    width: 120%;
    border-radius: 50%;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding-bottom: 120%;
    content: "hello";
    /* content: var(--tw-content); */
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-animation::after {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    transform: translate3d(0, -100%, 0);
    content: var(--tw-content);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-animation:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(10 16 47 / var(--tw-bg-opacity));
}

.btn-animation:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    content: var(--tw-content);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-animation:hover::after {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 400ms;
    transition-duration: 500ms;
    transition-timing-function: linear;
    content: var(--tw-content);
    transform: translate3d(0, 0, 0);
}


.is-brand {
    --tw-border-opacity: 1;
    border: 2px solid rgb(255 165 0);
    /* #FFA500 - Primary Brand Orange */
    background-color: rgb(255 165 0);
    /* Primary fill */
    color: rgb(255 255 255);
    /* White text for contrast */
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.is-brand:hover {
    background-color: transparent;
    color: rgb(255 165 0);
    /* #FFA500 text */
    border-color: rgb(255 140 0);
    /* #FF8C00 - darker orange accent */
    transform: translateY(-2px);
}

.is-brand:active {
    background-color: rgb(255 140 0);
    /* #FF8C00 - active darker shade */
    color: rgb(255 255 255);
    /* white text */

}

.tooltip {
    --bs-tooltip-bg: #252525;
    --bs-tooltip-opacity: 100%;
    --bs-tooltip-color: white;
    font-weight: 500;
}

.cursor-pointer {
    cursor: pointer;
}

aside .booking .badge {
    width: 38px;
    height: 38px;
    padding: 5px;
}

aside .booking .badge img {
    width: 100%;
}

.see-more {
    text-decoration: none;
    color: #FF8C00;
}

.hero-icon {
    /* width: 20px; */
}

.hero-icon img {
    /* width: 100%; */
}

#gallery-carousel {
    width: 100%;
    height: 40vh;
}

#gallery-carousel img {
    width: 100%;
    object-fit: cover;
}

.is-mobile {
    display: none;
}

.is-desktop {
    display: block;
}

@media (max-width: 768px) {
    body {
        background-color: #fff;
    }

    .is-mobile {
        display: block;
    }

    .is-desktop {
        display: none;
    }
}


/* =============== MOBILE =============== */

#mobile-gallery-carousel {
    width: 100%;
    height: 40vh;
}

#mobile-gallery-carousel img {
    /* width: 100%; */
    object-fit: cover;
}

/* plaveholder */
.mobile-hero-img {
    height: 200px;
    background: #9e9e9e;
    border-radius: 14px;
}

.mobile-rating-badge {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.mobile-price {
    font-size: 28px;
    font-weight: 700;
}

.mobile-btn-book {
    background: #6b6b6b;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 18px;
}

.mobile-muted {
    color: #8a8a8a;
    font-size: 14px;
}

.mobile-section-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

/* 
.pill {
    height: 34px;
    background: #c9c9c9;
    border-radius: 6px;
} */

.mobile-divider {
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}

.pills-wrapper.collapsed>*:nth-child(n + 5) {
    display: none;
}

.view-toggle {
    color: #6c757d;
    cursor: pointer;
    user-select: none;
}


.is-mobile .neo-shadow-sm {
    box-shadow: 4px 4px 0 #000;
    /* transform: translateY(2px); */
}

.is-mobile .neo-shadow-sm:active {
    box-shadow: none;
    transform: translate(2px, 2px);
}
