@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    height: 100%;
}


body {
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
}



/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

/* Dark Pink Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(194, 24, 91, 0.35),
            rgba(80, 10, 45, 0.75));
    z-index: 1;
}


/* =========================
   NAVIGATION
========================= */

.topbanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.topbar {
    width: 100%;
    height: 120px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.top-bar-left {
    display: flex;
    align-items: center;
}

.top-logo {
    width: 300px;
    height: auto;
}

/* Menu */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-bar-right a {
    position: relative;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    transition: .3s;
}

.top-bar-right a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc1da;
    transition: .3s;
}

.top-bar-right a:hover {
    color: #ffc1da;
}

.top-bar-right a:hover::after {
    width: 100%;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: absolute;
    top: 70%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 650px;
    color: white;
    z-index: 5;
    animation: heroFade .8s ease;
}

.hero-content h1 {
    font-family: 'Noto Serif', serif;
    font-size: clamp(20px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .35);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.7;
    max-width: 550px;
    color: rgba(255, 255, 255, .92);
    text-shadow:
        0 4px 12px rgba(0, 0, 0, .35);
}

.start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    border-radius: 50px;
    background: #c81d67;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    border: 2px solid white;
    box-shadow: 0 10px 25px rgba(200, 29, 103, .35);
    transition: all .35s ease;
}

.start:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.start:active {
    transform: translateY(-1px);
}

.start i {
    margin-left: 10px;
    font-size: 18px;
    transition: .3s;
}

.start:hover i {
    transform: translateX(5px);
}

.start a {
    text-decoration: none;
    color: white;
}

/* Animation */
@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(-35%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* =========================
   SERVICES
========================= */

.services {
    padding: 30px 50px;
}

.stitle {
    text-align: center;
    line-height: 20px;
}

.stitle p {
    text-transform: capitalize;
    color: #c81d67;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.stitle h2 {
    font-family: 'Noto Serif', serif;
}

.divider {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.divider span {
    flex: 1;
    height: 2.5px;
    background: #ccc;
}

.design {
    color: #c81d67;
    font-size: 40px;
}

/* IMAGES */
.services-container {
    display: flex;
    gap: 35px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.service-card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h1 {
    font-size: 20px;
    font-weight: 700;
    color: #c81d67;
    margin: 20px 25px 10px;
    font-family: "Noto Serif", serif;
    text-align: center;
}

.service-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin: 0 25px 25px;
}

.service-card::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #c81d67;
    margin: 0 25px 25px;
    border-radius: 10px;
}

/* Hide scrollbar */
.services-container::-webkit-scrollbar {
    display: none;
}

/* BUTTON SERVICES */
.services-button {
    text-align: center;
    margin-top: 20px;
}

.package-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #c81d67;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.package-btn:hover {
    background: none;
    color: black;
    border: 2px solid black;
    transform: translateY(-3px);
}

/* EVENTS / PROMOTIONAL BANNER */
.events {
    width: 100%;
    padding: 60px 20px;
    background: #fff;
}

#eventsCarousel {
    max-width: 1200px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

/* Images */
#eventsCarousel .carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Navigation buttons */
#eventsCarousel .carousel-control-prev,
#eventsCarousel .carousel-control-next {
    width: 8%;
}

#eventsCarousel .carousel-control-prev-icon,
#eventsCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    padding: 18px;
}

/* Indicators */
#eventsCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ABOUT DETAILS */

.about {
    /* border: 2px solid black; */
    padding: 40px 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-details {
    text-align: center;
}

.about-details h1 {
    font-family: 'Noto Serif', serif;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

.about-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #c81d67;
    color: white;
    padding: 60px 8% 20px;
}


.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}


.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}


.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}


.footer-about p {
    line-height: 1.8;
    color: #f8dbe7;
}


.footer-col a {
    display: block;
    color: #f8dbe7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .3s;
}


.footer-col a:hover {
    color: white;
    padding-left: 5px;
}


.footer-col p {
    color: #f8dbe7;
    margin-bottom: 12px;
}


.footer-col i {
    margin-right: 8px;
}


/* SOCIAL ICONS */

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}


.footer-social a {
    width: 40px;
    height: 40px;
    background: white;
    color: #c81d67;
    border-radius: 50%;
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}


.footer-social a:hover {
    background: #ffe1ed;
    padding: 0;
}


/* COPYRIGHT */

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    text-align: center;
}


.footer-bottom p {
    margin: 0;
    color: #f8dbe7;
}

/* =========================
   SERVICES PAGE
========================= */
.topnav {
    background: #c81d67;
}

.learn-more-btn {
    font-size: 14px;
    line-height: 1.6;
    color: #c81d67;
    margin: 25px;
    text-decoration: none;
    transition: .3;
}

.learn-more-btn:hover {
    color: gray;
}

.services-details {
    padding: 30px;
    background: #fff;
}

.service-details-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.service-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    color: #c94f7c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    text-align: justify;
}

.service-extras {
    padding: 20px 50px;
    background: #fff;
}

.extras-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.extra-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.extra-card h2 {
    color: #c94f7c;
    font-size: 28px;
    margin-bottom: 25px;
}

.extra-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extra-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.extra-card li i {
    color: #c94f7c;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.empty-text {
    color: #888;
    font-style: italic;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    border-radius: 50%;
    background: #fce8ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 32px;
    color: #c94f7c;
}

.item-price {
    color: #c94f7c;
    font-size: 18px;
    margin: 15px 0;
    text-align: center;
}

/* CATEGORIES GALLERY NAV BAR */
.gallery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    background: #fff;
    padding: 15px 20px;

    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    margin-bottom: 30px;
}

.category-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
    display: none;
}

.category-btn {
    flex-shrink: 0;

    border: none;
    padding: 10px 18px;

    border-radius: 30px;

    background: #f5f5f5;
    color: #555;

    font-size: 14px;

    cursor: pointer;
    transition: .3s;
}

.category-btn.active {
    background: #ff5c87;
    color: #fff;
}

.search-box {
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.search-box input {
    width: 100%;
    height: 42px;

    padding: 0 45px 0 18px;

    border: 1px solid #ddd;
    border-radius: 30px;

    outline: none;

    font-size: 14px;
    box-sizing: border-box;
}

.search-box input:focus {
    border-color: #ff5c87;
    box-shadow: 0 0 0 4px rgba(255, 92, 135, .15);
}

.search-icon {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 16px;

    line-height: 1;

    pointer-events: none;
}

/* GALLERY CARDS */

.gallery-themes {
    width: 100%;
    padding: 10px 40px 20px;
    background: #f8f9fb;
}

.theme-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.theme-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image same height */
.theme-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-count {
    position: absolute;
    top: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 7px 12px;

    background: rgba(0, 0, 0, .65);
    color: #fff;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    z-index: 5;
}

/* Content same height */
.theme-content {
    padding: 25px;

    display: flex;
    flex-direction: column;

    flex: 1;
    min-height: 150px;
}

.theme-content h3 {
    min-height: 32px;
}

.theme-content p {
    min-height: 50px;
}

.learn-more-btn {
    margin-top: auto;
}


.page-title {
    position: relative;
    padding: 30px 20px 40px;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(255, 250, 248, .92),
            rgba(255, 250, 248, .92)),
        url('../assets/images/wedding-bg.jpg');

    background-size: cover;
    background-position: center;
}

.page-title::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #f8d7df;

    opacity: .35;

    top: -150px;
    left: -120px;
}

.page-title::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #f8d7df;

    opacity: .35;

    bottom: -150px;
    right: -120px;
}

.title-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;
}


.title-small {
    display: inline-block;

    color: #b88662;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 10px;
}


.title-content h1 {

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.2;

    color: #2b2b2b;

    font-weight: 700;

}


.title-content h1 span {

    color: #d88aa0;

    font-style: italic;

}


.title-content p {

    max-width: 650px;

    margin: 15px auto;

    color: #777;

    font-size: 17px;

    line-height: 1.8;

}


.title-divider {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    color: #d88aa0;

    font-size: 20px;

}


.title-divider span {

    width: 60px;

    height: 1px;

    background: #d88aa0;

}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    margin: 40px 0;
}


.pagination button {

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: #f2f2f2;

    color: #555;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;
}


.pagination button:hover,
.pagination button.active {

    background: #ff5c87;

    color: #fff;
}

/* INQUIRE BUTTON */

.inquiry-header {
    padding: 30px 5%;
    background: #fffaf9;
}

.inquiry-header-wrapper {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.inquiry-header-text {
    max-width: 750px;
}

.inquiry-header-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #c47b91;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}


.inquiry-header-text h1 {
    margin: 0 0 18px;

    font-family: "Playfair Display", serif;

    font-size: 48px;

    font-weight: 700;

    color: #2b2b2b;
}


.inquiry-header-text h1 span {
    color: #d86b8a;

    font-style: italic;
}


.inquiry-header-text p {
    margin: 0;

    max-width: 650px;

    color: #777;

    font-size: 17px;

    line-height: 1.8;
}


/* Button */

.inquiry-header-action {
    flex-shrink: 0;
}


.inquiry-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #d86b8a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    width: 300px;
}


.inquiry-button:hover {
    background: #b95673;

    transform: translateY(-3px);

    color: white;
}


.inquiry-button i {
    transition: .3s;
}


.inquiry-button:hover i {
    transform: translateX(5px);
}


/* VIEW IMAGES */
.gallery-modal {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .8);

    z-index: 9999;

    justify-content: center;

    align-items: center;

}


.gallery-modal-content {

    width: 90%;

    max-width: 1000px;

    background: #fff;

    padding: 25px;

    border-radius: 20px;

    position: relative;

}


.gallery-close {

    position: absolute;

    top: 15px;

    right: 20px;

    border: none;

    background: #fff;

    font-size: 35px;

    cursor: pointer;

    z-index: 2;

}


.main-gallery-image {

    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 15px;

}


.gallery-thumbnails {

    display: flex;

    gap: 12px;

    margin-top: 20px;

    overflow-x: auto;

}


.gallery-thumbnails img {

    width: 90px;

    height: 70px;

    object-fit: cover;

    border-radius: 10px;

    cursor: pointer;

    opacity: .6;

    transition: .3s;

}


.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {

    opacity: 1;

    border: 3px solid #d86b8a;

}

.contact-popup {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    backdrop-filter: blur(5px);

    z-index: 99999;

    justify-content: center;

    align-items: center;

    padding: 20px;

}


.contact-box {

    width: 100%;

    max-width: 450px;

    background: #fff;

    border-radius: 25px;

    padding: 35px;

    position: relative;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);

    animation: contactShow .3s ease;

}


@keyframes contactShow {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.contact-close {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: #fde8ee;

    color: #d86b8a;

    font-size: 28px;

    cursor: pointer;

}


.contact-title {

    text-align: center;

    margin-bottom: 25px;

}


.contact-title span {

    color: #c47b91;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

}


.contact-title h2 {

    margin: 12px 0;

    font-family: "Playfair Display", serif;

    font-size: 36px;

}


.contact-title em {

    color: #d86b8a;

}


.contact-title p {

    color: #777;

    font-size: 14px;

}


.contact-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.contact-links a {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    border-radius: 15px;

    background: #fff7f9;

    color: #333;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}


.contact-links a i {

    width: 35px;

    height: 35px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: #d86b8a;

    color: #fff;

    font-size: 18px;

}


.contact-links a:hover {

    background: #d86b8a;

    color: #fff;

}


.contact-links a:hover i {

    background: #fff;

    color: #d86b8a;

}

/* REVIEWS */
/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    padding: 20px 5%;
    background: #fffaf9;
}


.reviews-header {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}


.reviews-header span {

    display: inline-block;

    color: #c47b91;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.reviews-header h2 {

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 48px;

    font-weight: 700;

    color: #2b2b2b;

}


.reviews-header h2 em {

    color: #d86b8a;

    font-style: italic;

}


.reviews-header p {

    margin: 20px auto 0;

    max-width: 650px;

    color: #777;

    font-size: 16px;

    line-height: 1.8;

}


/* Review Cards */

.reviews-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
}


/* Hide scrollbar (optional) */
.reviews-container::-webkit-scrollbar {
    display: none;
}


/* Review Card */

.review-card {
    flex: 0 0 350px;
    /* fixed box width */

    background: #fff;

    padding: 35px 30px;

    border-radius: 25px;

    border: 1px solid #f3e2e7;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    text-align: center;

    transition: .3s ease;

    position: relative;
}


.review-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(216, 107, 138, .15);

}


.review-card::before {

    content: "“";

    position: absolute;

    top: 15px;

    left: 25px;

    font-size: 70px;

    font-family: serif;

    color: #f4cbd6;

}


.review-stars {

    color: #d8a13c;

    font-size: 20px;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.review-card p {

    color: #666;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.review-card h4 {

    margin: 0;

    color: #333;

    font-size: 17px;

    font-weight: 700;

}

/* REVIEW FORM */
.review-modal {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    backdrop-filter: blur(5px);

    z-index: 99999;

    justify-content: center;

    align-items: center;

    padding: 20px;

}


.review-modal-box {

    width: 100%;

    max-width: 550px;

    background: white;

    border-radius: 25px;

    padding: 40px;

    position: relative;

    animation: reviewPopup .3s ease;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);

}


@keyframes reviewPopup {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.review-close {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: #fde7ee;

    color: #d86b8a;

    font-size: 28px;

    cursor: pointer;

}


.review-popup-header {

    text-align: center;

    margin-bottom: 25px;

}


.review-popup-header span {

    color: #c47b91;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;

}


.review-popup-header h2 {

    margin: 15px 0;

    font-family: "Playfair Display", serif;

    font-size: 36px;

}


.review-popup-header em {

    color: #d86b8a;

}


.review-popup-header p {

    color: #777;

}



.review-form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.review-form input,
.review-form textarea {

    width: 100%;

    padding: 14px 16px;

    border-radius: 12px;

    border: 1px solid #ddd;

    outline: none;

    font-size: 14px;

}


.review-form textarea {

    height: 120px;

    resize: none;

}


.rating-box label {

    display: block;

    margin-bottom: 8px;

    color: #555;

    font-weight: 600;

}


/* Stars */

.stars {

    display: flex;

    flex-direction: row-reverse;

    justify-content: flex-end;

}


.stars input {

    display: none;

}


.stars label {

    font-size: 30px;

    color: #ddd;

    cursor: pointer;

}


.stars input:checked~label,
.stars label:hover,
.stars label:hover~label {

    color: #d8a13c;

}



.submit-review {

    border: none;

    padding: 15px;

    border-radius: 30px;

    background: #d86b8a;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

}


.submit-review:hover {

    background: #b95673;

}

/* thanks review */
.thankyou-modal {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    backdrop-filter: blur(5px);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

}


.thankyou-box {

    background: #fff;

    width: 90%;

    max-width: 420px;

    padding: 40px;

    border-radius: 25px;

    text-align: center;

    animation: thankyouShow .3s ease;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);

}


@keyframes thankyouShow {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.thankyou-icon i {

    font-size: 65px;

    color: #d86b8a;

}


.thankyou-box h2 {

    margin: 20px 0 10px;

    font-family: "Playfair Display", serif;

    font-size: 36px;

}


.thankyou-box p {

    color: #777;

    line-height: 1.7;

}


.thankyou-box button {

    margin-top: 20px;

    border: none;

    padding: 12px 35px;

    border-radius: 30px;

    background: #d86b8a;

    color: #fff;

    cursor: pointer;

    font-weight: 600;

}


.thankyou-box button:hover {

    background: #b95673;

}

/* blogs */
.blog-header {
    padding: 20px 30px;
    background: linear-gradient(135deg,
            #f4bbc9,
            #fff);
    position: relative;
    overflow: hidden;
}


.blog-header::before {
    content: "❀";
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 120px;
    color: rgba(209, 107, 143, .08);
}


.blog-header::after {
    content: "✿";
    position: absolute;
    bottom: -40px;
    right: 40px;
    font-size: 150px;
    color: rgba(209, 107, 143, .08);
}


.blog-title-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}


.blog-label {
    display: inline-block;
    color: #d16b8f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.blog-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}


.blog-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #d16b8f;
    font-size: 24px;
    margin-bottom: 5px;
}


.blog-divider span {
    width: 80px;
    height: 1px;
    background: #d16b8f;
}


.blog-header p {
    max-width: 700px;
    margin: auto;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}

/* BLOGS CONTENT */
.single-blog {
    padding: 20px 0;
    background: #fffafc;
}


.single-blog-header {
    text-align: center;
    margin-bottom: 40px;
}


.single-blog-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    color: #333;
}


.single-blog-header p {
    color: #d16b8f;
}


.single-blog-image img {

    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;

}


.single-blog-content {

    margin-top: 50px;
    font-size: 18px;
    line-height: 2;
    color: #555;

}


.single-blog-content img {

    max-width: 100%;
    height: 400px;
    border-radius: 15px;
    margin: 25px 0;

}


/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .topbar {
        padding: 0 30px;
    }

    .top-logo {
        width: 150px;
    }

    .top-bar-right {
        gap: 20px;
    }

    .top-bar-right a {
        font-size: 17px;
    }

    .hero-content {
        left: 5%;
        max-width: 550px;
    }

    .events {
        padding: 40px 15px;
    }

    #eventsCarousel .carousel-item img {
        height: 420px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-details {
        padding: 60px 40px;
    }

    .service-details-container {
        gap: 40px;
    }

    .service-content h1 {
        font-size: 34px;
    }

    .service-extras {
        padding: 0 40px 60px;
    }

    .gallery-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    .theme-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .reviews-container {

        grid-template-columns: repeat(2, 1fr);

    }

}



/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .topbar {
        height: auto;
        padding: 15px;
        flex-direction: column;
        gap: 20px;
        background: rgba(0, 0, 0, .15);
        backdrop-filter: blur(8px);
    }
    
    .top-logo {
        width: 100px;
    }
    
    .footer-logo {
        width: 150px;
    }
    

    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        top: 75%;
        left: 20px;
        right: 20px;
        max-width: none;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
        text-align: center;
    }

    .service-card {
        flex: 0 0 250px;
    }

    .services-container {
        padding: 20px 0;
        gap: 20px;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h1 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 12px;
    }

    .events {
        padding: 30px 10px;
    }

    #eventsCarousel {
        border-radius: 10px;
    }

    #eventsCarousel .carousel-item img {
        height: 180px;
    }

    #eventsCarousel .carousel-control-prev,
    #eventsCarousel .carousel-control-next {
        width: 12%;
    }

    .design {
        font-size: 20px;
    }

    .stitle {
        text-align: center;
        line-height: 10px;
    }

    .stitle p {
        font-size: 16px;
    }

    .stitle h2 {
        font-family: 'Noto Serif', serif;
        font-size: 20px;
    }

    .about {
        padding: 40px 45px;
    }

    .about-details h1 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .about-details p {
        font-size: 14px;
    }

    .footer {
        padding: 40px 25px 20px;
    }


    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .footer-social {
        justify-content: center;
    }


    .footer-social a:hover {
        padding: 0;
    }

    .services-details {
        padding: 40px 20px;
    }

    .service-details-container {
        flex-direction: column;
        text-align: center;
    }

    .service-image img {
        height: 320px;
    }

    .service-content h1 {
        font-size: 30px;
    }

    .service-content p {
        text-align: left;
    }

    .service-extras {
        padding: 0 20px 40px;
    }

    .extras-container {
        grid-template-columns: 1fr;
    }

    .extra-card {
        padding: 25px;
    }

    .extra-card h2 {
        font-size: 24px;
    }

    .gallery-themes {
        padding: 10px;
    }

    .theme-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .theme-image {
        height: 150px;
    }

    .theme-content {
        padding: 10px;
        min-height: 40px;
    }

    .theme-content h3 {
        font-size: 13px;
        min-height: 30px;
    }

    .theme-content p {
        display: none;
    }

    .learn-more-btn {
        font-size: 11px;
    }

    .photo-count {
        top: 6px;
        right: 6px;
        padding: 4px 7px;
        font-size: 10px;
    }

    .gallery-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }

    .category-list {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .category-btn {
        font-size: 13px;
        padding: 9px 16px;
    }

    .search-box {
        width: 100%;
    }

    .page-title {
        padding: 15px 15px;
    }


    .title-content h1 {
        font-size: 30px;
    }


    .title-content p {
        font-size: 11px;
        margin: 5px auto;
    }


    .title-small {
        letter-spacing: 2px;
    }

    .pagination {
        gap: 6px;
    }

    .pagination button {

        width: 34px;
        height: 34px;

        font-size: 13px;
    }

    .inquiry-header {
        padding: 20px;
    }


    .inquiry-header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }


    .inquiry-header-text h1 {
        font-size: 26px;
    }


    .inquiry-header-text p {
        margin: 0;
        font-size: 12px;
    }


    .inquiry-header-action {
        width: 100%;
    }

    .inquiry-button {
        width: 80%;
        height: 45px;
        justify-content: center;
    }

    .main-gallery-image {

        height: 300px;

    }


    .gallery-thumbnails img {

        width: 70px;

        height: 60px;

    }

    .reviews-section {

        padding: 55px 20px;

    }


    .reviews-header h2 {

        font-size: 34px;

    }

    .reviews-header p {

        font-size: 12px;

    }


    .reviews-container {

        grid-template-columns: 1fr;

    }


    .review-card {

        padding: 30px 20px;

    }

    .review-modal-box {

        padding: 25px;

    }


    .review-popup-header h2 {

        font-size: 28px;

    }

    .blog-header {
        padding: 20px 20px;
    }

    .blog-header h1 {
        font-size: 28px;
    }

    .blog-header p {
        display: none;
    }

    .blog-divider span {
        width: 40px;
    }

    .single-blog {
        margin: 0;
        padding: 10px 0;
    }

    .single-blog-header {
        margin-bottom: 20px;
    }


    .single-blog-header h1 {
        font-size: 32px;
    }

    .single-blog-image img {
        height: 150px;
    }


    .single-blog-content {
        margin-top: 20px;
        font-size: 18px;

    }


    .single-blog-content img {
        max-width: 100%;
        height: 150px;
        border-radius: 15px;
        margin: 20px 0;

    }
}


/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px) {
    
    .topbar {
        padding: 5px;
    }

    .top-bar-right a {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .service-card {
        flex: 0 0 200px;
    }

    .service-card img {
        height: 170px;
    }

    .service-card h1 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 10px;
    }

    .services {
        padding: 30px 20px;
    }

    .design {
        font-size: 20px;
    }

    .package-btn {
        font-size: 14px;
    }

    .events {
        padding: 20px 20px;
    }

    #eventsCarousel {
        border-radius: 0;
        box-shadow: none;
    }

    #eventsCarousel .carousel-item img {
        height: 150px;
    }

    #eventsCarousel .carousel-control-prev-icon,
    #eventsCarousel .carousel-control-next-icon {
        padding: 12px;
    }

    #eventsCarousel .carousel-indicators {
        margin-bottom: 10px;
    }

}