/* ========================
   ALPENENTDECKER STYLE.CSS
   INDUSTRIAL MODERN THEME
   ========================= */

/* CSS RESET */
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 {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
  background: #12171b;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #1c2328;
  color: #F4F4ED;
  line-height: 1.7;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #68B193;
  text-decoration: none;
  transition: color .2s;
  word-break: break-word;
}
a:hover,
a:focus {
  color: #F4F4ED;
}
ul, ol {
  list-style: none;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #F4F4ED;
  margin-bottom: 14px;
}
h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.1; }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.19; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p, .subheadline { font-size: 1.1rem; color: #e2e4e5; margin-bottom: 18px; }
.subheadline { font-family: 'Open Sans', Arial, sans-serif; font-size: 1.16rem; font-weight: 600; color: #a9adb1; margin-bottom: 26px; }

strong { font-weight: 600; color: #68B193; letter-spacing: 0.01em; }

/* ============= CONTAINERS & SECTIONS ============= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 12px;
}
section.cta {
  background: #194969;
  color: #F4F4ED;
  border-radius: 12px;
  box-shadow: 0 3px 24px 0 rgba(8,14,24,0.16);
  margin-bottom: 0;
  padding: 46px 20px;
  display: flex;
  align-items: center;
}
.hero {
  background: linear-gradient(120deg,#13191c 65%, #194969 100%);
  box-shadow: 0 3px 16px 0 rgba(25,73,105,0.10);
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 0 0 22px 22px;
}


/* ================== HEADER & NAV ================== */
header {
  background: #13181d;
  box-shadow: 0 2px 14px 0 rgba(11,16,24,0.14);
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 44px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 18px;
  align-items: center;
}
.main-nav a {
  color: #a3a7ad;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 3px;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #68B193;
  border-bottom: 2px solid #68B193;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  color: #194969;
  background: #68B193;
  padding: 11px 32px;
  margin-left: 20px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(104,177,147,0.10);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s, transform .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F4F4ED;
  color: #194969;
  transform: translateY(-2px) scale(1.03);
}

/* =================== MOBILE NAV =================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4F4ED;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 14px;
  z-index: 115;
  transition: color .18s;
}
.mobile-menu-toggle:focus {
  color: #68B193;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 111;
  background: #1c2328;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  animation: slideInRight .44s cubic-bezier(.61,1.16,.33,1) 1;
}
@keyframes slideInRight {
  from { transform: translateX(100vw); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #68B193;
  font-size: 2rem;
  padding: 18px 24px 8px 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #F4F4ED;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 16px 40px;
  width: 80vw;
}
.mobile-nav a {
  color: #F4F4ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 0;
  border-bottom: 1px solid #333942;
  transition: color .18s, background .15s;
  border-radius: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #68B193;
  background: #232a2f;
}

/* Hide main nav & show mobile nav on mobile */
@media (max-width: 950px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 570px) {
  .mobile-nav {
    width: 96vw;
    margin: 16px 10px;
  }
}

/* =================== FOOTER ====================== */
footer {
  background: #13181d;
  padding: 0 0 22px 0;
  border-top: 2px solid #23303b;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding-top: 35px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
}
.footer-links a {
  color: #a3a7ad;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color .18s;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}
.footer-links a:hover, .footer-links a:focus {
  color: #68B193;
  border-bottom: 2px solid #68B193;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px; margin-right: 6px; filter: grayscale(90%) brightness(1.6);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
  color: #acafaf;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand img {
  height: 34px;
}

/* =================== PAGE GRIDS ================== */
.features-grid, .touren-categories-grid, .destination-grid, .features-row, .team-section, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid, .touren-categories-grid, .destination-grid, .testimonial-slider, .testimonial-list {
  justify-content: flex-start;
}
.features-row {
  flex-wrap: wrap;
  justify-content: space-between;
}
.team-section {
  gap: 32px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .features-grid,.touren-categories-grid,.destination-grid,.testimonial-slider,.testimonial-list, .team-section, .features-row {
    gap: 18px;
  }
}

/* CARD DESIGN - CATEGORY / FEATURE / DESTINATION */
.feature-item, .category-item, .destination-item, .team-member {
  background: #222a2f;
  border-radius: 11px;
  box-shadow: 0 3px 13px 0 rgba(17,24,28,0.10);
  padding: 30px 26px 26px 26px;
  flex: 1 1 260px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative; /* decorative icons can be positioned */
  border: 1.5px solid #26303c;
  transition: box-shadow .21s, border-color .18s, transform .14s;
}
.feature-item:hover, .category-item:hover, .destination-item:hover, .team-member:hover {
  border-color: #68B193;
  box-shadow: 0 4px 24px 2px rgba(25,73,105,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-item img, .category-item img, .destination-item img {
  width: 40px; height: 40px;
  margin-bottom: 0;
}
.team-member {
  background: #26303a;
  min-width: 210px;
}
.team-member h3 {
  font-size: 1.18rem;
  color: #F4F4ED;
}
.team-member span {
  font-size: .98rem;
  color: #68B193;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* ================ TESTIMONIALS =================== */
.testimonial-slider, .testimonial-list {
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #F4F4ED;
  color: #24282C;
  border-radius: 10px;
  min-width: 240px;
  max-width: 420px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(11,16,24,0.13);
  border: 1.2px solid #d1dac1;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow .17s, border .15s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px 1px rgba(25,73,105,.22);
  border-color: #68B193;
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  color: #23313b;
  font-size: 1.07rem;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-name {
  color: #194969;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-align: right;
  align-self: flex-end;
}

/* FAQ LIST STYLE */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  color: #68B193;
  font-weight: 700;
  margin-bottom: 7px;
}
.faq-list dd {
  color: #e2e4e5;
  margin-bottom: 2px;
  font-size: 1.06rem;
}

/* CTA section buttons */
section.cta .cta-btn {
  margin-left: 0; margin-top: 28px;
}

/* CONTACT DETAILS BLOCK */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A5B4BC;
}
.contact-details img {
  width: 18px; filter: grayscale(90%) brightness(1.5);
}

/* SECTION & GENERAL FLEX SPACING */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =================== RESPONSIVE: FLEX/CARD LAYOUTS =================== */
@media (max-width:1150px) {
  .container { max-width: 100%; }
}
@media (max-width: 800px) {
  .features-grid, .touren-categories-grid, .destination-grid, .features-row, .team-section, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .category-item, .destination-item, .team-member {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 650px) {
  h1   { font-size: 2.1rem; }
  h2   { font-size: 1.45rem; }
  h3   { font-size: 1.12rem; }
  .hero { padding: 42px 0px 36px 0px; }
  section.cta { padding: 28px 10px; }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-contact { flex-direction: column; gap: 10px; }
}

@media (max-width: 500px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .content-wrapper { gap:14px; }
  .feature-item, .category-item, .destination-item, .team-member, .testimonial-card {
    padding: 15px 8px 12px 10px;
  }
  .footer-brand img { height: 24px; }
  .footer-brand { font-size: 0.97rem; }
}

/* =================== BUTTONS & INTERACTIVE =================== */
button, [type="button"], [type="reset"], [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  border: none;
  cursor: pointer;
  outline: none;
  background: none;
}

/* =================== FORMS (Contact section, Sim) ============ */
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 11px 12px;
  background: #1a2329;
  border: 1.5px solid #31414c;
  color: #F4F4ED;
  border-radius: 6px;
  transition: border .17s;
  font-size: 1.06rem;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #68B193;
}

/* =================== COOKIE BANNER ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232a2f;
  color: #F4F4ED;
  padding: 25px 18px 18px 18px;
  box-shadow: 0 -4px 18px 0 rgba(11,18,29,.12);
  z-index: 140;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  border-top: 3px solid #68B193;
  transition: transform .34s cubic-bezier(.7,1.02,.43,1), opacity .19s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  max-width: 500px;
  font-size: 1rem;
  color: #F4F4ED;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 26px;
  border-radius: 5px;
  border: none;
  background: #68B193;
  color: #194969;
  font-weight: 700;
  transition: background .2s, color .2s, transform .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #194969;
  color: #F4F4ED;
  transform: scale(1.06);
}
.cookie-btn.secondary {
  background: #232a2f;
  color: #68B193;
  border: 1.4px solid #68B193;
  margin-left: 0;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #1d2329;
  color: #F4F4ED;
}
/* ========== COOKIE MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 160;
  background: rgba(25,33,38,.90);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .23s;
  opacity: 1;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-content {
  background: #202528;
  color: #F4F4ED;
  border-radius: 12px;
  box-shadow: 0 9px 38px 2px rgba(25,73,105,.17);
  padding: 38px 35px 28px 35px;
  min-width: 300px; max-width: 98vw;
  min-height: 100px;
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  color: #68B193;
  font-size: 1.33rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #F4F4ED;
  font-weight: 600;
  margin-right: 9px;
}
.cookie-category input[type='checkbox'], .cookie-category input[type='radio'] {
  accent-color: #68B193;
  width: 19px; height: 19px;
}
.cookie-modal-actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px;
}
.cookie-modal-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: #68B193;
  font-size: 2rem; cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4F4ED;
}
@media (max-width:600px) {
  .cookie-banner { flex-direction: column; gap: 18px; padding: 22px 7px 14px 7px; }
  .cookie-modal-content { padding: 12vw 3vw 10vw 3vw; }
}

/* ================= MICRO-INTERACTIONS & DETAILS ================ */
.card-container .card, .card {
  background: #222a2f;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(44,57,70,.07);
  padding: 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow .17s, border-color .17s, transform .16s;
  border: 1px solid #27343d;
}
.card:hover {
  border-color: #68B193;
  box-shadow: 0 4px 24px 2px rgba(25,73,105,0.14);
  transform: translateY(-2px) scale(1.01);
}

hr {
  border: none;
  border-top: 1.6px solid #26303c;
  margin: 36px 0 28px 0;
}
/* UL re-enabled but stylized for Industrial Modern */
ol, ul {
  padding-left: 19px;
  margin-bottom: 18px;
  color: #acc0c6;
}
ul li::before {
  content:"\2022 ";
  color: #68B193;
  font-weight: bold;
  display: inline-block;
  width:1em;
  margin-left:-1em;
}
ul li { margin-bottom: 6px; }

/* General selection highlight */
::selection {
  background: #68B193;
  color: #194969;
}

/* ICONS: Give all brand SVGs slight metallic tint (simulate) */
img[src$='.svg'] { filter: grayscale(30%) brightness(1.1) contrast(1.18) drop-shadow(0 1px 1.5px #222); }

/* =================== VERTICAL SPACING ==================== */
section + section { margin-top: 0; }
section:last-of-type { margin-bottom: 0; }
.content-wrapper > *:not(:last-child) { margin-bottom: 9px; }

/* =================== ACCESSIBILITY ======================= */
:focus { outline: 2px dashed #68B193; outline-offset: 2px; }

/* =================== VISUAL HIERARCHY ==================== */
h1,h2,h3 { text-shadow: 0 1px 7px rgba(25,73,105,0.07); }

/* =================== MISC STYLE ENHANCEMENTS ============= */
/* Remove unwanted tap-highlight on touch */
html {
  -webkit-tap-highlight-color: rgba(104,177,147,.22);
}

/* Simulate metallic accent by subtle border/top-shadow on cards */
.feature-item, .category-item, .destination-item, .team-member, .card {
  border-top: 2.5px solid #c2cfd8;
  box-shadow: 0 2px 12px 0 rgba(127,136,142,.06);
}
/* Subtle metal shine bar for accent on hero/headings */
.hero h1::after, .cta h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px 0 0 2px;
  background: linear-gradient(90deg, #68B193 10%, #F4F4ED 80%);
  border-radius: 2px;
}

/* =================== PRINT STYLE ==================== */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  .container { max-width: 100vw; padding: 0 !important; } 
  body { background: #fff; color: #222; } 
}
