/* --- 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,
main,
footer,header,
menu,nav,
section,
time,
mark {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F0E7D8;
  color: #374151;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  outline: none;
}

/* --- FONTS (RETRO) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900;700;400&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5, .logo {
  font-family: 'Montserrat', 'Arial Black', Impact, sans-serif;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
h1 { font-size: 2.75rem; font-weight: 900; color: #374151; text-shadow: 1px 2px 0 #EDB14A33; }
h2 { font-size: 2rem; font-weight: 700; color: #B57231; text-shadow: 1px 1px 0 #F2D8AC44; }
h3 { font-size: 1.25rem; font-weight: 700; color: #8B572A; }
h4, h5 { font-size: 1.1rem; font-weight: 700; color: #374151; }

p, li, ul, ol, span, label, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #374151;
}
strong {
  font-weight: 700;
}

/* --- LAYOUT UTILS --- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 10px 0 #8B572A19;
  padding: 32px 28px;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 #EDB14A24;
}
.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: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #B5723130;
  padding: 20px 26px;
  margin-bottom: 24px;
  border-left: 7px solid #EDB14A;
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  color: #374151;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-style: normal;
  font-size: 0.99rem;
  color: #B57231;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff9f2;
  border: 2px dashed #EDB14A;
  border-radius: 13px;
  padding: 22px 18px;
  margin-bottom: 20px;
}

/* --- HEADER & LOGO --- */
header {
  background: #fffbe7 url('assets/pattern-retro-paper.png') repeat;
  border-bottom: 4px solid #EDB14A;
  padding: 0;
  box-shadow: 0 2px 10px #EDB14A12;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #374151;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.7px;
  position: relative;
  padding-bottom: 3px;
  transition: color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EDB14A;
}
.button-primary {
  background: #EDB14A;
  color: #fff;
  border-radius: 49px;
  padding: 13px 34px 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
  box-shadow: 0 1px 6px #EDB14A29;
  border: 0;
  outline: 0;
  display: inline-block;
  margin-left: 26px;
  text-shadow: 0 1px 0 #B572312E;
  transition: background .14s, color .14s, transform .13s;
  cursor: pointer;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: #B57231;
  color: #fffbe7;
  transform: translateY(-1px) scale(1.048);
}
.button-primary:active {
  background: #a66a16;
}

/* --- HERO SECTIONS --- */
.hero, .hero-thankyou {
  background: #F0E7D8 url('assets/pattern-retro-dots.png') repeat;
  padding: 54px 0 44px 0;
}
.hero .container, .hero-thankyou .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1, .hero-thankyou h1 {
  color: #B57231;
  margin-bottom: 14px;
  font-size: 2.5rem;
  line-height: 1.17;
}
.hero p, .hero-thankyou p {
  font-size: 1.15rem;
  color: #583207;
  margin-bottom: 22px;
}

/* --- FEATURES & HIGHLIGHTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  padding: 34px 26px 26px 26px;
  width: calc(50% - 21px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px #EDB14A15;
  border: 2px solid #EDB14A22;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .16s;
}
.feature-grid > div img {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
}
.feature-grid > div h3 {
  margin-bottom: 7px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px #EDB14A24;
  border-color: #B57231;
}

/* --- SECTIONS & ABOUT BLOCKS --- */
.about-short, .about-section, .features-section, .services-overview, .contact-block, .services-list, .features-premium, .features-team, .cta-booking, .pricing-features, .contact-details, .directions-features, .gallery-features, .gallery-testimonials, .next-steps {
  background: #fffbe7;
  border-radius: 21px;
  margin-bottom: 60px;
  padding: 40px 30px;
  box-shadow: 0 3px 18px 0 #EDB14A10;
  border: 2px solid #EDB14A19;
}

/* --- LISTS --- */
ul, ol {
  margin-left: 18px;
  margin-bottom: 10px;
}
ul li, ol li {
  padding-left: 0px;
  margin-bottom: 9px;
  position: relative;
  color: #374151;
  font-size: 1rem;
}
ul li strong {
  color: #B57231;
}
ul li:before {
  content: '\2022';
  position: absolute;
  left: -16px;
  font-size: 1.25em;
  color: #EDB14A;
  top: 0.15em;
}
ul.contact-block li img,
ul.contact-details li img,
ul.contact-short li img {
  margin-right: 9px;
  width: 24px;
  vertical-align: middle;
}

/* --- FOOTER --- */
footer {
  background: #374151 url('assets/pattern-retro-lines.png') repeat;
  padding: 0 0 0 0;
}
footer .container {
  padding: 36px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #EDB14A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fffbe7;
  border-bottom: 1px solid #EDB14A;
}
.legal-info span {
  color: #fffbe7;
  font-size: 0.94rem;
  opacity: .78;
  margin-bottom: 17px;
  display: block;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-icons img {
  width: 30px;
  filter: drop-shadow(0 2px 7px #EDB14A09);
  transition: transform .15s;
}
.social-icons img:hover {
  transform: scale(1.11) rotate(-7deg);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #374151;
  background: #EDB14A;
  border-radius: 10px;
  padding: 2px 11px 7px 11px;
  margin-left: 24px;
  transition: background .11s, box-shadow .14s;
  box-shadow: 0 2px 8px #EDB14A23;
  z-index: 1200;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #B57231;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fffbe7;
  box-shadow: 0 2px 40px #37415144;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.65,.1,.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 8px 0;
  font-size: 2rem;
  color: #EDB14A;
  background: #fff;
  border-radius: 7px;
  padding: 2px 10px;
  transition: background .14s, color .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #EDB14A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 14vh;
}
.mobile-nav a {
  color: #B57231;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 2px;
  padding: 12px 23px;
  border-radius: 8px;
  transition: background .13s, color .11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #EDB14A;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  border-top: 4px solid #EDB14A;
  box-shadow: 0 -3px 25px #B5723120;
  z-index: 2200;
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  animation: banner-slide-in .7s cubic-bezier(.29,1.11,.78,1.14);
}
@keyframes banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 5px;
}
.cookie-banner button {
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 1.05rem;
  margin: 0;
  transition: background .15s, color .13s, box-shadow .14s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-banner .cookie-accept {
  background: #EDB14A;
  color: #fff;
  border: 0;
  box-shadow: 0 1px 6px #EDB14A1B;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #B57231;
  color: #fffbe7;
}
.cookie-banner .cookie-reject {
  background: #B57231;
  color: #fffbe7;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #EDB14A;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  border: 1px solid #EDB14A;
  color: #B57231;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #fffbe7;
  color: #8B572A;
  border-color: #B57231;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #37415111;
  z-index: 2250;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .3s;
}
@keyframes fade-in {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 22px;
  max-width: 96vw;
  width: 410px;
  padding: 38px 32px 27px 32px;
  box-shadow: 0 6px 40px #B5723150;
  z-index: 2260;
  display: flex;
  flex-direction: column;
  gap: 27px;
  animation: modal-slide-down .35s cubic-bezier(.37,1.15,.59,.94);
  position: relative;
}
@keyframes modal-slide-down {
  from { transform: translateY(-80px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #B57231;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.05rem;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  border-radius: 13px;
  background: #EDB14A33;
  position: relative;
  border: 1.5px solid #EDB14A80;
  transition: background .14s;
  margin-right: 8px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #B57231;
  border-radius: 50%;
  transition: left .13s, background .12s;
}
.cookie-toggle input:checked + span {
  left: 22px;
  background: #EDB14A;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal .modal-actions button {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #EDB14A;
  color: #fff;
  border: 0;
  transition: background .13s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #B57231;
  color: #fffbe7;
}

/* --- LEGAL SECTIONS --- */
.legal {
  background: #fffbe7;
  padding: 40px 30px;
  border-radius: 21px;
  margin-bottom: 60px;
  box-shadow: 0 2px 17px #EDB14A0c;
  border: 2px solid #EDB14A19;
}
.legal h1 { margin-bottom: 25px; }
.legal h2 { margin-top: 16px; margin-bottom: 8px; color: #B57231; font-size: 1.23rem; }
.legal ul li:before { color: #B57231; }

/* --- FORMS, INPUTS, (no forms visible in provided HTML, kept style for future use) --- */
input, textarea, select {
  border-radius: 9px;
  border: 1.7px solid #EDB14A44;
  padding: 10px 15px;
  font-size: 1.05rem;
  margin-bottom: 16px;
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border .14s, background .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B57231;
  background: #fffbe7;
  outline: none;
}
label {
  display: block;
  margin-bottom: 7px;
  color: #B57231;
  font-weight: 700;
  font-size: 1.07rem;
}

/* --- MICRO-INTERACTIONS --- */
button, .button-primary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background .16s, color .15s, box-shadow .15s, transform .12s;
}
.card, .feature-grid > div, .testimonial-card, .feature-item {
  transition: box-shadow .17s, border-color .16s, transform .15s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .feature-item:hover {
  transform: scale(1.026) translateY(-2px) rotate(-0.6deg);
  box-shadow: 0 7px 24px #EDB14A26;
}

/* --- RESPONSIVE: MOBILE FIRST --- */
@media (max-width: 1020px) {
  .feature-grid { gap: 18px; }
  .feature-grid > div { width: 100%; }
  .footer-nav {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px){
  .main-nav { gap: 12px; }
  .container { width: 97%; }
  .section, .about-short, .about-section, .features-section, .services-overview, .contact-block, .services-list, .features-premium, .features-team, .cta-booking, .pricing-features, .contact-details, .directions-features, .gallery-features, .gallery-testimonials, .next-steps, .legal {
    padding: 28px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .feature-grid {
    gap: 15px;
  }
  .about-short, .about-section, .features-section, .services-overview, .contact-block,
  .services-list, .features-premium, .features-team, .pricing-features,
  .contact-details, .directions-features, .gallery-features, .gallery-testimonials,
  .next-steps, .legal {
    margin-bottom: 48px;
    border-radius: 14px;
    padding: 17px 4vw;
  }
  .card, .feature-grid > div, .testimonial-card, .feature-item {
    padding: 18px 8px 20px 13px;
    min-width: 0;
  }
  .footer-nav { gap: 11px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.10rem; }
}
@media (max-width: 580px) {
  .logo img { max-width: 110px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.05rem; }
  .container { width: 100%; padding: 0 4px; }
  .content-wrapper { gap: 16px; }
  .testimonial-card, .card, .feature-grid > div, .feature-item {
    padding: 12px 5px 14px 8px;
  }
  .cookie-modal {
    width: 97vw;
    padding: 14px 6vw 12px 6vw;
  }
  .cookie-modal h3 { font-size: 1.07rem; }
}

/* --- RETRO PATTERNS and NOSTALGIC ELEMENTS --- */
body {
  /* Optional: subtle repeating background pattern for retro vibe */
  /* background-image: url('assets/pattern-retro-paper.png'); */
}
.hero, .hero-thankyou {
  /* Add retro dots/texture background */
}
.section, .about-short, .services-overview, .features-section, .features-premium, .features-team, .pricing-features, .gallery-features, .gallery-testimonials, .legal {
  /* Decorative border or subtle pattern overlays, can be implemented inline if images repeatable. */
  /* E.g., border-image or using actual files: assets/pattern-retro-border.png */
}

/* --- MISC / OVERRIDES --- */
::-webkit-scrollbar {
  width: 9px; background: #EDB14A33;
}
::-webkit-scrollbar-thumb {
  background: #B57231AA; border-radius: 8px;
}
::selection {
  background: #EDB14A33;
}

/* --- UTILITY MARGINS for spacing --- */
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* --- END --- */
