/* Link External Font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Jost Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


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

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    font-family: "Jost", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}



img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ── CSS Variables ───────────────────────────────────────────────── */

:root {

    /* ==========================
       Brand Colors
    ========================== */

    --brand: #C9A84C;
    --brand-hover: #A8893A;
    --brand-light: #D8BE72;
    --brand-soft: #E9D7A5;
    --brand-dark: #8B6B1E;

    /* ==========================
       Text Colors
    ========================== */

    --text-primary: #1A1A1A;
    --text-secondary: #5F5F5F;
    --text-muted: #8A8A8A;
    --text-white: #FFFFFF;

    /* ==========================
       Background Colors
    ========================== */

    --bg-body: #FAF8F4;
    --bg-section: #F3EFE8;
    --bg-card: #FFFFFF;
    --bg-dark: #121212;
    --bg-footer: #1A1A1A;
    --bg-brand: #F7F2E5;

    /* ==========================
       Border Colors
    ========================== */

    --border: rgba(201, 168, 76, 0.25);
    --border-light: #E8E2D7;
    --border-dark: #D5D0C8;

    /* ==========================
       Status Colors
    ========================== */

    --success: #2E7D32;
    --warning: #E6A700;
    --danger: #C62828;
    --info: #1565C0;

    /* ==========================
       Shadow
    ========================== */

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);
    --shadow: 0 8px 25px rgba(0, 0, 0, .08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, .12);

    /* ===========================
       Fonts
    =============================== */

    --font-ui: "Jost", sans-serif;
    --font-brand: 'Playfair Display', serif;

    /* ===========================
       Border Radius
    =============================== */

    --radius-xm: 4px;
    --radius-sm: 6px;
    --radius: 10px;

    /* ==========================
       Overlay
    ========================== */

    --overlay-light: rgba(255, 255, 255, .75);
    --overlay-dark: rgba(0, 0, 0, .55);

    --transition: 0.4s ease;

}

/* ===============================
 button style
================================= */
.btn-outline {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    padding: 14px 40px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background: var(--brand);
    color: var(--text-white);
}

.btn-primary {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--brand);
    color: var(--text-white);
    border: 2px solid var(--brand);
    padding: 14px 30px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border-radius: var(--radius-sm);
}

@media only screen and (min-width: 768px) {
    .btn-primary {
        padding: 14px 25px;
        font-size: 15px;
    }
}

.btn-primary:hover {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
}


/* ========================
 Section Style
 ========================== */
section {
    margin-top: 30px;
}

.gt-section-title__wrap {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 6px;
    position: relative;
}

@media only screen and (min-width: 576px) {
    section {
        margin-top: 40px;
    }

    .gt-section-title__wrap {
        margin-bottom: 30px;
    }
}

.gt-section-title__wrap::before {
    position: absolute;
    width: 10%;
    height: 2px;
    background: var(--brand);
    content: "";
    left: 0;
    bottom: -1px;
}

.section_title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
}

.section_btn {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: 0.3s;
    text-decoration: underline;
}

.section_btn:hover {
    color: var(--brand-hover);
}

.slider-arrow_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrow_wrap svg {
    width: 20px;
    height: 20px;
}

@media only screen and (min-width:768px) {
    .section_title {
        font-size: 24px;
    }
}

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--bg-brand);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.breadcrumb-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

@media only screen and (min-width: 768px) {
    .breadcrumb-title {
        font-size: 28px;
    }
}

.breadcrumb {
    font-size: 16px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--brand);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--brand-hover);
}

.breadcrumb-sep {
    font-size: 16px;
    color: var(--border-dark);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===================
 input style
===================== */
input[text] {
    background-clip: padding-box;
    border: 1px solid var(--brand);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-ui);
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}