/* ---------------------- CSS RESET & NORMALIZATION ---------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #232D38;
  background: #F4F4F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  color: #B99E65;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #8f7a49;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* -------------------- BASE TYPOGRAPHY & BRAND FONTS --------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Times New Roman', serif;
  color: #232D38;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.015em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p, li, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #232D38;
}
strong {
  font-weight: 600;
}

/* --------------------- BUTTONS: LUXURY PREMIUM STYLE --------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B99E65;
  color: #232D38;
  font-family: 'Merriweather', serif;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 32px;
  border: 2px solid #B99E65;
  box-shadow: 0 2px 24px 0 rgba(185, 158, 101, 0.10);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.28s;
  text-transform: uppercase;
  text-shadow: 0px 1px 0 #fff6, 0px 0.5px 2px #b99e6538;
}
.btn-primary:hover, .btn-primary:focus {
  background: #232D38;
  color: #B99E65;
  border-color: #B99E65;
  box-shadow: 0 4px 32px 0 rgba(185, 158, 101, 0.22), 0 0 0 3px #B99E6533;
  outline: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #B99E65;
  border: 2px solid #B99E65;
  padding: 12px 32px;
  border-radius: 28px;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 700;
  transition: all 0.18s;
  box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B99E65;
  color: #232D38;
}

/* ---------------------- CONTAINER, SECTION LAYOUT ---------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  /* gap is handled by .section */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(35, 45, 56, 0.073);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------------------------- HEADER STYLES ----------------------------- */
header {
  width: 100%;
  background: #232D38;
  box-shadow: 0 2px 16px rgba(35, 45, 56, 0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 88px;
  position: relative;
  z-index: 100;
}
header .logo {
  display: flex;
  align-items: center;
  height: 72px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
header nav a {
  color: #F4F4F4;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
  transition: color 0.18s;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #B99E65;
  transition: width 0.23s;
  border-radius: 1.5px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
header nav a:hover, header nav a:focus {
  color: #B99E65;
  outline: none;
}

header .btn-primary {
  margin-left: 34px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
}

/* -------------------- MOBILE BURGER + MOBILE MENU ------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 2002;
  background: #fff;
  color: #232D38;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid #B99E65;
  box-shadow: 0 2px 12px rgba(185,158,101,0.06);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B99E65;
}
.mobile-menu-toggle:hover {
  background: #B99E65;
  color: #fff;
  border-color: #8f7a49;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 95vw;
  height: 100vh;
  background: #232D38;
  box-shadow: 8px 0 32px rgba(35,45,56,0.11);
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.7,.3,.3,1.12);
  z-index: 2001;
  padding: 28px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #B99E65;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  margin-left: 20px;
  border-radius: 22px;
  align-self: flex-end;
  border: 2px solid #B99E65;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 1px 6px rgba(185,158,101,0.10);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #B99E65;
  color: #232D38;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 24px 28px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.24rem;
  color: #F4F4F4;
  padding: 12px 2px;
  border-bottom: 1px solid #2d3948;
  transition: color 0.16s, background 0.16s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B99E65;
  background: #232D38;
  outline: none;
  border-bottom: 1.5px solid #B99E65;
}
/* Overlay for darkening background (optional for menu) */
body.mobile-menu-open {
  overflow-y: hidden;
}

/* -------------------- HERO & FEATURE SECTIONS --------------------- */
/* For all .section, already set spacing as required */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 14px rgba(35,45,56,0.099);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #f6f4ef4e;
  transition: box-shadow 0.21s, border 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 36px rgba(185,158,101,0.09), 0 1.5px 18px rgba(35,45,56,0.13);
  border-color: #B99E65;
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* -------------------------------- TESTIMONIALS ----------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  color: #232D38;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 5px solid #B99E65;
  box-shadow: 0 3px 18px rgba(35,45,56,0.09);
  transition: box-shadow 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px rgba(185,158,101,0.16);
  border-color: #8f7a49;
}
.testimonial-card p {
  font-size: 1.14rem;
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: #232D38;
  font-weight: 500;
}
.testimonial-card span {
  margin-left: auto;
  font-size: 0.97rem;
  font-style: normal;
  color: #6b6e76;
  font-weight: 500;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* -------------------------- FOOTER ----------------------------- */
footer {
  background: #232D38;
  color: #B99E65;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  gap: 24px;
  width: 100%;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #B99E65;
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.16s;
  padding: 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-brand span {
  color: #B99E65;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 500;
}

/* ------------------------- CONTACT & SOCIAL LINKS ---------------- */
.opening-hours {
  margin-top: 14px;
  color: #232D38;
  font-size: 1rem;
  background: #fcfaf7;
  border-radius: 10px;
  padding: 10px 18px;
  display: inline-block;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 1px 7px rgba(35,45,56,0.09);
  transition: box-shadow 0.13s, background 0.13s;
}
.social-links a:hover, .social-links a:focus {
  background: #B99E65;
  box-shadow: 0 8px 24px rgba(185,158,101, 0.22);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* ------------------------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #232D38;
  color: #fff;
  border-top: 4px solid #B99E65;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 16px 16px;
  box-shadow: 0 -6px 44px rgba(35,45,56,0.13);
  transition: transform 0.38s cubic-bezier(.76,0,.24,1); 
  transform: translateY(0);
}
.cookie-banner.closed {
  transform: translateY(150%);
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button,
.cookie-banner .btn-secondary {
  margin: 0 0 0 0;
  min-width: 128px;
}
.cookie-banner .btn-secondary {
  background: none;
  border: 2px solid #B99E65;
  color: #B99E65;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .btn-secondary:hover {
  background: #B99E65;
  color: #232D38;
}
.cookie-banner .btn-primary {
  padding: 10px 22px;
}

.cookie-banner .btn-settings {
  background: none;
  color: #B99E65;
  border: none;
  transition: color 0.18s;
  font-size: 1rem;
  text-decoration: underline;
  margin-left: 8px;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  color: #fff;
  outline: none;
}

/* Cookie modal (preferences) */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 4100;
  width: 90vw;
  max-width: 410px;
  background: #fff;
  color: #232D38;
  border-radius: 13px;
  box-shadow: 0 8px 44px rgba(35,45,56,0.14);
  transform: translate(-50%, -58%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  padding: 32px 24px 24px 24px;
  transition: opacity 0.28s, transform 0.32s;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #232D38;
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #B99E65;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-modal .category .info {
  font-size: 0.98rem;
  color: #55585f;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal .btn-primary , .cookie-modal .btn-secondary {
  min-width: 120px;
  padding: 10px 0;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 16px;
  color: #232D38;
  background: none;
  border: none;
  font-size: 1.3rem;
}
.cookie-modal .close-modal:hover {
  color: #B99E65;
}
.cookie-modal .cookie-required {
  color: #777;
  font-style: italic;
  font-size: 0.97rem;
}

/* Cookie modal overlay background */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 4099;
  background: rgba(35,45,56,0.32);
  backdrop-filter: blur(2px);
  display: none;
  transition: opacity 0.22s;
}
.cookie-modal.open ~ .cookie-modal-overlay {
  display: block;
}


/* ---------------------- FORMS (where used) ------------------------ */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border: 1.5px solid #B99E65;
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 1.05rem;
  color: #232D38;
  background: #fff;
  box-shadow: 0 2px 16px rgba(185,158,101,0.06);
  margin-bottom: 16px;
  transition: border 0.13s;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: #B99E65;
  outline: none;
}

/* --------------------- GENERAL ELEMENTS & UTILITIES ----------------- */
ul, ol {
  padding-left: 21px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1.07rem;
  padding-left: 2px;
}
ul li strong, ol li strong {
  color: #B99E65;
  font-weight: 700;
}
ul li img, ol li img {
  margin-right: 8px;
  vertical-align: middle;
}

hr {
  border: none;
  border-top: 2px solid #EEE5CC;
  margin: 36px 0;
}

.section:last-child {
  margin-bottom: 0;
}

/* Table/Lists as info blocks */
.opening-hours, .info-block {
  background: #fff7ef;
  color: #232D38;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 12px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}

/* ------------- LUXURY DECORATIVE GOLDED DETAIL (CLASS) ------------- */
.golden {
  color: #B99E65;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ------------- MISC. TRANSITIONS AND HOVER EFFECTS ----------------- */
.card, .testimonial-card, .btn-primary, .btn-secondary {
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, color 0.18s;
}

/* Elevation/shadow impacts using box-shadow for luxury look */
.card, .section, .testimonial-card {
  box-shadow: 0 4px 18px rgba(185, 158, 101, 0.07), 0 1.5px 8px rgba(35,45,56,0.09);
}
.card:hover {
  box-shadow: 0 12px 44px rgba(185,158,101,0.15), 0 5px 18px rgba(35,45,56,0.14);
  border-color: #B99E65;
  z-index: 2;
}

/* ------ LAYOUT FLEX RESPONSIVE DESIGN: MOBILE-FIRST ------ */
@media (max-width: 1150px) {
  .container {
    max-width: 96vw;
  }
  header {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  header nav {
    gap: 18px;
  }
}
@media (max-width: 860px) {
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .feature-list,
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .section {
    margin-bottom: 34px;
    padding: 28px 6vw;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  header {
    height: 62px;
    padding: 0 7vw;
  }
  .footer-brand {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 9px;
  }
  .mobile-menu {
    width: 96vw;
    max-width: 100vw;
    padding-right: 0;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 8px;
    font-size: 1.02rem;
  }
  .section {
    padding: 16px 2vw;
    font-size: 0.98rem;
  }
  body {
    font-size: 0.98rem;
  }
}

/* --------------- UTILITY CLASSES --------------- */
.text-center {
  text-align: center !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.pt-16 { padding-top: 16px; }

/* --------------- END OF CSS --------------- */
