* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Navbar Styles --- */
.overlay {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.portfolio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    display: block;
    filter: grayscale(30%) contrast(1.05);
    transition: filter 0.45s var(--ease), transform 0.55s var(--ease);
}

#lang-switcher .btn {
    font-family: 'DM Sans', sans-serif;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: transparent;
    color: var(--smoke-dim);
    border: 1px solid var(--border-gold);
    border-radius: 0;
    padding: .38rem .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: background .2s, color .2s, border-color .2s;
}
#lang-switcher .btn:hover,
#lang-switcher .btn[aria-expanded="true"] {
    background: rgba(232,160,32,.1);
    color: var(--smoke);
    border-color: var(--gold);
}
#lang-switcher .dropdown-menu {
    background: var(--ink-2);
    border: 1px solid var(--border-gold);
    border-radius: 0;
    min-width: 140px;
    padding: .35rem 0;
    margin-top: .4rem !important;
}
#lang-switcher .dropdown-item {
    font-family: 'DM Sans', sans-serif;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .14em;
    color: var(--smoke-dim);
    padding: .55rem 1rem;
    transition: background .15s, color .15s;
}
#lang-switcher .dropdown-item:hover {
    background: rgba(232,160,32,.1);
    color: var(--smoke);
}
#lang-switcher .dropdown-item.active {
    background: var(--gold);
    color: var(--ink);
}







/* ═══════════════════════════════════════════════════
   LOCO'S INK — landing.css
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Tokens ── */
:root {
    --ink:         #080808;
    --ink-2:       #101010;
    --ink-3:       #1a1a1a;
    --smoke:       #f0ebe2;
    --smoke-dim:   rgba(240, 235, 226, 0.55);
    --gold:        #e8a020;
    --gold-dark:   #b87a10;
    --border:      rgba(240, 235, 226, 0.08);
    --border-gold: rgba(232, 160, 32, 0.28);
    --muted:       #58534c;
    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}



html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    background: var(--ink);
    color: var(--smoke);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
}


/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
    padding: 1.25rem 0;
    transition: padding 0.35s var(--ease),
                background 0.35s var(--ease),
                border-color 0.35s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: var(--smoke) !important;
    transition: color 0.2s;
}

.navbar-brand:hover { color: var(--gold) !important; }

.navbar-nav .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--smoke-dim) !important;
    padding: 0.35rem 0 !important;
    position: relative;
    transition: color 0.2s;
    text-shadow: none !important;
    transform: none !important;
    
}
.navbar-nav{
    gap: 3rem;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.navbar-nav .nav-link:hover {
    color: var(--smoke) !important;
    transform: none !important;
    text-shadow: none !important;
}

.navbar-nav .nav-link:hover::after { width: 100%; }

/* Book Now — nav */
.navbar .btn-warning {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gold) !important;
    color: var(--ink) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.55rem 1.4rem !important;
    transition: background 0.2s, transform 0.15s;
}

.navbar .btn-warning:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
}

.navbar-toggler { border-color: var(--border) !important; }
.navbar-toggler-icon { filter: invert(1); }


/* ══════════════════════════════
   HOME / HERO
══════════════════════════════ */
.home {
    height: 100vh;
    min-height: 580px;
    background: url("../../../img/background.webp") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.overlay {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.60);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.1rem;
    padding: 0 1.5rem;
}

.overlay h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4.5rem, 14vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.05em;
    color: var(--smoke);
    animation: fadeUp 0.85s var(--ease) both;
}

.overlay .lead {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.6rem, 1.4vw, 0.75rem);
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    animation: fadeUp 0.85s 0.15s var(--ease) both;
}

.overlay .lead::before,
.overlay .lead::after {
    content: '—';
    margin: 0 0.75em;
    opacity: 0.45;
}

.overlay .btn-warning,
.overlay a .btn-warning,
.overlay a button {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--gold) !important;
    color: var(--ink) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.9rem 2.4rem !important;
    transition: background 0.2s, transform 0.18s;
    animation: fadeUp 0.85s 0.28s var(--ease) both;
    cursor: pointer;
}

.overlay .btn-warning:hover,
.overlay a button:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section { padding: 6rem 0; }


/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
#about {
    height: 100vh;
    background: url("../../../img/background2.webp") center / cover no-repeat;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 6, 0.80);
    z-index: 0;
}

#about .container { position: relative; z-index: 1; }

#about img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(15%) contrast(1.05);
}

#about h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold) !important;
    margin-bottom: 1.25rem !important;
}

#about p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--smoke-dim);
    margin-bottom: 1rem;
}


/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#services {
    background: var(--ink-2) !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

#services h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold) !important;
}

#services .border {
    background: var(--ink-3);
    border: 1px solid var(--border) !important;
    border-radius: 0 !important;
    color: var(--smoke);
    position: relative;
    overflow: hidden;
    transition: background 0.28s, border-color 0.28s, transform 0.25s var(--ease);
    cursor: default;
}

#services .border::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

#services .border:hover {
    background: #161410;
    border-color: var(--border-gold) !important;
    transform: translateY(-4px);
}

#services .border:hover::after { transform: scaleX(1); }

#services h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.75rem;
    color: var(--smoke);
    margin-bottom: 0.65rem;
}

#services p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--smoke-dim);
    margin: 0;
}


/* ══════════════════════════════
   PORTFOLIO
══════════════════════════════ */
.portfolio { background: var(--ink); }

.portfolio h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.portfolio h5::before,
.portfolio h5::after {
    content: '';
    display: inline-block;
    width: 28px; height: 1px;
    background: var(--gold);
    opacity: 0.45;
}

.portfolio h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold) !important;
}

.portfolio .col-md-4 {
    position: relative;
    overflow: hidden;
}

.portfolio .col-md-4:hover img {
    filter: grayscale(0%) contrast(1.08);
    transform: scale(1.05);
    opacity: 1; /* cancel the 0.8 dimming */
}

.portfolio .col-md-4::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.72) 0%, transparent 52%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.portfolio .col-md-4:hover::after { opacity: 1; }


/*══════════════════════════════
   CONTACTS
══════════════════════════════ */
#contacts {
    background: var(--ink-2) !important;
    border-top: 1px solid var(--border);
}

#contacts h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold) !important;
}

#contacts > .container > p:first-of-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--smoke-dim);
    margin-bottom: 2rem;
}

#contacts h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--smoke);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
}

#contacts h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

#contacts h5 + p {
    font-size: 0.85rem;
    color: var(--smoke-dim);
    margin-bottom: 1.4rem;
}

/* unified ghost buttons */
#contacts .btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent !important;
    color: var(--smoke) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 0 !important;
    padding: 0.75rem 1.6rem !important;
    margin: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
    cursor: pointer;
}

#contacts .btn:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--ink) !important;
    transform: translateY(-2px);
}

#contacts .btn:hover svg { fill: var(--ink); }
 

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    background: #030303 !important;
    border-top: 1px solid var(--border);
    padding: 2rem 0 !important;
}

footer small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ══════════════════════════════
   CONTAINER
══════════════════════════════ */
.container {
    max-width: 1140px;   /* fix: remove the broken 60% */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
    .section { padding: 4.5rem 0; }
    #about img { max-height: 420px; }
}

@media (max-width: 767px) {
    .section { padding: 3.5rem 0; }
    .overlay h1 { font-size: clamp(3.5rem, 18vw, 6rem); }
    .overlay .lead::before,
    .overlay .lead::after { display: none; }
    .portfolio img { height: 220px; }
    #contacts h3 { flex-direction: column; }
}

/* WhatsApp FAB */
.btn.position-fixed {
    background: #25d366 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    transition: transform .2s, box-shadow .2s;
    z-index: 999;
}
.btn.position-fixed:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.5); }