/* ======================== CSS RESET & BASE ======================== */
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;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  background-color: #F8F5EF;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #40352C;
  background-color: #F8F5EF;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B08336;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #83581d;
}
ul, ol {
  margin-left: 1.5em;
}
strong { font-weight: bold; }
em { font-style: italic; }
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
::-webkit-input-placeholder { color: #a3988b; }
::-moz-placeholder { color: #a3988b; }
:-ms-input-placeholder { color: #a3988b; }
::placeholder { color: #a3988b; }


/* ===================== VINTAGE RETRO VARIABLES/FALLBACKS ===================== */
:root {
  --color-primary: #1A3B36;
  --color-secondary: #B08336;
  --color-accent: #F8F5EF;
  --color-bg: #F8F5EF;
  --color-text: #40352C;
  --color-heading: #1A3B36;
  --color-btn: #B08336;
  --color-btn-hover: #1a3b36;
  --color-btn-text: #fff;
  --color-retro-blue: #386072;
  --color-retro-salmon: #E67E5A;
  --color-retro-mint: #A5BE8A;
  --color-retro-cream: #F6EEE3;
  --radius-soft: 12px;
  --shadow-soft: 0 3px 16px rgba(26,59,54,0.07), 0 1.5px 5px rgba(176,131,54,0.07);
  --shadow-card: 0 8px 28px rgba(26,59,54,0.12), 0 1.5px 5px rgba(176,131,54,0.06);
  --btn-font: 'Montserrat', Arial, sans-serif;
  --display-font: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
}


/* ======================== TYPOGRAPHY & CUSTOM FONTS ======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  color: var(--color-heading);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 var(--color-retro-cream), 0 1px 5px rgba(26,59,54,.05);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 32px;
  font-family: var(--display-font);
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 28px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--body-font);
}

.text-section > ul, .text-section > ol { margin-bottom: 20px; }

li > span {
  color: var(--color-secondary);
  font-weight: bold;
  margin-left: 0.5em;
}

/* Nostalgic & Retro Headline Effect */
h1, h2 {
  font-family: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0;
  filter: none;
}

/* Retro Accent Underline (title deco) */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  margin-top: 12px;
  border-radius: 2px;
}


/* ====================== SECTIONS, CONTAINERS & SPACING ====================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 16px rgba(26,59,54,0.03);
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}
.card {
  background: var(--color-retro-cream);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 2px dashed var(--color-secondary);
}
.card:hover {
  box-shadow: 0 12px 28px rgba(186,115,46,0.21);
  transform: translateY(-4px) scale(1.03) rotate(-0.5deg);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature-grid > div {
  flex: 1 1 250px;
  min-width: 220px;
  background: #F6EEE3;
  border-radius: 10px;
  border: 1.5px solid var(--color-secondary);
  box-shadow: var(--shadow-soft);
  padding: 20px 14px 16px 18px;
  margin-bottom: 12px;
  position: relative;
  filter: drop-shadow(0 0.5px 2px #B0833618);
  transition: box-shadow 0.23s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 22px rgba(176,131,54,0.13);
  transform: scale(1.035) rotate(-0.6deg);
}
.feature-grid img {
  width: 48px; height: 48px; margin-bottom: 10px;
  filter: sepia(0.33) brightness(1.1) contrast(1.13);
}


/* ============= TESTIMONIALS & REVIEW CARDS =============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(186,115,46,0.08);
  border: 2px solid #B08336;
  margin-bottom: 24px;
  transition: box-shadow 0.25s, border 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(26,59,54,0.11);
  border: 2px solid var(--color-primary);
}
.testimonial-card p {
  color: #1A3B36;
  font-size: 1.1rem;
  font-family: var(--display-font);
  margin-bottom: 0;
}
.testimonial-card div {
  font-size: 1.6rem;
  color: #B08336;
  font-family: var(--display-font);
  font-weight: 700;
}
.testimonial-card span {
  font-family: var(--body-font);
  color: #1A3B36;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ================= SUBTLE RETRO STYLES & PATTERNS ================= */
body {
  background-color: var(--color-bg);
  background-image: repeating-linear-gradient(135deg, #F8F5EF 0px, #F8F5EF 16px, #F6EEE3 16px, #F6EEE3 32px);
}
section {
  border-radius: 18px;
  overflow: visible;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(26,59,54,0.04);
  position: relative;
}
section:nth-child(odd) {
  background-color: #F6EEE3;
}
section:nth-child(even) {
  background-color: var(--color-bg);
}


/* ========== RETRO BUTTONS ========== */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--btn-font);
  font-size: 1.18rem;
  background-color: var(--color-secondary);
  color: var(--color-btn-text);
  border-radius: 25px;
  border: 3px solid #faeecd;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(186,115,46,0.08);
  margin: 8px 0;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.22s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-btn-text);
  border-color: #e5c178;
  transform: translateY(-2px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 7px 22px rgba(26,59,54,0.16);
}

/* Retro-style secondary buttons */
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  background: #386072;
  color: #fff;
  border-radius: 25px;
  border: 2px solid #B08336;
  font-family: var(--btn-font);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.19s, border 0.19s, color 0.19s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B08336;
  color: #fff;
  border-color: #1A3B36;
}


/* ================= HEADER, NAVIGATION & LOGO ================== */
header {
  width: 100%;
  background-color: #F6EEE3;
  border-bottom: 3px dotted #B08336;
  position: relative;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding-top: 8px; padding-bottom: 8px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 10px;
  color: var(--color-primary);
  background: none;
  border-radius: 10px;
  transition: background 0.14s, color 0.15s;
  letter-spacing: 0.02em;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
header img {
  height: 56px;
  width: auto;
  margin-right: 24px;
  filter: drop-shadow(0 0 2px #B08336AA);
}
header .btn-primary {
  margin-left: auto;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ========== Mobile NAV Styles ========== */
@media (max-width: 1000px) {
  header .btn-primary {
    display: none;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    background: var(--color-secondary);
    color: #fff;
    font-size: 2rem;
    width: 44px; height: 44px;
    border: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(176,131,54,0.1);
    transition: background 0.22s, color 0.17s;
    z-index: 102;
    cursor: pointer;
  }
  .container {
    gap: 12px;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F6EEE3;
  box-shadow: 0 0 32px 0 rgba(26,59,54,0.10);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,.03,.47,1.12);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  display: block;
  font-size: 2.5rem;
  color: var(--color-secondary);
  background: transparent;
  border: none;
  position: absolute;
  top: 26px; right: 26px;
  z-index: 206;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.13s;
}
.mobile-menu-close:hover {
  background: #f2e0c0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 100px auto 0 auto;
  width: 86%;
  max-width: 420px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 16px 0;
  color: var(--color-primary);
  font-family: var(--display-font);
  font-weight: 700;
  background: none;
  width: 100%;
  border-radius: 12px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ========== FOOTER ========== */
footer {
  background: #1A3B36;
  color: #fff;
  padding: 44px 0 26px 0;
  border-top: 3px dotted #B08336;
  margin-top: 40px;
  font-family: var(--body-font);
}
footer nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 1.1em;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  background: rgba(176,131,54,0.15);
  padding: 6px 13px;
  border-radius: 7px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #B08336;
  background: #fffbe9;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
  color: #ffe;
  opacity: 0.92;
}
.footer-contact p {
  margin-bottom: 0;
  text-align: center;
}


/* ================== RETRO DECORATIVE ELEMENTS ================== */
section::before {
  content: "";
  display: block;
  width: 60px;
  height: 7px;
  border-radius: 3px;
  margin-bottom: 9px;
  background:
    repeating-linear-gradient(90deg,#B08336,#B08336 10px,#FFDDAA 10px,#FFDDAA 20px);
  opacity: 0.12;
  margin-left: 0;
}

/* Vintage Dotted Border for emphasis */
.feature-item, section ul, section ol {
  border-left: 5px dotted #B0833633;
  padding-left: 15px;
}

/* Decorative dash underline for strongs in lists */
ul li strong {
  border-bottom: 3.5px dashed #B0833690;
  line-height: 1.55;
}


/* ================== RESPONSIVE STYLES ================== */
@media (max-width: 900px) {
  html { font-size: 15px; }
  header img { height: 42px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 700px) {
  html { font-size: 14px; }
  .container { padding: 0 6px; }
  section { padding: 18px 0px; border-radius: 10px; }
  .testimonial-card { padding: 14px; }
}
@media (max-width: 520px) {
  html { font-size: 13px; }
  
  header img { height: 36px; }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 11px 16px;
    border-radius: 16px;
  }
  footer nav { gap: 8px; }
}


/* =================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3500;
  background: #fffbe9;
  border-top: 3px dashed #B08336;
  box-shadow: 0 -6px 18px rgba(26,59,54,0.07);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  transition: transform 0.3s, opacity 0.25s;
  font-size: 1.01rem;
  font-family: var(--body-font);
  color: #1A3B36;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 3;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--btn-font);
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 22px;
  min-width: 0;
  margin: 0 4px;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .settings {
  background: #386072;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #B08336;
}
.cookie-banner .reject {
  background: #ece2d0;
  color: #1A3B36;
  border: 1.5px solid #B08336;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #B08336;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    padding: 13px 6px 12px 6px;
  }
  .cookie-banner .cookie-actions { gap: 6px; }
}

/* =========== COOKIE PREFERENCES MODAL =========== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3800;
  background: rgba(26,59,54,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #fffbe9;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(26,59,54,0.16);
  padding: 32px 36px 26px 36px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  color: #1A3B36;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  text-shadow: none;
}
.cookie-category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 14px;
  background: #ece2d0;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle[data-state="on"] {
  background: #A5BE8A;
}
.cookie-toggle-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #B08336;
  position: absolute;
  left: 2px; top: 1px;
  transition: left 0.19s, background 0.15s;
}
.cookie-toggle[data-state="on"] .cookie-toggle-circle {
  left: 16px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-content .close-btn {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2rem;
  color: #B08336;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.cookie-modal-content .close-btn:hover {
  background: #f2e0c0;
}

@media (max-width: 550px) {
  .cookie-modal-content { padding: 18px 8px 14px 8px; min-width: 180px; font-size: 0.97rem; }
  .cookie-modal-content h2 { font-size: 1.1rem; }
}


/* ============ MISC ELEMENTS STYLES ============ */
.map-location {
  background: #dbeceb;
  border-radius: 13px;
  padding: 18px 16px;
  margin: 20px 0;
  font-family: var(--body-font);
  color: #125a5b;
  box-shadow: 0 2px 6px rgba(56,96,114,0.10);
}

/* ============ UTILITY CLASSES ============ */
.flex {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-20 {
  gap: 20px;
}
.gap-32 {
  gap: 32px;
}

/* ============ FOCUS AND A11y IMPROVEMENTS ============ */
a, button, .btn-primary, .btn-secondary, .mobile-menu-close, .cookie-banner button, .cookie-modal-content .close-btn {
  outline: none;
}
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus,
.mobile-menu-close:focus, .cookie-banner button:focus, .cookie-modal-content .close-btn:focus {
  box-shadow: 0 0 0 3px #FFDE7B66, 0 1.5px 8px #B0833666;
}

/* Prevent content overlapping by padding in section (for last child) */
section:last-child {
  margin-bottom: 120px;
}

/* ============ VISUAL MICRO-INTERACTIONS ============ */
button, .btn-primary, .btn-secondary {
  will-change: transform;
  transition: box-shadow 0.15s, background-color 0.2s, color 0.16s, border 0.18s, transform 0.12s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.96);
}
input, textarea, select {
  border: 1.5px solid #f6eee3;
  border-radius: 8px;
  background: #fffdf8;
  padding: 12px;
  font-size: 1rem;
}

/* ================= END OF STYLE.CSS ================= */
