/* ====================================== 
   MythosGipfel Tech Futuristic CSS Theme
   ====================================== 
   BRAND: MythosGipfel, 2024
   Style: Gradient backgrounds, neon accents, modern typography, flex layouts only
   Fonts: Merriweather for display, Roboto for body
   Color Palette: 
      --primary: #1B2A41 (Tech Blue-Black)
      --secondary: #F0E9D2 (Futuristic Pale)
      --accent: #B1832F (Neon Gold)
      --accent-neon: #FFE353 (Light Neon)
      --error: #EE4266 (Neon Pink Red)
======================================== */

/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #1B2A41 0%, #283C5A 100%);
  color: #F0E9D2;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #FFE353;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B1832F;
  outline: none;
}
ul, ol {
  list-style: none;
}
hr {
  border: none;
  border-top: 1px solid #44495E;
  margin: 32px 0;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #FFE353;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #FFE353;
}
h3 {
  font-size: 1.18rem;
  color: #B1832F;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #B1832F;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #F0E9D2;
  padding: 0;
  margin-bottom: 12px;
}
strong, b {
  color: #FFE353;
}
small {
  font-size: 0.98rem;
  color: #B1832F;
}

/* ============== CONTAINER & GENERAL FLEX WRAPPERS ============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222D44;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30, 38, 60, 0.19);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1.5px solid #283C5A;
}
.card:hover, .card:focus-within {
  box-shadow: 0 0 0 3px #FFE35333, 0 8px 32px rgba(255, 227, 83, 0.14);
  border-color: #B1832F;
}

.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: flex-start;
  gap: 20px;
  background: #F0E9D2;
  color: #1B2A41;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(27,42,65,0.09);
  border-left: 5px solid #B1832F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================== HEADER/NAVIGATION ================== */
header {
  background: #181F31;
  border-bottom: 2px solid #B1832F11;
  position: relative;
  z-index: 40;
  min-height: 71px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.main-nav > a img {
  height: 45px;
  width: auto;
  margin-right: 18px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul li {
  list-style: none;
}
.main-nav ul li a {
  color: #F0E9D2;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #FFE353;
  border-bottom: 2px solid #B1832F;
}

.cta-btn {
  background: linear-gradient(90deg, #B1832F 50%, #FFE353 100%);
  color: #1B2A41;
  padding: 12px 32px;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px #B1832F44;
  transition: filter 0.16s, box-shadow 0.25s, background 0.18s;
  cursor: pointer;
  margin-left: 30px;
  letter-spacing: 1px;
}
.cta-btn:hover, .cta-btn:focus {
  filter: brightness(1.15) drop-shadow(0 0 4px #FFE35355);
  box-shadow: 0 0 0 4px #B1832F33;
  outline: none;
}

/* -- MOBILE NAVIGATION -- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFE353;
  margin-left: 16px;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(27, 42, 65, 0.98);
  padding: 0 24px;
  z-index: 100;
  box-shadow: 0 0 32px #181F3119;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  padding: 12px 14px 8px 14px;
  background: none;
  border: none;
  color: #FFE353;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B1832F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 36px;
}
.mobile-nav a {
  color: #FFE353;
  font-size: 1.33rem;
  font-family: 'Merriweather', serif;
  padding: 12px 0;
  border-bottom: 1px solid #FFF2;
  transition: color 0.15s, background 0.17s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222D44;
  color: #1B2A41;
}

/* ======= HERO SECTION ======= */
.hero {
  width: 100%;
  background: linear-gradient(90deg, #1B2A41 60%, #222D44 100%);
  box-shadow: 0 4px 32px #141d2b13;
  border-bottom: 2px solid #B1832F19;
  margin-bottom: 60px;
}
.hero .container {
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #FFE353;
  text-shadow: 0 2px 16px #B1832F33,0 1px 0 #1B2A41;
}
.hero p {
  color: #F0E9D2;
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 18px;
}


/* ======= FEATURES/ICON SECTIONS (ULs) ======= */
.features ul, .features-benefits ul, .features-group ol, .features-group ul, .about ul, .about-selection ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.features ul li, 
.features-benefits ul li, 
.features-group ul li, 
.about ul li, .about-selection ul li, 
.services ul li,
.services-overview ul li {
  background: #25345B;
  border-radius: 16px;
  flex: 1 1 244px;
  min-width: 200px;
  color: #F0E9D2;
  padding: 20px 14px 20px 20px;
  box-shadow: 0 3px 18px #B1832F14;
  border-left: 4px solid #B1832F33;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.21s, border-color 0.21s;
}
.features ul li:hover, .features ul li:focus-within, 
.features-benefits ul li:hover, .features-benefits ul li:focus-within {
  box-shadow: 0 0 0 4px #FFE35333, 0 3px 20px #FFE35322;
  border-color: #B1832F;
}
.features ul li img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px #FFE353AA);
}
.features ul li h3 {
  margin-bottom: 6px;
}

.features-benefits .icon-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 14px;
}
.features-benefits .icon-grid img {
  height: 42px;
  filter: drop-shadow(0 0 7px #FFE353);
  background: #1B2A41;
  border-radius: 50%;
  padding: 9px;
}


/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(90deg, #B1832F11 0, transparent 100%);
  border-radius: 28px;
  box-shadow: 0 2px 32px #B1832F11;
  margin-bottom: 56px;
}
.cta h2 {
  color: #FFE353;
}
.cta .cta-btn {
  margin-top: 12px;
}

/* ===== ABOUT/BIO SECTION ===== */
.about {
  background: #222D44;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 1px 12px #B1832F11;
  padding: 40px 20px;
}

/* ===== CARD GRIDS ===== */
.card-grid, .service-list, .success .next-steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.success .next-steps ul li {
  background: #25345B;
  border-radius: 11px;
  padding: 16px 17px;
  margin-bottom: 12px;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  margin-top: 16px;
  background: #181F31;
  border-radius: 13px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 3px 18px #B1832F18;
}
th, td {
  text-align: left;
  padding: 13px 12px;
  color: #FFE353;
  background: #222D44;
  border-bottom: 1px solid #283C5A;
  font-size: 1rem;
}
th {
  background: #B1832F;
  color: #1B2A41;
  font-family: 'Merriweather', serif;
  font-size: 1.12rem;
}
tr:last-child td {
  border-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #181F31;
  border-top: 2px solid #B1832F11;
  padding: 32px 0 24px 0;
  color: #F0E9D2;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
}
.footer-menu a {
  color: #FFE353;
  opacity: 0.84;
  transition: color 0.2s;
  font-family: 'Roboto', sans-serif;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #B1832F;
  opacity: 1;
  outline: none;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
}
.social-links a img {
  width: 34px;
  border-radius: 50%;
  transition: box-shadow 0.17s, outline 0.13s;
  filter: drop-shadow(0 0 3px #FFE35399);
  background: #25345B;
  padding: 4px;
}
.social-links a:hover img, .social-links a:focus img {
  outline: 2px solid #B1832F;
  box-shadow: 0 0 0 2px #FFE35344;
}
.legal-info {
  font-size: 0.98rem;
  color: #F0E9D289;
}

/* ====== CONTACT INFO ====== */
.contact-info {
  color: #F0E9D2;
  font-size: 1rem;
  margin-bottom: 12px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: #F0E9D2;
  font-size: 1rem;
}
.location-map img {
  width: 32px;
  filter: drop-shadow(0 0 3px #B1832F);
}

/* ===== LEGAL SECTIONS ===== */
.legal {
  background: #222D44;
  border-radius: 22px;
  padding: 40px 20px;
  color: #F0E9D2;
  margin-bottom: 60px;
  box-shadow: 0 1px 12px #B1832F11;
}
.legal h1, .legal h2, .legal h3 {
  color: #FFE353;
}
.legal ul li {
  margin-bottom: 10px;
}

/* ========== TESTIMONIALS ========== */
.testimonials .testimonial-card, .event-listings .testimonial-card {
  background: #F0E9D2;
  color: #1B2A41;
  box-shadow: 0 3px 20px #B1832F12;
  border-left: 5px solid #B1832F;
  margin-bottom: 20px;
}
.testimonials .testimonial-card p, .event-listings .testimonial-card p {
  color: #1B2A41;
}
.testimonials .testimonial-card small, .event-listings .testimonial-card small {
  color: #9C6B1E;
}

/* ============ FAQ SNIPPET ============ */
.faq-snippet {
  background: #1B2A41;
  border-radius: 12px;
  box-shadow: 0 3px 13px #FFE3530A;
  margin-top: 16px;
  padding: 18px 20px;
}
.faq-snippet h3 {
  color: #FFE353;
}
.faq-snippet ul li {
  margin-bottom: 12px;
  color: #F0E9D2;
  font-size: 1rem;
}
.faq-snippet ul li strong {
  color: #B1832F;
}

/* =================== BUTTONS & FORMS =================== */
button, .button, input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 26px;
  background: linear-gradient(90deg, #B1832F 40%, #FFE353 100%);
  color: #1B2A41;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 10px 28px;
  margin: 8px 0;
  box-shadow: 0 2px 12px #B1832F33;
  transition: filter 0.2s, box-shadow 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  filter: brightness(1.13) contrast(1.1);
  box-shadow: 0 0 0 4px #FFE35344, 0 2px 16px #B1832F11;
  outline: none;
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1B2A41ee;
  color: #F0E9D2;
  box-shadow: 0 -2px 23px #B1832F29;
  z-index: 1000;
  padding: 18px 12px 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  border-top: 2px solid #B1832F66;
  animation: slideUp 0.65s cubic-bezier(.48,1.64,.38,.94);
}
.cookie-banner p {
  margin-right: 18px;
  max-width: 450px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  flex-direction: row;
}
.cookie-banner button {
  border-radius: 18px;
  background: #B1832F;
  color: #fff;
  box-shadow: 0 1px 7px #FFE35322;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  padding: 8px 21px;
  margin: 0;
  border: none;
  font-weight: 600;
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, #B1832F 60%, #FFE353 100%);
  color: #1B2A41;
}
.cookie-banner button.reject {
  background: #222D44;
  color: #FFE353;
}
.cookie-banner button.settings {
  background: transparent;
  color: #FFE353;
  border: 1.3px solid #FFE353;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFE353;
  color: #1B2A41;
}

/* ========== Cookie modal popup ========== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27,42,65, 0.88);
  backdrop-filter: blur(3px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
}
.cookie-modal {
  background: #283C5A;
  color: #F0E9D2;
  border-radius: 22px;
  box-shadow: 0 2px 24px #B1832F33;
  padding: 36px 26px;
  min-width: 320px;
  max-width: 98vw;
  width: 100%;
  position: relative;
  animation: fadeInPop 0.5s cubic-bezier(.38,1.41,.59,1.19);
}
.cookie-modal h2 {
  color: #FFE353;
  font-size: 1.32rem;
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: #FFE353;
  width: 18px;
  height: 18px;
}
.cookie-modal .always-on {
  color: #B1832F;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 6px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #FFE353;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #B1832F;
}


/* ====== UTILITY CLASSES ====== */
.neon {
  color: #FFE353;
  text-shadow: 0 0 8px #FFE35399, 0 0 2px #B1832F30;
}
.muted {
  color: #B1832F99;
}

/* ====== MEDIA QUERIES ====== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 18px;
  }
  .features ul, .features-benefits ul {
    gap: 14px;
  }
  .footer-menu {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu, .social-links {
    flex-direction: column;
    gap: 6px;
  }
  .card-container, .content-grid, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section, .about, .legal, .cta {
    padding: 25px 7vw;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .features ul, .features-benefits ul, .about ul {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .section, .about, .legal, .cta {
    padding: 12px 3vw;
  }
  .hero h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .features ul li, .feature-item, .services-overview ul li {
    padding: 16px 8px 16px 13px;
    min-width: unset;
  }
  .testimonial-card {
    padding: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 15px 8px 20px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px;
  }
  .cookie-modal {
    padding: 25px 5vw;
    min-width: unset;
  }
}

/* ====== MICRO-ANIMATIONS ====== */
@keyframes slideUp {
  from { transform: translateY(160px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInPop {
  0% { opacity: 0; transform: scale(0.95); }
  80% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

/* ================= EXTRAS & FOCUS STYLES ================= */
:focus {
  outline: 2px solid #FFE35344;
  outline-offset: 1px;
}
::-webkit-input-placeholder { color: #bbb; opacity: 1; }
::-moz-placeholder { color: #bbb; opacity: 1; }
:-ms-input-placeholder { color: #bbb; opacity: 1; }
::placeholder { color: #bbb; opacity: 1; }

/* =============== PRINT =============== */
@media print {
  * { background: #fff !important; color: #222 !important; box-shadow: none !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
}
