/* DLON HEADER / GLOBAL BASE */

:root {
    --black: #090909;
    --black-soft: #111111;
    --gold: #c8a45d;
    --gold-light: #c89f4f;
    --white: #f5f2ea;
    --muted: rgba(245,242,234,.62);
    --display: "Playfair Display", serif;
    --body: "DM Sans", sans-serif;
}

/**
* @license
*
* Font Family: Bonny
* Designed by: Barbara Bigosinska
* URL: https://www.fontshare.com/fonts/bonny
* © 2025 Indian Type Foundry
*
* Bonny Thin 
* Bonny Light 
* Bonny Regular 
* Bonny Medium 
* Bonny Bold 
* Bonny Variable (Variable font)

*
*/
@font-face {
  font-family: 'Bonny-Thin';
  src: url('../fonts/Bonny-Thin.woff2') format('woff2'),
       url('../fonts/Bonny-Thin.woff') format('woff'),
       url('../fonts/Bonny-Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Bonny-Light';
  src: url('../fonts/Bonny-Light.woff2') format('woff2'),
       url('../fonts/Bonny-Light.woff') format('woff'),
       url('../fonts/Bonny-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Bonny-Regular';
  src: url('../fonts/Bonny-Regular.woff2') format('woff2'),
       url('../fonts/Bonny-Regular.woff') format('woff'),
       url('../fonts/Bonny-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Bonny-Medium';
  src: url('../fonts/Bonny-Medium.woff2') format('woff2'),
       url('../fonts/Bonny-Medium.woff') format('woff'),
       url('../fonts/Bonny-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Bonny-Bold';
  src: url('../fonts/Bonny-Bold.woff2') format('woff2'),
       url('../fonts/Bonny-Bold.woff') format('woff'),
       url('../fonts/Bonny-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 100.0 to 700.0
*/
@font-face {
  font-family: 'Bonny-Variable';
  src: url('../fonts/Bonny-Variable.woff2') format('woff2'),
       url('../fonts/Bonny-Variable.woff') format('woff'),
       url('../fonts/Bonny-Variable.ttf') format('truetype');
  font-weight: 100 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
    font-family: 'Bela Yasmine';
    src: url('../fonts/Bela-Yasmine.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
}
/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    font-weight: 400;
}

/* All headings use same display font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--display);
    font-weight: 400;
}

/* Normal website paragraphs */
p {
   font-family: var(--body);
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
}

/* Gold italic heading text */
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
    font-family: var(--display);
    font-weight: 400;
    color: var(--gold-light);
}
body.menu-open { overflow: hidden; }

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


/* HEADER */

.dlon-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background .45s ease, backdrop-filter .45s ease, border-color .45s ease;
}

.dlon-header.is-scrolled {
    background: rgba(9,9,9,.88);
    backdrop-filter: blur(18px);
    border-color: rgba(255,255,255,.08);
}

.dlon-header-inner {
    width: min(1500px, calc(100% - 80px));
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dlon-logo-mark,
.dlon-mobile-brand,
.dlon-footer-logo {
    font-family: var(--display);
    color: var(--gold-light);
    letter-spacing: .08em;
}
.brand-logo  {
    width: 20% !important;
}
.brand-logo-home {
    
    width:200px;
}
.dlon-logo-mark { font-size: 32px; }

.dlon-desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.dlon-desktop-nav a {
    position: relative;
    color: rgba(245,242,234,.72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    transition: color .3s ease;
}

.dlon-desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s ease;
}

.dlon-desktop-nav a:hover,
.dlon-desktop-nav a.is-active {
    color: var(--white);
}

.dlon-desktop-nav a:hover::after,
.dlon-desktop-nav a.is-active::after {
    width: 100%;
}

.dlon-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dlon-reserve-btn,
.dlon-mobile-reserve {
    border: 1px solid var(--gold);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 10px;
    transition: background .3s ease, color .3s ease;
}

.dlon-reserve-btn {
    padding: 12px 22px;
}

.dlon-reserve-btn:hover,
.dlon-mobile-reserve:hover {
    background: var(--gold);
    color: var(--black);
}
@media (max-width: 767px) {
    .brand-logo {
        width: 60% !important;
    }
}

/* MOBILE BUTTON */

.dlon-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dlon-menu-button span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px auto;
    background: var(--white);
}


/* MOBILE MENU */

.dlon-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease, visibility .5s ease;
}

.dlon-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.dlon-mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.dlon-mobile-menu-inner {
    position: relative;
    width: min(1500px, calc(100% - 48px));
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.dlon-mobile-top {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dlon-mobile-brand { font-size: 30px; }

.dlon-menu-close {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dlon-menu-close span {
    display: block;
    width: 25px;
    height: 1px;
    margin: -1px auto;
    background: var(--white);
}

.dlon-menu-close span:first-child { transform: rotate(45deg); }
.dlon-menu-close span:last-child { transform: rotate(-45deg); }

.dlon-mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dlon-mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 12px 0;
    font-family: var(--display);
    font-size: clamp(38px, 8vw, 80px);
    color: var(--white);
    transition: color .3s ease;
}

.dlon-mobile-nav a span {
    width: 28px;
    font-family: var(--body);
    font-size: 9px;
    color: var(--gold);
}

.dlon-mobile-nav a:hover,
.dlon-mobile-nav a.is-active {
    color: var(--gold-light);
}

.dlon-mobile-bottom { padding: 30px 0 40px; }

.dlon-mobile-reserve {
   display: inline-flex;
        padding: 9px 14px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
}

.dlon-mobile-social {
    display: flex;
    gap: 22px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
}


/* FOOTER */

.dlon-footer {
    padding: 90px 0 30px;
    background: var(--black-soft);
    border-top: 1px solid rgba(255,255,255,.07);
}

.dlon-footer-inner {
    width: min(1500px, calc(100% - 80px));
    margin: auto;
}

.dlon-footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3,1fr);
    gap: 50px;
    padding-bottom: 80px;
}

.dlon-footer-brand p {
    color: var(--muted);
    font-family: var(--display);
    font-style: italic;
}

.dlon-footer-logo { font-size: 64px; }

.dlon-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dlon-footer-column h4 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .25em;
}

.dlon-footer-column a {
    color: var(--muted);
    font-size: 13px;
    transition: color .3s ease;
}

.dlon-footer-column a:hover { color: var(--white); }

.dlon-footer-main {
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.07);
}

.dlon-footer-title {
    font-family: var(--display);
    font-size: clamp(70px,12vw,170px);
    line-height: .85;
    color: var(--gold);
}

.dlon-footer-location {
    color: var(--muted);
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
}

.dlon-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(245,242,234,.38);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .2em;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .dlon-header-inner,
    .dlon-footer-inner {
        width: calc(100% - 40px);
    }

    .dlon-desktop-nav,
    .dlon-reserve-btn {
        display: none;
    }

    .dlon-menu-button {
        display: block;
    }

    .dlon-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .dlon-header-inner,
    .dlon-mobile-top {
        height: 76px;
    }

    .dlon-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .dlon-footer-bottom {
        flex-direction: column;
        gap: 12px;
        line-height: 1.6;
    }
}
.pt-4{
    padding-top:20px;
}
.pb-4
{
    padding-bottom:20px;
}