:root {
    /* Core Colors */
    --color-primary: #f4cd1c;
    --color-secondary: #222;
    --color-text-main: #222;
    --color-text-muted: #6c757d;
    --color-text-light: #ccc;
    --color-text-white: #fff;
    --color-error: #df1529;
    --color-success: #059652;
    --color-rating: #ffc107;
    --color-gold-light: #f9d976;

    /* Backgrounds */
    --bg-white: #fff;
    --bg-light: #f8f9fa;
    --bg-light-gray: #f7f7f7;
    --bg-dark: #222;
    --bg-darker: #111;
    --bg-almost-black: #050505;
    --bg-deep-dark: #020617;
    --bg-surface-dark: #252525;

    /* Accents & Borders */
    --border-color: color-mix(in srgb, var(--color-primary), transparent 70%);
}

/* .service-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.service-box {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service {
  line-height: normal;
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.service-heading {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
}
.service-subheading {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.service-description {
  font-size: 0.95rem;
  color: var(--color-text-main);
} */

/* Navbar Menu Dropdown*/
.navmenu .dropdown ul {
    background-color: var(--nav-dropdown-background-color);
}

.navmenu .dropdown ul ul {
    background-color: var(--nav-dropdown-background-color);
}

.navmenu .dropdown ul li a {
    color: var(--bg-white);
}

.navmenu .dropdown ul li:hover>a {
    color: var(--accent-color);
}

/* new hall */
/* 🌑 Dark background for the entire section */
/* 🏷️ Title and text */
.dark-background h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dark-background p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* 💎 Service Box */
.service-box {
    background: color-mix(in srgb, var(--bg-white), transparent 95%);
    border: 1px solid color-mix(in srgb, var(--color-primary), transparent 70%);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary), transparent 90%);
    position: relative;
    overflow: hidden;
}

/* 🪄 Golden glow on hover */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary), transparent 50%);
    border-color: color-mix(in srgb, var(--color-primary), transparent 40%);
}

/* ✨ Subtle golden sweep animation */
.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            color-mix(in srgb, var(--bg-white), transparent 80%),
            transparent);
    transform: skewX(-20deg);
}

.service-box:hover::before {
    animation: shine 1s forwards;
}

@keyframes shine {
    0% {
        left: -75px;
    }

    100% {
        left: 120%;
    }
}

/* 🖼️ Images */
.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    filter: brightness(0.85);
    transition: 0.4s;
}

.service-box:hover .service-img {
    filter: brightness(1);
}

/* 🏷️ Headings and texts */
.service-heading {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.service-subheading {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ✨ Optional glowing border animation */
.service-box:hover {
    animation: glow-border 2s infinite alternate;
}

@keyframes glow-border {
    from {
        box-shadow: 0 0 10px color-mix(in srgb, var(--color-primary), transparent 70%);
    }

    to {
        box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary), transparent 40%);
    }
}

/*  */

/* .celebrations-section {
  padding: 80px 0;

}

.celebrations-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.celebrations-section p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.celebration-img-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 15px;
}
.celebration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.celebration-img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
} */

/*  */
.text-accent {
    color: var(--color-primary);
}

.celebrations-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.celebrations-section p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.celebration-img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-darker);
    box-shadow: 0 0 10px color-mix(in srgb, var(--color-primary), transparent 90%);
    transition: transform 0.5s ease;
}

.celebration-img-wrapper:hover {
    transform: scale(1.02);
}

.celebration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 1s ease;
    will-change: transform;
}

.celebration-img-wrapper:hover .celebration-img {
    transform: scale(1.2) translateY(-10px);
}

/* ✨ Overlay Text */
.celebration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.celebration-img-wrapper:hover .celebration-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ✨ Overlay Text Style */
.celebration-overlay h4 {
    color: var(--color-gold-light);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.celebration-overlay p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ✨ Glow border effect */
.celebration-img-wrapper:hover {
    box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary), transparent 40%);
    border: 1px solid color-mix(in srgb, var(--color-primary), transparent 60%);
}

.custom-input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--bs-gray);
}

.custom-input:focus {
    border-color: var(--accent-color);
    outline: none;
    background-color: transparent;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem;
    /* adjust space for arrow */
    /*background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");*/
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem auto;
    outline: none;
}

.text-white {
    color: rgb(49, 49, 54) !important;
}

.text-small {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.divider-vertical {
    border-left: 1px solid white;
    height: 40px;
    margin: 0 10px;
}

.large-text {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

/* @import url("https://fonts.googleapis.com/css2?family=Manrope"); */

#celebration-function {
    /* font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem); */
    /* --clr-bg: var(--bg-deep-dark); */
    /* --clr-text: var(--bg-white); */
    /* --clr-primary: var(--bg-white); */

    --hover-intensity: 10rem;
    --hover-smoothness: 70ms;
    --fall-smoothness: 250ms;
    --perspective: 2000px;
}

#celebration-function {
    height: 30rem;
    display: grid;
    place-items: center;
    font-family: var(--heading-font);
    background: var(--clr-bg);
    color: var(--clr-text);
    overflow: hidden;
    padding-top: 2em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.celebration {
    --r: calc(var(--max-z) * (var(--p) - 1) + var(--z));
    --r-n: calc((var(--r) - 1) / (var(--max-z) * var(--max-p) - 1));
    block-size: min(30rem, 100%);
    inline-size: min(60rem, 100%);
    display: flex;
    align-items: flex-end;
    position: relative;
    perspective: var(--perspective);
    transform-style: preserve-3d;
    --dir: 0deg;

    @media (max-width: 40rem) {
        writing-mode: sideways-rl;
        --dir: -90deg;
    }
}

.celebration a {
    flex: 1;
    block-size: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    font-size: 1rem;
    cursor: pointer;
    transform-style: preserve-3d;

    --ts: calc(var(--hover-smoothness) * var(--falloff) + var(--fall-smoothness) * (1 - var(--falloff)));
    --fs: calc(0.1s * var(--falloff, 0) + 0.8s * (1 - var(--falloff, 0)));
    transition:
        scale var(--op, 0.15s),
        filter var(--fs),
        transform var(--ts, var(--fall-smoothness)),
        flex 0.3s;
}

.celebration a {
    --p-n: calc(var(--i) / (var(--max-p) - 1));
    --diff: calc(var(--p-n) - var(--r-n));
    --u: calc(abs(var(--diff)) / var(--w));
    --w: 0.4;
    --falloff: clamp(calc(0.5 * (1 + cos(min(var(--u), 1) * 180deg))), 0, 1);

    --tilt: calc(clamp(-1, var(--diff) * 5, 1) * var(--falloff) * 70deg);

    transform: translateZ(calc(var(--falloff) * var(--hover-intensity))) rotateY(calc(var(--tilt) * cos(var(--dir)))) rotateX(calc(var(--tilt) * sin(var(--dir))));

    filter: brightness(max(0.5, var(--falloff, 0) * 1.2)) saturate(var(--falloff, 0));
}

.celebration .img {
    background-image: var(--img);
    background-color: color-mix(in srgb, var(--bg-white), transparent 80%);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    margin-inline: 0.1em;
}

.hover-zone {
    position: absolute;
    inset: 0;
    inset-inline: -3px;
    display: flex;
    z-index: 999;

    >i {
        flex: 1;
        transition: 0.3s;
    }
}

.hover-zone {
    &::after {
        position: absolute;
        inset: 0;
    }

    &:active,
    &:hover:not(:has(> i:hover)),
    a:focus-visible & {
        &::after {
            content: "";
            pointer-events: all;
            --o: 1;
        }
    }
}

.celebration:has(.hover-zone:hover):not(:has(i:hover)),
.celebration:has(a:focus-visible) {
    --z: calc((var(--max-z) + 1) / 2);

    a:hover,
    a:focus-visible {
        flex: 4;
    }
}

.celebration a {
    .celebration:has(:nth-child(01 of &):is(:hover, :focus-visible)) {
        --p: 01;
    }

    .celebration:has(:nth-child(02 of &):is(:hover, :focus-visible)) {
        --p: 02;
    }

    .celebration:has(:nth-child(03 of &):is(:hover, :focus-visible)) {
        --p: 03;
    }

    .celebration:has(:nth-child(04 of &):is(:hover, :focus-visible)) {
        --p: 04;
    }

    .celebration:has(:nth-child(05 of &):is(:hover, :focus-visible)) {
        --p: 05;
    }

    .celebration:has(:nth-child(06 of &):is(:hover, :focus-visible)) {
        --p: 06;
    }

    .celebration:has(:nth-child(07 of &):is(:hover, :focus-visible)) {
        --p: 07;
    }

    .celebration:has(:nth-child(08 of &):is(:hover, :focus-visible)) {
        --p: 08;
    }

    .celebration:has(:nth-child(09 of &):is(:hover, :focus-visible)) {
        --p: 09;
    }

    .celebration:has(:nth-child(10 of &):is(:hover, :focus-visible)) {
        --p: 10;
    }

    .celebration:has(:nth-child(11 of &):is(:hover, :focus-visible)) {
        --p: 11;
    }

    .celebration:has(:nth-child(12 of &):is(:hover, :focus-visible)) {
        --p: 12;
    }

    .celebration:has(:nth-child(13 of &):is(:hover, :focus-visible)) {
        --p: 13;
    }

    .celebration:has(:nth-child(14 of &):is(:hover, :focus-visible)) {
        --p: 14;
    }
}

.celebration i {
    .celebration:has(:nth-child(1 of &):hover) {
        --z: 1;
    }

    .celebration:has(:nth-child(2 of &):hover) {
        --z: 2;
    }

    .celebration:has(:nth-child(3 of &):hover) {
        --z: 3;
    }

    .celebration:has(:nth-child(4 of &):hover) {
        --z: 4;
    }

    .celebration:has(:nth-child(5 of &):hover) {
        --z: 5;
    }

    .celebration:has(:nth-child(6 of &):hover) {
        --z: 6;
    }

    .celebration:has(:nth-child(7 of &):hover) {
        --z: 7;
    }

    .celebration:has(:nth-child(8 of &):hover) {
        --z: 8;
    }

    .celebration:has(:nth-child(9 of &):hover) {
        --z: 9;
    }
}

.title::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: 0;
    background-color: var(--accent-color);
}

.time {
    width: 100px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}

.time p {
    font-size: -0.75rem;
}

.vertical-line {
    width: 5px;
    height: 100%;
    margin: 0 auto;
    background: repeating-linear-gradient(to bottom,
            var(--accent-color) 0px,
            var(--accent-color) 10px,
            transparent 10px,
            transparent 20px);
    animation: moveDashes 3s linear infinite;
    background-size: 100% 20px;
}

@keyframes moveDashes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 20px;
    }
}

.about-details-top {
    height: 14rem;
    position: relative;
}

.about-details-text-wrapper {
    position: absolute;
    bottom: 40px;
}

.about-details {
    width: 100%;
    height: 500px;
    background-image: var(--img);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.abt-slogon:before {
    content: "";
    width: 45px;
    height: 5px;
    background: repeating-linear-gradient(to right,
            var(--accent-color) 0px,
            transparent 10px,
            transparent 20px);
    position: absolute;
    bottom: -10px;
    left: 24px;
}

@media (min-width: 768px) {
    .today-img {
        position: absolute;
        /* height: auto; */
        top: 50%;
        transform: translatey(-50%);
        right: -20%;
        object-fit: cover;
    }

    .today-text {
        background-color: var(--bg-surface-dark);
        padding: 40px 30px;
        padding-left: 9rem;
        text-align: justify;
    }
}

.btn-goto-home {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 36px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    margin-top: 3rem;
}

.btn-goto-home:hover {
    color: var(--accent-color);
    background-color: var(--contrast-color);
}

.visitor-form {
    border: 1px solid var(--accent-color);
    border-radius: 20px;
}

.row.align-items-stretch>[class*="col-"] {
    display: flex;
}

.slider-container {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform-origin: bottom right;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    animation: expandSlide 9s ease-in-out forwards;
    opacity: 1;
}

@keyframes expandSlide {
    0% {
        transform: scale(0.3) translate(50%, 50%);
        opacity: 0;
    }

    20% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: scale(1.1) translate(-20%, -20%);
        opacity: 0;
    }
}

/* Corner previews */
.corner-preview {
    position: absolute;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--bg-white), transparent 50%);
    border-radius: 8px;
    z-index: 5;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.corner-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corner-preview.top-left {
    top: 10px;
    left: 10px;
}

.corner-preview.bottom-right {
    bottom: 10px;
    right: 10px;
}

.corner-preview:hover {
    opacity: 1;
    transform: scale(1.05);
}

.bnq-hall-features ul li {
    list-style: none;
    /* color: var(--accent-color); */
}

Fixed Carousel .hero .carousel-item.bg-fixed {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero .carousel-item.bg-fixed img {
    display: none;
}

/* Floating submit now button */

.floating-submit {
    position: fixed;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 12px;
    padding: 24px 10px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;

    /* Make text vertical and better looking */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* less rigid vertical flow */
    letter-spacing: 3px;
    /* space letters evenly */
    text-transform: uppercase;
    /* clean, bold look */
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    /* subtle depth */

    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-submit::after {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shine-vertical 2s infinite;
    pointer-events: none;
}

@keyframes shine-vertical {
    0% {
        top: -150px;
    }

    50% {
        top: 200%;
    }

    100% {
        top: 200%;
    }
}

@keyframes shine {
    0% {
        left: -75px;
    }

    100% {
        left: 120%;
    }
}

.floating-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
}

/* === Enquiry Offcanvas (Right-side panel) ================================== */

.offcanvas-enquiry {
    background: var(--bg-almost-black);
    /* matches dark-background vibe */
    color: var(--contrast-color);
    width: 50vw;
    /* half screen on desktop */
    max-width: 520px;
    border-left: 1px solid color-mix(in srgb, var(--color-primary), transparent 60%);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .offcanvas-enquiry {
        width: 100vw;
        /* full width on mobile */
        max-width: 100%;
    }
}

.offcanvas-enquiry .offcanvas-header {
    background: rgba(0, 0, 0, 0.7);
}

.offcanvas-enquiry .offcanvas-title {
    font-family: var(--heading-font);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offcanvas-enquiry .text-small {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
}

.offcanvas-enquiry .form-label {
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.offcanvas-enquiry .custom-input,
.offcanvas-enquiry .custom-select {
    color: var(--bg-gray);
}

.offcanvas-enquiry .custom-input::placeholder {
    color: color-mix(in srgb, var(--bg-white), transparent 60%);
}

.offcanvas-enquiry .btn-accent {
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* optional subtle focus glow on inputs */
.offcanvas-enquiry .custom-input:focus,
.offcanvas-enquiry .custom-select:focus {
    box-shadow: 0 0 0 0.15rem rgba(212, 175, 55, 0.35);
}

.offcanvas-enquiry .custom-input.custom-select,
.offcanvas-enquiry .custom-select {
    background-color: var(--bg-almost-black);
    color: var(--bg-white);
}

.offcanvas-enquiry .custom-select option {
    background-color: var(--bg-almost-black);
    color: var(--bg-white);
}

.btn-accent {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: 0.3s ease;
}

.btn-accent:hover {
    background: var(--accent-color);
    color: var(--bg-almost-black);
    /* or var(--bg-white) depending on your design */
}

/* Celebration and functions and Banquet halls gallery slider */
/* Wedding Gallery Slider Styles */
.wedding-gallery-slider {
    padding: 2rem 0;
}

.wedding-swiper {
    padding: 2rem 0 4rem 0;
    position: relative;
}

.wedding-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-swiper .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.wedding-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Navigation buttons */
.wedding-swiper .swiper-button-next,
.wedding-swiper .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wedding-swiper .swiper-button-next:after,
.wedding-swiper .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.wedding-swiper .swiper-button-next:hover,
.wedding-swiper .swiper-button-prev:hover {
    background: color-mix(in srgb, var(--color-primary), transparent 20%);
    transform: scale(1.1);
}

/* Pagination */
.wedding-swiper .swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.wedding-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .wedding-swiper .swiper-slide img {
        height: 250px;
    }

    .wedding-swiper .swiper-button-next,
    .wedding-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .wedding-swiper .swiper-button-next:after,
    .wedding-swiper .swiper-button-prev:after {
        font-size: 18px;
    }
}

/*Celebration grid card */
/* Celebration Grid - Compact & Clickable (image + title only) */
.celebration-grid-card {
    position: relative;
    display: block;
    overflow: hidden;
    object-fit: cover;
    height: 600px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--color-primary), transparent 70%);
    background: color-mix(in srgb, var(--bg-white), transparent 95%);
    box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary), transparent 90%);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

/* Responsive Heights */
@media (max-width: 1400px) {
    .celebration-grid-card {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .celebration-grid-card {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .celebration-grid-card {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .celebration-grid-card {
        height: 350px;
    }
}

.celebration-grid-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            color-mix(in srgb, var(--bg-white), transparent 70%),
            transparent);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.celebration-grid-card:hover::before {
    animation: shine 1s forwards;
    opacity: 1;
}

.celebration-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary), transparent 50%);
    border-color: color-mix(in srgb, var(--color-primary), transparent 40%);
}

@keyframes shine {
    0% {
        left: -75px;
    }

    100% {
        left: 110%;
    }
}

/* Image box – full height, follows parent */
.celebration-grid-image {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill card height */
    overflow: hidden;
    margin: 0;
    line-height: 0;
}

.celebration-grid-image img {
    width: 100%;
    height: 100%;
    /* Fill container */
    object-fit: cover;
    filter: brightness(0.9);
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
    display: block;
}

.celebration-grid-card:hover .celebration-grid-image img {
    transform: scale(1.05);
    filter: brightness(0.75);
}

/* Title strip at the bottom */
.celebration-grid-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.6rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    margin: 0;
    z-index: 2;
}

.celebration-grid-title h3 {
    margin: 0;
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Centered overlay info */
.celebration-grid-info {
    position: absolute;
    inset: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(to bottom,
            color-mix(in srgb, var(--color-primary), transparent 90%),
            rgba(0, 0, 0, 0.45),
            color-mix(in srgb, var(--color-primary), transparent 90%));

    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
    z-index: 3;
}

.celebration-grid-info p {
    margin: 0 0 12px;
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Guest capacity badge */
.celebration-grid-guests {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--bg-white);
    margin: 10px 0 16px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    z-index: 4;
}

/* Reveal guests on hover */
.celebration-grid-card:hover .celebration-grid-guests {
    opacity: 1;
    transform: translateY(0);
}

/* Slight shadow glow for extra clarity */
.celebration-grid-guests {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

/* Learn More button inside overlay
.celebration-learn-btn {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 25px;
  background: color-mix(in srgb, var(--color-primary), transparent 10%);
  color: var(--bg-almost-black);
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.celebration-learn-btn:hover {
  background: rgba(255, 215, 0, 1);
  transform: translateY(-3px);
} */

/* Show overlay on hover */
.celebration-grid-card:hover .celebration-grid-info {
    opacity: 1;
    transform: translateY(0);
}

/* Tighten gutters slightly for denser grid (optional) */
.row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

@media (min-width: 1400px) {
    .celebration-grid-image {
        height: 600px;
    }
}

/* === Celebrations & Functions Slider === */

.celebration-slider-wrapper {
    padding: rem 0;
}

.celebration-swiper {
    padding: 2rem 0 0rem 0;
    position: relative;
}

.celebration-swiper .swiper-slide {
    height: auto;
}

/* Card – elongated, similar to banquet hall cards */
.celebration-slide-item {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;

    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--color-primary), transparent 60%);
    background: color-mix(in srgb, var(--bg-white), transparent 98%);
    box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary), transparent 88%);

    transition: all 0.4s ease;
    height: 600px;
    /* elongated box */
}

/* Shine effect like halls */
.celebration-slide-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            color-mix(in srgb, var(--bg-white), transparent 65%),
            transparent);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

@keyframes celebration-shine {
    0% {
        left: -75px;
    }

    100% {
        left: 110%;
    }
}

.celebration-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--color-primary), transparent 55%);
    border-color: color-mix(in srgb, var(--color-primary), transparent 25%);
}

.celebration-slide-item:hover::before {
    animation: celebration-shine 1s forwards;
    opacity: 1;
}

/* Image fills whole card */
.celebration-slide-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celebration-slide-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.9);
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.celebration-slide-item:hover .celebration-slide-image img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

/* Title bar – ALWAYS visible at bottom */
.celebration-slide-title-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.6rem 1rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.4),
            transparent);
    z-index: 4;
}

.celebration-slide-title-bar h4 {
    margin: 0;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: "Oranienbaum", serif;
}

.celebration-grid-title h3 {
    font-size: 1.5rem;
}

.celebration-slide-text {
    margin: 0 0 12px;
    color: var(--bg-light-gray);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Button inside overlay */
.celebration-slide-btn {
    display: inline-block;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 25px;
    background: color-mix(in srgb, var(--color-primary), transparent 5%);
    color: var(--bg-darker);
    border: none;
    pointer-events: auto;
    /* clickable even though parent has none */
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.celebration-slide-btn:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
}

/* Show overlay on hover */
.celebration-slide-item:hover .celebration-slide-info {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 1400px) {
    .celebration-slide-item {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .celebration-slide-item {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .celebration-slide-item {
        height: 400px;
    }

    .celebration-slide-title-bar h4 {
        font-size: 0.95rem;
    }

    .celebration-slide-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .celebration-slide-item {
        height: 350px;
    }
}

/* Swiper nav/pagination (optional if you enable them) */

.celebration-swiper .swiper-button-next,
.celebration-swiper .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.celebration-swiper .swiper-button-next:after,
.celebration-swiper .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.celebration-swiper .swiper-button-next:hover,
.celebration-swiper .swiper-button-prev:hover {
    background: color-mix(in srgb, var(--color-primary), transparent 10%);
    transform: scale(1.1);
}

.celebration-swiper .swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.celebration-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {

    .celebration-swiper .swiper-button-next,
    .celebration-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .celebration-swiper .swiper-button-next:after,
    .celebration-swiper .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* Centered overlay info */
.celebration-slide-info {
    position: absolute;
    inset: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(to bottom,
            color-mix(in srgb, var(--color-primary), transparent 90%),
            rgba(0, 0, 0, 0.45),
            color-mix(in srgb, var(--color-primary), transparent 90%));

    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
    z-index: 3;
}

.celebration-slide-info p {
    margin: 0 0 12px;
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
}

.celebration-slide-desc {
    color: white;
}

.swiper-slide:hover .celebration-slide-info {
    opacity: 1;
    transform: translateY(0);
}

.php-email-form .sent-message {
    color: var(--accent-color);
    background: transparent;
}

.php-email-form .loading {
    color: var(--accent-color);
    background: transparent;
}

.php-email-form .error-message {
    background: transparent;
}

#mini-slider {
    height: 64px;
    object-fit: cover;
}

/* About Section Custom Images */
.about-custom-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.about-custom-img:hover {
    transform: scale(1.03);
    filter: brightness(0.9);
}

/* Responsive Heights for About Images */
@media (max-width: 1400px) {
    .about-custom-img {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .about-custom-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-custom-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .about-custom-img {
        height: 150px;
    }
}

.page-title h1 {
    color: var(--accent-color);
}

/* messenger */
.messenger-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1050;
    transition: all 0.3s ease;
}

.messenger-float i {
    color: #fff;
    font-size: 30px;
}
.messenger-float:hover i {
    color: #fff;
}

.messenger-text {
    color: white;
    font-weight: bold;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 8px;
    transition: max-width 0.3s ease;
    font-size: 14px;
}

.messenger-float:hover {
    padding-right: 20px;
}

.messenger-float:hover .messenger-text {
    max-width: 100px;
}