/* CSS RESET & NORMALIZE */
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 { height: 100%; }
body { min-height: 100vh; line-height: 1.5; font-family: 'Roboto', Arial, sans-serif; background: #272d2b; color: #F7F4ED; }
*, *::before, *::after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
strong { color: #C2874B; font-weight: bold; }

/* FONT SETUP */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #334C3D;
  --color-secondary: #C2874B;
  --color-accent: #F7F4ED;
  --color-bg: #232b27;
  --color-card: #2c3530;
  --color-neon: #38ffd3;
  --color-danger: #e15c64;
  --color-body: #F7F4ED;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow: 0 4px 24px rgba(51, 76, 61, 0.18);
}

body {
  background: linear-gradient(135deg, #232b27 0%, #334C3D 100%);
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #232b27;
  border-bottom: 2px solid var(--color-secondary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-accent);
  padding: 6px 12px;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon);
}
header a.btn-primary {
  margin-left: 12px;
}
header img {
  height: 44px;
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  z-index: 150;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-secondary);
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 43, 39, 0.97);
  z-index: 200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  animation: slideMenuIn 0.35s cubic-bezier(.4,1,.4,1);
}
@keyframes slideMenuIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  margin: 24px 0 24px 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-neon);
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 20px;
  padding: 12px 0;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(200,200,200,0.08);
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-neon);
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #233027 60%, #334C3D 100%);
  color: var(--color-accent);
  padding: 60px 0 40px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-display);
  color: var(--color-neon);
  font-size: 2.2rem;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 14px #22b68b60;
  margin-bottom: 12px;
}
.hero .subheadline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 0;
}
.hero p {
  color: var(--color-accent);
  font-size: 1.05rem;
}

/* CTA BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--color-neon);
  color: #232b27;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  letter-spacing: .06em;
  box-shadow: 0 1px 10px #38ffd370, 0 4px 20px #0004;
  padding: 12px 32px;
  margin-top: 20px;
  transition: background 0.22s, color 0.16s, box-shadow 0.2s;
  position: relative;
  text-shadow: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: #F7F4ED;
  box-shadow: 0 4px 24px #C2874B91;
  outline: none;
}

/* SECTIONS, SPACING, LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(120deg, #29352f 0%, #334C3D 85%);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 auto;
  width: 100%;
}
.text-section {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-body);
  margin: 24px 0 0 0;
}
.text-section ul {
  margin: 16px 0 0 18px;
  padding-left: 12px;
  color: var(--color-accent);
}
.text-section li {
  margin-bottom: 10px;
  list-style: disc;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-neon);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-body);
}

/* FEATURES & CARDS */
.features {
  margin: 40px 0 40px 0;
  padding: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--color-card);
  color: var(--color-accent);
  flex: 1 1 275px;
  min-width: 230px;
  max-width: 340px;
  padding: 28px 20px 20px 20px;
  border-radius: 13px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 18px #1b3226a5;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1.5px solid #39ffdd09;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px #38ffd374;
  transform: translateY(-8px) scale(1.015);
  border-color: var(--color-neon);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 8px var(--color-neon));
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--color-card);
  box-shadow: var(--shadow);
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
}

.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;
  align-items: center;
  gap: 20px;
  background: var(--color-accent);
  color: #232b27;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 18px #39ffec13;
  margin: 0 0 24px 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  position: relative;
  min-width: 220px;
}
.testimonial-card p {
  color: #232b27;
  margin: 0;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  margin-left: 12px;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 3.2rem;
  color: var(--color-neon);
  opacity: 0.2;
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 0.68;
}

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

.map-placeholder {
  background: #233027;
  color: var(--color-neon);
  border-radius: 8px;
  padding: 18px 10px;
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-mono, monospace);
  box-shadow: 0 1px 8px #23302791;
  letter-spacing: 0.02em;
}

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(90deg, #232b27 55%, #334C3D 100%);
  color: var(--color-accent);
  border-top: 2px solid var(--color-secondary);
  box-shadow: 0 -2px 14px #13191926;
  padding: 22px 0 12px 0;
  font-size: 0.96rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 6px;
}
footer nav a {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  opacity: 0.82;
  transition: color 0.18s, opacity 0.18s;
  border-bottom: 1px dotted var(--color-secondary);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-neon);
  opacity: 1;
}
footer .text-section {
  color: #A2AAD8;
  font-size: 0.93rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #171f1a 70%, #334C3D 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 10px 18px 18px;
  gap: 16px;
  box-shadow: 0 -2px 18px #000a;
  font-size: 1rem;
  animation: fadeInBanner 0.33s ease;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 9px 18px;
  border: none;
  border-radius: 6px;
  font-size: 0.97rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  background: var(--color-neon);
  color: #1e2221;
  box-shadow: 0 2px 8px #38ffd329;
  transition: background 0.18s, color .16s, box-shadow 0.2s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
  outline: none !important;
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-neon);
  transition: all 0.18s;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: var(--color-neon);
  color: #1e2221;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #151b1a;
  color: var(--color-accent);
  z-index: 10000;
  min-width: 300px;
  max-width: 95vw;
  width: 420px;
  border-radius: 13px;
  box-shadow: 0 6px 48px #334C3D;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: slideModalIn .32s cubic-bezier(.4,1,.4,1);
}
@keyframes slideModalIn {
  from { opacity: 0; transform: translate(-50%,24%) scale(.9); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  color: var(--color-neon);
  font-size: 1.2rem;
  margin: 0 0 10px 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-neon);
  margin: 0;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.97rem;
  color: #c8cec7;
  margin-bottom: 9px;
}

/* MISC ELEMENTS */
a {
  transition: color .19s;
}
a:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}
input, button, select, textarea {
  font-family: var(--font-body);
}

/* MEDIA QUERIES: Responsive Design */
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    height: auto;
    gap: 18px;
    padding: 0 10px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div {
    min-width: 170px;
    padding: 22px 10px 15px 10px;
    font-size: 0.99rem;
  }
  .testimonial-card {
    font-size: 0.97rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    height: 70px;
    gap: 10px;
  }
  header nav {
    display: none !important;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 36px 0 22px 0;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 5px;
    border-radius: 10px;
  }
  .feature-grid {
    gap: 10px;
    justify-content: center;
  }
  .feature-grid > div {
    min-width: 170px;
    padding: 14px 8px 8px 8px;
    font-size: 0.97rem;
    margin-bottom: 18px;
  }
  .testimonial-card {
    padding: 14px;
    font-size: 1.01rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-modal {
    padding: 24px 10px 16px 12px;
    min-width: unset;
    width: 99vw;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  .container, .section, .footer .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .feature-grid {
    gap: 6px;
  }
  .feature-grid > div {
    padding: 10px 4px 7px 4px;
    min-width: 95vw;
    max-width: 96vw;
    font-size: 0.98rem;
  }
  .testimonial-card {
    font-size: 0.99rem;
    padding: 10px;
  }
  .btn-primary {
    font-size: 0.97rem;
    padding: 12px 16px;
  }
  header img {
    height: 32px;
  }
}

/* ACCESSIBILITY & INTERACTIONS */
.btn-primary, .cookie-btn {
  cursor: pointer;
  outline: none;
}
.btn-primary:active, .cookie-btn:active {
  filter: brightness(1.04);
  box-shadow: 0 1px 5px #38ffd359;
}

::-webkit-scrollbar {
  background: #232b27;
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #334C3D;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Selection */
::selection {
  background: #38ffd366;
  color: #101410;
}

/* Animations */
.btn-primary,
.cookie-btn {
  transition: background .16s, color .19s, box-shadow 0.22s, border-color 0.18s;
}
.card, .feature-grid > div {
  transition: box-shadow .2s, transform .18s, border-color .18s;
}

/* Hide cookie modal/background by default (script should toggle these) */
.cookie-banner, .cookie-modal {
  display: none;
}

/* Utility margin helpers (for content creators) */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

/* END OF CSS */
