/* =============================
   CSS RESET & BASE 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #2C2F38;
  background: #F7F7F7;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2C2F38;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #C8A683;
  outline: none;
}

/* =============================
   BRAND TYPOGRAPHY
============================= */
@import url('https://fonts.googleapis.com/css?family=Quicksand:500,700|Montserrat:400,500,600,700&display=swap');

h1, h2, h3 {
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2C2F38;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1.1;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2C2F38;
}

p, ul, ol, li, th, td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: #333;
}

@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}

/* =============================
   CONTAINER & SECTION SPACING
============================= */
.container {
  width: 100%;
  max-width: 1110px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(45, 41, 30, 0.065);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .section {
    margin-bottom: 36px;
    padding: 30px 10px;
    border-radius: 16px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =============================
   HEADER & NAVIGATION (Desktop)
============================= */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(44,47,56,0.06);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
header a img {
  height: 46px;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 7px;
  font-size: 1rem;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
  position: relative;
}
header nav a:not(.btn-primary):after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #C8A683;
  transition: width .16s;
  margin-top: 4px;
}
header nav a:not(.btn-primary):hover:after {
  width: 60%;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  background: #C8A683;
  color: #2C2F38;
  box-shadow: 0 2px 11px 0 rgba(200,166,131,0.14);
  cursor: pointer;
  transition: background 0.17s, color 0.11s, box-shadow 0.12s, transform 0.13s;
  text-decoration: none;
  outline: none;
  letter-spacing: 0.6px;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2C2F38;
  color: #ebe2d2;
  box-shadow: 0 8px 32px 0 rgba(200,166,131,0.23), 0 2px 4px rgba(44,47,56,0.07);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  border: 2px solid #C8A683;
  background: #fff;
  color: #C8A683;
  font-weight: 700;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #C8A683;
  color: #2C2F38;
  box-shadow: 0 2px 11px rgba(200,166,131,0.09);
  border-color: #C8A683;
  transform: translateY(-2px) scale(1.03);
}


/* =============================
   MOBILE MENU BUTTON
============================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #C8A683;
  cursor: pointer;
  z-index: 70;
  padding: 4px 12px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(200,166,131,0.16);
  color: #2C2F38;
}

/* =============================
   MOBILE MENU OVERLAY
============================= */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(44,47,56,0.95);
  color: #fff;
  transition: transform 0.33s cubic-bezier(.74,0,.25,1), opacity 0.25s;
  transform: translateX(-100vw);
  opacity: 0;
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #C8A683;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.16s, color 0.13s;
  border-radius: 8px;
  padding: 8px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(200,166,131,0.13);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 88px;
  gap: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 13px 0;
  min-width: 180px;
  letter-spacing: 0.7px;
  transition: background 0.16s, color 0.1s, letter-spacing 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C8A683;
  color: #2C2F38;
  letter-spacing: 1.5px;
}
.mobile-nav a.btn-primary {
  background: #C8A683;
  color: #2C2F38;
  font-weight: 700;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =============================
   HERO SECTION & CALLS TO ACTION
============================= */
.hero {
  background: #2C2F38;
  color: #fff;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 3px 28px 0 rgba(44,47,56,0.13);
  padding: 52px 0 45px 0;
  margin-bottom: 63px;
}
.hero h1 {
  color: #C8A683;
  font-size: 2.7rem;
  margin-bottom: 8px;
  font-family: 'Quicksand', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(44,47,56,0.07);
}
.hero h2 {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: .2px;
}
.hero .btn-primary {
  margin-top: 8px;
  background: #C8A683;
  color: #2C2F38;
}
@media (max-width: 768px) {
  .hero { padding: 34px 0 32px 0; margin-bottom: 36px; }
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.04rem; }
}

/* =============================
   SPACING & FLEX LAYOUTS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(200,166,131,0.09);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform .15s;
}
.card:hover {
  box-shadow: 0 10px 36px 0 rgba(200,166,131,0.21), 0 3px 8px rgba(44,47,56,0.08);
  transform: translateY(-4px) scale(1.012);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #F0E6DB;
  box-shadow: 0 3px 16px 0 rgba(200,166,131,0.09);
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.17s, border 0.18s, transform 0.14s;
  color: #222;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(200,166,131,0.14);
  border: 1.5px solid #C8A683;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #2C2F38;
  font-style: italic;
  font-size: 1.13rem;
}
.testimonial-card span {
  display: block;
  color: #957856;
  font-weight: 500;
  font-size: 0.98rem;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.features-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(200,166,131,0.10);
  padding: 22px 18px;
  min-width: 210px;
  flex: 1 1 250px;
  text-align: center;
  transition: box-shadow 0.14s, transform 0.14s;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 7px 23px rgba(200,166,131,0.17);
  transform: translateY(-4px) scale(1.025);
}
.features-grid img {
  width: 54px;
  margin-bottom: 12px;
}
.features-grid h3 {
  color: #C8A683;
}

@media (max-width: 900px) {
  .card-container, .testimonial-list, .features-grid {
    gap: 16px;
  }
  .content-grid, .text-image-section {
    gap: 12px;
  }
  .card { padding: 14px; }
  .features-grid > div {
    padding: 14px 10px;
  }
  .testimonial-card {
    min-width: 180px;
    flex-basis: 100%;
    padding: 14px 11px;
  }
}
/* Single column on mobile for all major flex layouts */
@media (max-width: 768px) {
  .content-grid, .card-container, .testimonial-list, .features-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* =============================
   TABLES & PRICING
============================= */
table {
  width: 100%;
  margin: 24px 0 24px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 22px 0 rgba(200,166,131,0.07);
  overflow: hidden;
}
thead {
  background: #C8A683;
}
th, td {
  text-align: left;
  padding: 16px 16px;
  font-size: 1rem;
  border-bottom: 1px solid #ede4da;
}
th {
  color: #2C2F38;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: #C8A683;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover td {
  background: #F7F0E9;
  transition: background 0.13s;
}

@media (max-width: 700px) {
table, thead, tbody, th, td, tr {display: block;}
thead tr {
  display: none;
}
td {
  padding: 10px 10px;
  border-bottom: none;
  position: relative;
}
td:before {
  content: attr(data-label);
  font-size: .92rem;
  color: #C8A683;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
  display: block;
}
}

/* =============================
   FOOTER
============================= */
footer {
  background: #fff;
  border-top: 2px solid #EADFCA;
  font-size: 1em;
  color: #2C2F38;
  margin-top: 72px;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #C8A683;
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.13s;
}
footer nav a:hover {
  color: #2C2F38;
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  footer nav {
    justify-content: center;
  }
}

/* =============================
   LISTS & TEXT SECTIONS
============================= */
ul, ol {
  margin-left: 22px;
  margin-bottom: 14px;
  padding-left: 0;
  list-style: disc inside;
}
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 0;
}
strong {
  color: #C8A683;
  font-weight: 600;
}
.text-section {
  margin-bottom: 18px;
}
.text-section a {
  color: #C8A683;
}
.text-section a:hover {
  color: #2C2F38;
}

/* =============================
   FORMS (Contact/Booking)
============================= */
input, select, textarea {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border: 1px solid #C8A683;
  border-radius: 8px;
  padding: 12px 10px;
  margin-bottom: 18px;
  background: #fff;
  color: #2C2F38;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2C2F38;
  outline: none;
}
label {
  font-weight: 600;
  color: #2C2F38;
}

/* =============================
   MICRO-INTERACTIONS
============================= */
.card, .testimonial-card, .features-grid > div {
  transition: box-shadow 0.17s, transform .13s, border 0.12s;
}
a, button, .btn-primary, .btn-secondary {
  transition: background 0.12s, color 0.13s, box-shadow 0.11s, transform 0.14s, border 0.1s;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) scale(1);
  background: #fff;
  color: #2C2F38;
  box-shadow: 0 8px 36px 0 rgba(44,47,56,0.11);
  border: 1.5px solid #C8A683;
  border-radius: 20px;
  padding: 18px 36px;
  z-index: 1200;
  min-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookie-slidein 0.55s cubic-bezier(.77,0,.23,1);
}
@keyframes cookie-slidein {
  from { opacity: 0; transform: translateX(-50%) translateY(40px) scale(0.94); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}
.cookie-consent-banner p {
  color: #222;
  font-size: 1.03rem;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  border-radius: 17px;
  padding: 10px 23px;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 2px solid #C8A683;
  background: #fff;
  color: #C8A683;
  cursor: pointer;
  font-size: 1em;
}
.cookie-buttons .accept-all {
  background: #C8A683;
  color: #2C2F38;
  border: 2px solid #C8A683;
}
.cookie-buttons .accept-all:hover,
.cookie-buttons .accept-all:focus {
  background: #2C2F38;
  color: #F7F7F7;
  border-color: #2C2F38;
}
.cookie-buttons .reject-all {
  background: #fff;
  color: #C8A683;
}
.cookie-buttons .reject-all:hover,
.cookie-buttons .reject-all:focus {
  background: #F7F7F7;
  color: #2C2F38;
  border-color: #C8A683;
}
.cookie-buttons .cookie-settings {
  color: #fff;
  background: #2C2F38;
  border: 2px solid #C8A683;
}
.cookie-buttons .cookie-settings:hover,
.cookie-buttons .cookie-settings:focus {
  background: #C8A683;
  color: #2C2F38;
  border-color: #C8A683;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    padding: 14px 10px;
    font-size: 0.97em;
    min-width: 220px;
    border-radius: 13px;
    gap: 13px;
    left: 12px;
    right: 12px;
    width: unset;
    transform: none;
  }
  .cookie-buttons button {
    padding: 8px 11px;
    font-size: 0.92em;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,47,56,0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in .36s cubic-bezier(.7,0,.26,1);
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 28px;
  border-radius: 19px;
  box-shadow: 0 13px 42px 0 rgba(44,47,56,0.24);
  min-width: 270px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #C8A683;
  margin-bottom: 8px;
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  color: #C8A683;
  font-size: 2.2em;
  cursor: pointer;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.053em;
}
.cookie-option input[type=checkbox] {
  accent-color: #C8A683;
  width: 20px;
  height: 20px;
}
.cookie-option label {
  color: #2C2F38;
}
.cookie-option .essential {
  color: #2C2F38;
  font-weight: 600;
  opacity: .56;
}
@media (max-width: 500px) {
  .cookie-modal-content { padding: 16px 8px; gap: 11px; min-width: 100px; }
}

/* =============================
   SPECIAL DETAIL DECORATION (Optional)
============================= */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 37px;
  height: 37px;
  background: url('../assets/decor/gold-ring.svg') no-repeat center center/contain;
  opacity: 0.16;
  z-index: 0;
}
@media (max-width: 900px) {
  .section:before { display: none; }
}

/* =============================
   LUXURY DETAILS & HIERARCHY
============================= */
.btn-primary, .btn-secondary, .cookie-buttons button, .mobile-menu-toggle, .mobile-menu-close {
  box-shadow: 0 2px 10px 0 rgba(200,166,131,0.13);
  border-radius: 48px;
}
.card, .testimonial-card, .features-grid > div {
  border-radius: 14px;
  border: 1px solid #F1E3CC;
}

/* Small gold divider for luxury accent */
hr {
  border: 0;
  border-top: 2.5px solid #C8A683;
  margin: 24px 0;
  border-radius: 2px;
}

/* =============================
   GUI ENHANCEMENTS & UTILS
============================= */
.shadow-light {
  box-shadow: 0 2px 12px 0 rgba(200,166,131,0.10);
}
.shadow-gold {
  box-shadow: 0 4px 20px 0 rgba(200,166,131,0.16);
}
.rounded-large { border-radius: 22px; }
.rounded-medium { border-radius: 14px; }
.rounded-small { border-radius: 8px; }
.text-gold { color: #C8A683; }
.text-dark { color: #2C2F38; }
.bg-gold { background: #C8A683; color: #2C2F38; }
.bg-dark { background: #2C2F38; color: #fff; }
.bg-accent { background: #F7F7F7; color: #2C2F38; }

/* Hide visually, show via screen reader */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/* =============================
   SELECTION COLORS
============================= */
::selection {
  background: #C8A683;
  color: #fff;
}

/* =============================
   CUSTOM SCROLLBAR STYLING
============================= */
::-webkit-scrollbar {
  width: 12px;
  background: #EADFCA;
}
::-webkit-scrollbar-thumb {
  background: #C8A683;
  border-radius: 12px;
}

/* =============================
   PRINT MEDIA
============================= */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  section, .section { box-shadow: none; border: none; padding: 0; }
}
