/* --- RESET & NORMALIZE (industrial_modern) --- */

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
}
html, body {
  min-height: 100vh;
  min-width: 100vw;
  background-color: #15181B;
  color: #F7F8F2;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  background: #191C20;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s cubic-bezier(.48,.28,.41,1);
}
ul, ol {
  list-style: none;
}

/* --- VARIABLE FALLBACKS: brand + industrial --- */
:root {
  --color-primary: #225142;
  --color-secondary: #8DB597;
  --color-accent: #F7F8F2;
  --color-bg-dark: #23272b;
  --color-bg-darker: #1c1f24;
  --color-metal: #383c42;
  --color-concrete: #3e464f;
  --color-iron: #979eaa;
  --color-error: #b55151;
  --color-success: #69ae74;
  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-soft: 0 2px 8px rgba(15,19,24,0.13), 0 1.5px 0 rgba(102,111,115,0.06);
  --radius-md: 8px;
  --radius-lg: 16px;
  --border-metal: 1.5px solid #383c42;
  --hover-metal: #8DB597;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-shadow: 1px 2px 0 #181c20, 0 1px 12px #15181b80;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: var(--color-secondary);
}
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--color-accent);
}
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.012em;
  margin-bottom: 5px;
}
.subheadline {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-iron);
  margin-bottom: 28px;
  font-family: var(--font-body);
}
p, li, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-accent);
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-secondary);
  padding-left: 14px;
  color: var(--color-metal);
  background: #272c31;
}
a:hover, .footer-nav a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
strong {
  font-weight: 600;
  color: var(--color-secondary);
}

/* --- LAYOUT UTILITIES & CRITICAL SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Card: for user-added .card, .card-container etc. */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-bg-darker);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  border: var(--border-metal);
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.18s cubic-bezier(.45,.3,.41,1), border-color 0.14s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 #0a0f1340;
  border-color: var(--color-secondary);
  z-index: 2;
}

.content-grid, .feature-grid, .city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.feature-grid > div, .city-grid > div {
  flex: 1 1 230px;
  min-width: 230px;
  background: #23272d;
  border-radius: var(--radius-md);
  padding: 28px 24px 20px;
  box-shadow: 0 2px 10px #14191b22;
  border: var(--border-metal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-color 0.13s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .city-grid > div:hover {
  box-shadow: 0 5px 22px #14191bbc;
  border-color: var(--color-secondary);
}
.feature-grid img, .city-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.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;
  background: #ececec;
  color: #222627;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid #d5d5d5;
  box-shadow: 0 2px 12px #15181b22;
  max-width: 540px;
  transition: box-shadow 0.22s;
}
.testimonial-card blockquote {
  color: #1b242c;
  background: transparent;
  font-style: italic;
  font-size: 1.1rem;
  border-left: 4px solid var(--color-secondary);
  padding-left: 13px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #555d64;
  font-style: normal;
  margin-left: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px #222b2e24;
}
/* Ensure contrast readability */
.testimonial-card, .testimonial-card blockquote { color: #222627; }

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

/* --- HEADER --- */
header {
  background: #22282f;
  box-shadow: 0 3px 11px #0d0f110a;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 8px;
}
header img {
  height: 38px;
  width: auto;
  filter: contrast(1.1) brightness(1.12) drop-shadow(0 3px 13px #10141644);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.012em;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-metal);
  color: var(--color-secondary);
}

.cta-btn {
  background: linear-gradient(90deg, #225142 95%, #8DB597 100%);
  color: var(--color-accent);
  padding: 10px 30px;
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: var(--radius-lg);
  font-size: 1.08rem;
  border: 2px solid #2b6254;
  box-shadow: 0 2px 10px #111a2240;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.21s, color 0.14s, box-shadow 0.19s;
  letter-spacing: 0.06em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8DB597;
  color: #15181B;
  border-color: #71987e;
  box-shadow: 0 6px 26px #2b625480;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: var(--color-accent);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 98;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
  outline: 2px dotted var(--color-secondary);
}

/* --- MOBILE NAVIGATION/BURGER --- */
.mobile-menu {
  display: none;
  position: fixed;
  background: #1a1d1f;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  z-index: 200;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: -2px 0 16px #33384e77, 0 0px 0 #0000;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  padding: 16px 16px 8px 8px;
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 110;
  cursor: pointer;
  background: #101112;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  margin-top: 68px;
  padding-left: 35px;
  width: 100vw;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.21rem;
  font-weight: 600;
  color: var(--color-secondary);
  padding: 11px 12px 11px 0;
  border-radius: 6px 0 0 6px;
  width: 86vw;
  max-width: 370px;
  background: none;
  transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #191C20;
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  background: #23272d url('../assets/hero-industrial.jpg') center/cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--color-metal);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 320px;
  flex: 1 0 auto;
}
.hero .content-wrapper {
  color: var(--color-accent);
  background: rgba(29, 34, 37, 0.8);
  border-radius: var(--radius-lg);
  padding: 46px 20px 44px 30px;
  box-shadow: 0 7px 24px 0 #0c11134C;
  max-width: 650px;
  gap: 0;
}

/* --- LISTS/STYLED ULs --- */
.service-list, .feature-list, .activity-list, .naturepark-list, .park-activity-list, .core-values, .insider-tips-list, .route-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.service-list li, .feature-list li, .activity-list li, .naturepark-list li, .park-activity-list li, .core-values li, .insider-tips-list li, .route-list li {
  background: #22262b;
  border-radius: var(--radius-md);
  box-shadow: 0 1.5px 6px #10171e15;
  padding: 22px 20px 16px 20px;
  border: var(--border-metal);
  margin-bottom: 0;
}
.sightseeing-overview, .guided-tours-info, .recommendations, .team-overview, .activity-overview, .planning-tips, .directions, .contact-note {
  background: var(--color-bg-darker);
  margin-top: 18px;
  padding: 20px 15px;
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1rem;
  box-shadow: 0 2px 12px #2e353d22;
}

/* --- FOOTER --- */
footer {
  background: #21252a;
  color: var(--color-iron);
  padding-top: 38px;
  padding-bottom: 38px;
  margin-top: 60px;
  border-top: 2px solid var(--color-metal);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-iron);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 5px 9px;
  border-radius: 3px;
  transition: color 0.12s, background 0.15s;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 1rem;
}
.footer-contact a {
  color: var(--color-accent);
}
.footer-contact img {
  width: 23px;
  height: 23px;
}

/* --- CONTACT INFO --- */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.01rem;
  color: var(--color-accent);
}
.contact-info img {
  width: 25px;
  height: 25px;
}
.contact-note {
  margin-top: 20px;
}

/* --- SUPPORT INFO, DIRECTIONS, CORE-VALUES --- */
.support-info ul, .core-values, .planning-tips ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.support-info li, .planning-tips li {
  font-size: 1rem;
  color: var(--color-accent);
  position: relative;
  padding-left: 22px;
}
.support-info li:before, .planning-tips li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-size: 1.6em;
  line-height: 0;
}

/* --- TEXT SECTIONS, LEGAL, MODALS --- */
.text-section, .legal-notice {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 0 0;
  color: var(--color-accent);
}
.legal-notice p {
  font-size: 1rem;
  color: var(--color-accent);
}

/* --- THANK YOU PAGE --- */
.text-section .cta-btn {
  margin-top: 19px;
  margin-bottom: 0;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #25292e;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 22px 16px 16px 16px;
  z-index: 9999;
  box-shadow: 0 -2px 20px #0d1316bb;
  font-size: 1rem;
  border-top: 3px solid var(--color-metal);
  animation: slideInBanner 0.6s cubic-bezier(.48,.13,.22,1.04);
}
@keyframes slideInBanner {
  0% {transform: translateY(70px); opacity: 0;}
  75% {opacity: 1;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  background: var(--color-secondary);
  color: #222a24;
  padding: 8px 23px;
  margin: 0 4px 0 4px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px #131a2020;
  transition: background 0.18s, color 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-banner .secondary-btn {
  background: #394048;
  color: var(--color-accent);
  border: 1.3px solid #666;
}
.cookie-banner .secondary-btn:hover, .cookie-banner .secondary-btn:focus {
  background: var(--color-error);
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #8DB597;
  color: #222;
  border: none;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(22,27,30,0.94);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.35s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInModal {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal {
  background: #292e32;
  color: var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 33px 24px 28px 24px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 8px 30px #10141675;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: bounceModal 0.38s;
}
@keyframes bounceModal {
  0% {transform: scale(0.94); opacity: 0;}
  87% {transform: scale(1.03);}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  color: var(--color-secondary);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 7px;
}
.cookie-modal label {
  color: var(--color-accent);
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-toggle-disabled {
  opacity: 0.47;
  pointer-events: none;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px; right: 15px;
  background: none;
  font-size: 1.9rem;
  color: var(--color-iron);
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-secondary);
}
.cookie-modal .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .actions button {
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 7px;
}

/* --- ANIMATION UTILITIES --- */
.fade-in {
  animation: fadeIn 0.5s cubic-bezier(.48,.28,.41,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- GENERAL BUTTONS --- */
button {
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* --- RESPONSIVE / MOBILE DESIGN --- */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 992px) {
  .container { max-width: 90vw; }
  .hero .content-wrapper { max-width: 90vw; }
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .section { padding: 30px 8px; margin-bottom: 40px; }
  .content-wrapper, .feature-grid, .city-grid, .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .feature-grid > div, .city-grid > div {
    min-width: unset;
    width: 100%;
    padding: 20px 14px 16px 14px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  header .cta-btn { margin-left: 7px; }
  .hero .content-wrapper { padding: 26px 5px 28px 11px; }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
  }
  .footer-contact { margin-top: 20px; }
  .cookie-banner { flex-direction: column; gap: 11px; font-size: 0.99rem; }
}
@media (max-width: 600px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .section { padding: 19px 2px; }
  .testimonial-card { padding: 13px 8px; max-width: 99vw; }
  .cookie-banner { padding: 13px 2px 10px; }
  .cookie-modal { padding: 19px 9px; }
}

/* --- SCROLLBAR (INDUSTRIAL FEEL) --- */
::-webkit-scrollbar { width: 9px; background: #181c20; }
::-webkit-scrollbar-thumb {
  background: #292e35;
  border-radius: 4px;
  border: 2px solid #181c20;
}
::-webkit-scrollbar-thumb:hover { background: #3e464f; }

/* --- UTILITY CLASSES --- */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.hide { display: none !important; }
.visible { display: block !important; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

/* --- Z-INDEX/STACKING (for overlays etc.) --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 200;
}

/* --- NO GRID OR ABSOLUTE POSITIONING FOR CARDS! --- */
/* All content layouts use flexbox as required. */
