/* ═══════════════════════════════════════════════════
   Base Style Overrides
   Overrides minified assets/css/style.css defaults
   ═══════════════════════════════════════════════════ */

html, body {
    margin: 0;
    padding: 0;
    background: #faf8f4;
    font-family: 'Inter', 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #1a1a1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6 {
    color: #2d0a0a;
    margin: 0;
    font-family: 'Playfair Display', 'Open Sans', serif;
    font-weight: 700;
}

p {
    color: #5a3a3a;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', 'Open Sans', sans-serif;
}

a {
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #d4af37;
}
a:hover {
    text-decoration: none;
    color: #b8962e;
}

img { max-width: 100%; }

.wrapper { width: 100%; position: relative; }
.container { max-width: 100%; }
.container.top-section { padding: 0; }

/* ── Navigation ── */
.top-link { text-align: right; }

.top-3box-holder .col-md-3 {
    position: absolute;
    right: 0;
    max-width: 27%;
}
.top-3box-holder .col-md-2 {
    max-width: 22% !important;
}

.top-link button {
    margin: 8px 4px;
    border-radius: 8px;
    text-transform: uppercase;
    background: transparent;
    color: #d4af37;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    transition: all 0.3s ease;
}
.top-link button:hover {
    background: #d4af37 !important;
    color: #1a0505 !important;
    transform: translateY(-2px);
}
.top-link .blue {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: #d4af37;
}
.top-link .blue:hover {
    background: #d4af37 !important;
    color: #1a0505 !important;
}

/* ── Marquee strip ── */
.orenge-strip {
    background: linear-gradient(135deg, #2d0a0a, #3d0e0e);
    color: #d4af37;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.orenge-strip ul { text-align: center; margin-bottom: 0; }
.orenge-strip li { display: inline; margin: 0 15px; }

.top-note {
    color: #2d0a0a;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    padding: 12px 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #f5f0e8, #faf8f4, #f5f0e8);
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* ── Navigation menu ── */
header nav.menu {
    width: 100%;
    float: left;
    text-align: center;
}
header nav.menu ul { padding: 0; margin: 0; }
nav.menu ul:after { content: ''; clear: both; display: table; }
nav.menu ul li {
    list-style: none;
    padding: 12px 20px;
    display: inline-block;
}
nav.menu ul li:last-child { padding-right: 0; }
nav.menu ul li:first-child { padding-left: 0; }
nav.menu ul li a {
    padding: 0;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}
nav.menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
    border-radius: 1px;
}
nav.menu ul li a:hover::after {
    width: 100%;
}
nav.menu ul li a:hover {
    color: #f5d060;
    text-decoration: none;
}

.bgOverlay { display: none; }

/* ── Banner/slider base ── */
.home-slider { width: 100%; max-width: 100%; margin: 0 auto; }
.home-slider h1 { color: #f5d060; font-size: 48px; font-weight: 700; margin-bottom: 8px; }
.home-slider h3 { color: #fff; font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.home-slider h5 { color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 500; }
.home-slider p { color: rgba(255,255,255,0.9); font-size: 16px; font-weight: 400; }

.content-full { position: relative; width: 100%; float: left; }
.content-full img { margin: 0 !important; width: 100%; min-height: 300px; }

/* ── Form controls ── */
.form-control:focus {
    color: #2d0a0a;
    background-color: transparent;
    border-color: #d4af37;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* ── Selection/highlight ── */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #1a0505;
}
::-moz-selection {
    background: rgba(212, 175, 55, 0.3);
    color: #1a0505;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #faf8f4; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #b8962e);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #c9a84c; }
