/* =========================
   GLOBAL STYLES
========================= */

:root {
    --primary-color: #d6a184;
    --secondary-color: #2f1f1c;
    --text-color: #4d3b35;
    --bg-color: #faf5f0;
    --white-color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

/* =========================
   NAVBAR
========================= */

.main-header {
    transition: 0.4s ease;
    z-index: 999;
}

.navbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo-text {
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    font-family: 'Playfair Display', serif;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.theme-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-block;
    transition: 0.4s ease;
}

}
/* =========================================================
   MALAR MUA - LUXURY WEBSITE STYLESHEET
   Tech Stack:
   Bootstrap 5.3 + PHP + HTML + CSS + JS
========================================================= */

/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --primary-color: #d6a184;
    --primary-hover: #bf8e73;

    --secondary-color: #2f1f1c;

    --text-color: #4d3b35;

    --bg-color: #faf5f0;

    --light-bg: #fffaf7;

    --white-color: #ffffff;

    --border-color: #ead6cb;

    --transition: 0.4s ease;

}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   BODY
========================================================= */

body {

    font-family: 'Poppins', sans-serif;

    background: var(--bg-color);

    color: var(--text-color);

    overflow-x: hidden;

    scroll-behavior: smooth;

}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Playfair Display', serif;

    font-weight: 600;

    color: var(--secondary-color);

}

p {

    line-height: 1.9;

    font-size: 16px;

    color: #6d5b55;

}

a {

    text-decoration: none;

}

img {

    max-width: 100%;

    display: block;

}


/* =========================================================
   COMMON SPACING
========================================================= */

.section-padding {

    padding: 120px 0;

}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {

    max-width: 750px;

    margin: auto;

}

.section-subtitle {

    color: var(--primary-color);

    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 14px;

    display: inline-block;

    margin-bottom: 20px;

    font-weight: 500;

}

.section-title h2 {

    font-size: 60px;

    margin-bottom: 25px;

    line-height: 1.2;

}

.section-title p {

    max-width: 650px;

    margin: auto;

}


/* =========================================================
   BUTTONS
========================================================= */

.theme-btn {

    background: var(--primary-color);

    color: var(--white-color);

    padding: 15px 32px;

    border-radius: 60px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

    font-weight: 500;

    transition: var(--transition);

    border: none;

}

.theme-btn:hover {

    background: var(--primary-hover);

    color: var(--white-color);

    transform: translateY(-3px);

}

.outline-btn {

    border: 1px solid rgba(255,255,255,0.5);

    color: var(--white-color);

    padding: 15px 32px;

    border-radius: 60px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}

.outline-btn:hover {

    background: rgba(255,255,255,0.1);

    color: var(--white-color);

}


/* =========================================================
   NAVBAR
========================================================= */

.main-header {

    z-index: 999;

}

.navbar {

    background: rgba(0,0,0,0.2);

    backdrop-filter: blur(12px);

    transition: var(--transition);

    padding: 18px 0;

}

.logo-text {

    font-size: 34px;

    color: var(--white-color);

    font-family: 'Playfair Display', serif;

    font-weight: 700;

}

.nav-link {

    color: rgba(255,255,255,0.85);

    text-transform: uppercase;

    font-size: 14px;

    letter-spacing: 1px;

    transition: var(--transition);

    font-weight: 500;

}

.nav-link:hover {

    color: var(--primary-color);

}


/* =========================================================
   OFFCANVAS MENU
========================================================= */

.offcanvas {

    background: var(--light-bg);

}

.offcanvas-title {

    font-family: 'Playfair Display', serif;

    color: var(--secondary-color);

}

.offcanvas .nav-link {

    color: var(--secondary-color);

    font-size: 15px;

}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {

    position: relative;

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    background: url('../images/hero/hero-banner.jpg') center center/cover no-repeat;

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.55);

}

.hero-content {

    position: relative;

    z-index: 2;

}

.hero-subtitle {

    color: #f0d2c1;

    text-transform: uppercase;

    letter-spacing: 5px;

    font-size: 14px;

    margin-bottom: 25px;

    display: inline-block;

}

.hero-content h1 {

    font-size: 88px;

    color: var(--white-color);

    line-height: 1.15;

    margin-bottom: 30px;

}

.hero-content p {

    max-width: 750px;

    margin: auto;

    color: rgba(255,255,255,0.82);

    font-size: 17px;

}

.hero-buttons {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}


/* =========================================================
   CATEGORIES SECTION
========================================================= */

.categories-section {

    background: var(--light-bg);

}

.category-card {

    position: relative;

    overflow: hidden;

    border-radius: 32px;

    height: 450px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

}

.category-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.8s ease;

}

.category-card:hover img {

    transform: scale(1.08);

}

.category-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);

    display: flex;

    align-items: flex-end;

    padding: 35px;

}

.category-overlay h3 {

    color: var(--white-color);

    font-size: 34px;

    margin-bottom: 15px;

}

.category-overlay a {

    color: #f5d8ca;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

}


/* =========================================================
   GALLERY SECTION
========================================================= */

.featured-gallery {

    background: var(--bg-color);

}

.gallery-filters {

    margin-bottom: 40px;

}

.gallery-filters button {

    border: 1px solid var(--border-color);

    background: transparent;

    padding: 12px 26px;

    border-radius: 60px;

    margin: 6px;

    transition: var(--transition);

    color: var(--text-color);

    font-size: 14px;

}

.gallery-filters button.active,
.gallery-filters button:hover {

    background: var(--primary-color);

    color: var(--white-color);

    border-color: var(--primary-color);

}

.gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: 0 15px 45px rgba(0,0,0,0.08);

}

.gallery-card img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: 0.7s ease;

}

.vertical-card img {

    height: 620px;

}

.gallery-card:hover img {

    transform: scale(1.08);

}

.gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.45);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: var(--transition);

}

.gallery-card:hover .gallery-overlay {

    opacity: 1;

}

.gallery-popup {

    width: 75px;

    height: 75px;

    background: var(--white-color);

    color: var(--secondary-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    transition: var(--transition);

}

.gallery-popup:hover {

    background: var(--primary-color);

    color: var(--white-color);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-track {

    background: #f3e8e1;

}

::-webkit-scrollbar-thumb {

    background: var(--primary-color);

    border-radius: 50px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .hero-content h1 {

        font-size: 72px;

    }

}

@media (max-width: 991px) {

    .section-title h2 {

        font-size: 48px;

    }

    .hero-content h1 {

        font-size: 58px;

    }

    .category-card {

        height: 400px;

    }

}

@media (max-width: 767px) {

    .section-padding {

        padding: 80px 0;

    }

    .hero-section {

        height: auto;

        padding: 180px 0 120px;

    }

    .hero-content h1 {

        font-size: 42px;

    }

    .hero-content p {

        font-size: 15px;

    }

    .section-title h2 {

        font-size: 38px;

    }

    .theme-btn,
    .outline-btn {

        width: 100%;

        text-align: center;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .category-card {

        height: 380px;

    }

    .gallery-card img {

        height: 350px;

    }

    .vertical-card img {

        height: 480px;

    }

}

@media (max-width: 575px) {

    .logo-text {

        font-size: 28px;

    }

    .hero-content h1 {

        font-size: 36px;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .category-overlay h3 {

        font-size: 28px;

    }

}
/* =========================================================
   ADVANCED GALLERY
========================================================= */

.gallery-grid {

    margin: 0 auto;

}

.gallery-item {

    margin-bottom: 30px;

}

.gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 15px 45px rgba(0,0,0,0.08);

}

.gallery-card img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: 0.8s ease;

}

.vertical-card img {

    height: 620px;

}

.gallery-card:hover img {

    transform: scale(1.08);

}

.gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.45);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: 0.5s ease;

}

.gallery-card:hover .gallery-overlay {

    opacity: 1;

}

.gallery-icon {

    width: 80px;

    height: 80px;

    background: rgba(255,255,255,0.9);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--secondary-color);

    font-size: 28px;

    transform: scale(0.8);

    transition: 0.4s ease;

}

.gallery-card:hover .gallery-icon {

    transform: scale(1);

}

.gallery-filters button {

    border: 1px solid var(--border-color);

    background: transparent;

    padding: 14px 28px;

    border-radius: 60px;

    margin: 5px;

    transition: 0.4s ease;

    font-size: 14px;

    color: var(--text-color);

}

.gallery-filters button.active,
.gallery-filters button:hover {

    background: var(--primary-color);

    color: var(--white-color);

    border-color: var(--primary-color);

}


/* GLIGHTBOX */

.glightbox-clean .gslide-description {

    display: none !important;

}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {

    background: #fffaf7;

}

.about-image {

    overflow: hidden;

    border-radius: 35px;

}

.about-image img {

    width: 100%;

    border-radius: 35px;

}

.about-content h2 {

    font-size: 58px;

    margin-bottom: 25px;

    line-height: 1.2;

}

.about-content p {

    margin-bottom: 20px;

}

.about-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 40px;

    margin-bottom: 40px;

}

.about-stat-box {

    background: var(--white-color);

    padding: 25px 30px;

    border-radius: 25px;

    min-width: 160px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

}

.about-stat-box h3 {

    font-size: 42px;

    margin-bottom: 8px;

}


/* =========================================================
   PACKAGES SECTION
========================================================= */

.packages-section {

    background: var(--bg-color);

}

.package-card {

    background: var(--white-color);

    border-radius: 35px;

    padding: 50px 40px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    height: 100%;

    transition: 0.5s ease;

}

.package-card:hover {

    transform: translateY(-10px);

}

.featured-package {

    background: var(--secondary-color);

}

.featured-package h3,
.featured-package li,
.featured-package .package-tag {

    color: var(--white-color);

}

.package-tag {

    display: inline-block;

    margin-bottom: 25px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

    color: var(--primary-color);

}

.package-card h3 {

    font-size: 60px;

    margin-bottom: 30px;

}

.package-card ul {

    list-style: none;

    padding: 0;

    margin-bottom: 40px;

}

.package-card ul li {

    margin-bottom: 18px;

    position: relative;

    padding-left: 30px;

}

.package-card ul li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: var(--primary-color);

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {

    background: #fffaf7;

}

.testimonial-card {

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(15px);

    border-radius: 35px;

    padding: 40px;

    height: 100%;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

}

.testimonial-stars {

    margin-bottom: 20px;

    color: #ffb347;

}

.testimonial-card p {

    margin-bottom: 30px;

}

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 15px;

}

.testimonial-user img {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    object-fit: cover;

}

.testimonial-user h4 {

    margin-bottom: 4px;

    font-size: 20px;

}

.testimonial-user span {

    color: #8a7a73;

    font-size: 14px;

}

/*---------------------------*/
/* =========================================================
   INSTAGRAM SECTION
========================================================= */

.instagram-section {

    background: var(--bg-color);

}

.insta-card {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

}

.insta-card img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: 0.7s ease;

}

.vertical-insta img {

    height: 620px;

}

.insta-card:hover img {

    transform: scale(1.08);

}

.insta-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.45);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: 0.4s ease;

}

.insta-card:hover .insta-overlay {

    opacity: 1;

}

.insta-overlay a {

    width: 80px;

    height: 80px;

    background: rgba(255,255,255,0.9);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--secondary-color);

    font-size: 30px;

}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

    background: #fffaf7;

}

.custom-accordion .accordion-item {

    border: none;

    margin-bottom: 20px;

    border-radius: 25px !important;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);

}

.custom-accordion .accordion-button {

    padding: 25px 30px;

    font-size: 18px;

    font-weight: 500;

    background: var(--white-color);

    color: var(--secondary-color);

    box-shadow: none;

}

.custom-accordion .accordion-button:not(.collapsed) {

    background: var(--secondary-color);

    color: var(--white-color);

}

.custom-accordion .accordion-body {

    padding: 25px 30px;

    line-height: 2;

}


/* =========================================================
   BOOKING CTA
========================================================= */

.booking-cta-section {

    position: relative;

    padding: 140px 0;

    background: url('../images/hero/hero-banner.jpg') center center/cover no-repeat;

}

.booking-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.7);

}

.booking-content {

    position: relative;

    z-index: 2;

}

.booking-content h2 {

    color: var(--white-color);

    font-size: 68px;

    margin-bottom: 25px;

}

.booking-content p {

    color: rgba(255,255,255,0.8);

    max-width: 700px;

    margin: auto;

}

.booking-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {

    background: #1b1210;

    padding-top: 100px;

    color: rgba(255,255,255,0.7);

}

.footer-widget h3,
.footer-widget h4 {

    color: var(--white-color);

    margin-bottom: 25px;

}

.footer-widget p {

    color: rgba(255,255,255,0.7);

}

.footer-widget ul {

    list-style: none;

    padding: 0;

}

.footer-widget ul li {

    margin-bottom: 15px;

}

.footer-widget ul li a {

    color: rgba(255,255,255,0.7);

    transition: 0.3s ease;

}

.footer-widget ul li a:hover {

    color: var(--primary-color);

}

.footer-socials {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}

.footer-socials a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white-color);

    transition: 0.4s ease;

}

.footer-socials a:hover {

    background: var(--primary-color);

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);

    margin-top: 70px;

    padding: 25px 0;

    text-align: center;

}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #25d366;

    color: var(--white-color);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

}