/* ===================================================
   TYPOREISEN DEUTSCHLAND - VINTAGE_RETRO STYLE CSS
   Author: Professional Website Developer & UI Expert
   Brand Palette:
    - Primary: #1A2233 (Classic Ink)
    - Secondary: #EEC978 (Aged Paper Gold)
    - Accent: #F6F6F6 (Book Paper White)
   Fonts:
    - Display: 'Playfair Display', Georgia, serif
    - Body: 'Roboto', Arial, sans-serif
   ================= CSS RESET & NORMALIZE
  =================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F6F6;
  color: #2b2b2b;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A2233;
  text-decoration: none;
  transition: color 0.2s;
  font-family: inherit;
}
a:hover, a:focus {
  color: #EEC978;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #EEC978;
  color: #1A2233;
  font-weight: bold;
  font-size: 16px;
}
td {
  background: #fff;
  border-bottom: 1px solid #e4d295;
  font-size: 15px;
}

/* ==================== BRAND TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, .logo 
{
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1A2233;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 1px 1px 0 #e4d29520;
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: #7e5538;
  text-shadow: 1px 1px 0 #eec97833;
}
h3 {
  font-size: 1.26rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem; }

p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2b2b2b;
  margin-bottom: 8px;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  background: #FFF9E7;
  color: #7e5538;
  border-left: 5px solid #EEC978;
  padding: 16px 24px;
  margin: 20px 0 24px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 #eec97828;
  font-size: 1.08rem;
}

/* ==================== SPACING & FLEX LAYOUTS ==================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 #29291911;
  padding: 24px 22px 20px 22px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #1a223333;
}
.content-grid, .feature-grid, .service-list {
  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 {
  background: #FFF9E7;
  border: 2px solid #EEC978;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 #eec97830;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 550px;
}
.testimonial-name {
  font-size: 0.96rem;
  color: #7e5538;
  font-family: 'Playfair Display', Georgia, serif;
  margin-left: 15px;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==================== NAVIGATION HEADER ==================== */
header {
  background: #FFF9E7;
  border-bottom: 3px solid #EEC978;
  box-shadow: 0 2px 12px 0 #eec97822;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.logo-link img {
  height: 45px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-left: 40px;
}
.main-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #1A2233;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #eec97822;
  color: #7e5538;
}
.cta.primary {
  background: #EEC978;
  color: #1A2233;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 28px;
  border-radius: 30px;
  box-shadow: 0 1px 8px 0 #eec97833;
  margin-left: 30px;
  letter-spacing: 0.03em;
  border: none;
  transition: box-shadow 0.18s, color 0.18s, background 0.2s;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1A2233;
  color: #EEC978;
  box-shadow: 0 8px 18px 0 #c2983a40;
}
.mobile-menu-toggle {
  display: none;
  background: #EEC978;
  color: #1A2233;
  font-size: 2rem;
  border-radius: 11px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  margin-left: 20px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1A2233;
  color: #EEC978;
  box-shadow: 0 4px 12px #1a223352;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F6F6F6;
  box-shadow: 0 6px 44px 0 #1a223378;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 24px 24px;
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(0.86,0,0.07,1);
  overflow-y: auto;
  height: 100vh;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: #EEC978;
  color: #1A2233;
  border-radius: 9px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1A2233;
  color: #EEC978;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.24rem;
  font-weight: 600;
  color: #1A2233;
  padding: 12px 8px;
  border-radius: 7px;
  transition: background 0.22s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EEC978;
  color: #1A2233;
}

/* =========== HERO =============== */
.hero {
  padding: 56px 0 46px 0;
  background: repeating-linear-gradient(135deg, #FFF9E7, #FFF9E7 50px, #F6F6F6 50px, #F6F6F6 120px);
  border-bottom: 2px dashed #EEC978;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #1A2233;
}
.hero p {
  color: #7e5538;
  font-size: 1.15rem;
}
.hero .cta.primary {
  margin-top: 18px;
  font-size: 1.08rem;
}

/* ================ FEATURES, SERVICES, CARDS ================ */
.features {
  background: #F6F6F6;
  border-bottom: 1.5px dotted #EEC978;
}
.features .feature-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin-top: 10px;
}
.features .feature-grid li, .features .feature-grid > div, .features ul > li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 #eec97828;
  padding: 22px 18px 20px 18px;
  min-width: 230px;
  max-width: 345px;
  flex: 1 1 235px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border: 1.4px solid #eec97876;
  transition: box-shadow 0.18s, border 0.2s;
}
.features .feature-grid li:hover, .features .feature-grid > div:hover {
  box-shadow: 0 6px 24px 0 #EEC97866;
  border: 2.1px solid #EEC978;
}
.features img, .services img, .about img, .service-card img {
  height: 38px;
  width: 38px;
  margin-bottom: 5px;
  filter: sepia(0.14) brightness(0.96) contrast(1.12);
}
.service-list {
  gap: 24px;
  margin: 28px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.service-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 #eec97822;
  border: 1.4px solid #eec97876;
  min-width: 215px;
  max-width: 370px;
  padding: 22px 20px 19px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, border 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 22px 0 #EEC97866;
  border: 2.1px solid #1A2233;
}
.price {
  font-family: 'Playfair Display', Georgia, serif;
  color: #7e5538;
  font-weight: 900;
  font-size: 1.06rem;
  background: #FFF9E7;
  border-radius: 10px;
  padding: 4px 12px;
  letter-spacing: 0.01em;
  margin-top: 5px;
}
.pricing-table {
  margin-top: 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #eec97833;
  overflow: hidden;
  background: #FFF9E7;
  border: 1.2px dashed #EEC978;
  width: 100%;
}
.pricing-table table, table.pricing-table {
  background: none;
}

/* ================ ABOUT SECTION ================ */
.about {
  background: #fff;
  border-bottom: 1.5px dotted #EEC978;
}
.about .content-wrapper {
  gap: 12px;
}
.about ul {
  margin-left: 14px;
  margin-bottom: 8px;
}
.about ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #7e5538;
  font-size: 1.01rem;
}
.about ul li:before {
  content: '\2605';
  color: #EEC978;
  position: absolute;
  left: 0; top: 2px;
  font-size: 1.04em;
}
.contact-details > li {
  margin-bottom: 9px;
  color: #1A2233;
}

/* ================ TESTIMONIALS ================ */
.testimonials {
  background: #fff6f0;
  border-bottom: 1.5px dotted #EEC978;
}
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}
.testimonial-card p {
  color: #1A2233;
  font-size: 1.04rem;
}

/* ================ FOOTER STYLES ================ */
footer {
  background: #1A2233;
  color: #EEC978;
  padding: 0 0 0 0;
  margin-top: 60px;
  border-top: 3px solid #EEC978;
}
footer .container {
  padding: 0 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 0 12px 0;
}
.footer-logo img {
  height: 52px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #EEC978;
  font-size: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FFF9E7;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #e6e2c9;
  font-size: 0.96rem;
  margin-bottom: 6px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  filter: grayscale(0.2) contrast(1.1) brightness(1.15);
  transition: filter 0.16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
}
.footer-bottom {
  border-top: 1px solid #EEC97844;
  color: #EEC978;
  text-align: center;
  font-size: 0.97rem;
  padding: 10px 0 15px 0;
  letter-spacing: 0.01em;
}

/* ================ COOKIE CONSENT BANNER & MODAL ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9910;
  background: #1A2233;
  color: #EEC978;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  box-shadow: 0 -4px 44px #332a20a5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  gap: 24px;
  transition: transform 0.33s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1;
  margin-right: 20px;
  color: #EEC978;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .btn {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: #EEC978;
  color: #1A2233;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: #FFF9E7;
  color: #7e5538;
  box-shadow: 0 2px 10px #eec9784a;
}
.cookie-banner .btn.settings {
  background: #EEC97822;
  color: #EEC978;
  border: 1.2px solid #EEC978;
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: #EEC978;
  color: #1A2233;
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #FFF9E7;
  color: #1A2233;
  border-radius: 20px;
  box-shadow: 0 10px 40px #1a223399;
  padding: 32px 24px;
  z-index: 99999;
  min-width: 315px;
  max-width: 94vw;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalFadeIn 0.37s;
}
@keyframes cookieModalFadeIn {
  0% { opacity:0; transform: translate(-50%,-60%) scale(.96); }
  100% { opacity:1; }
}
.cookie-modal.hide {
  display: none;
}
.cookie-modal h3 {
  color: #7e5538;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 38px; height: 22px;
}
.cookie-modal .switch input {display:none;}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EEC978;
  border-radius: 12px;
  transition: .2s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 3px #7e553845;
}
.cookie-modal .switch input:checked + .slider {
  background: #7e5538;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  margin-left: 0;
  gap: 13px;
}
.cookie-modal .btn {
  padding: 7px 21px;
  border-radius: 20px;
  font-size: 0.98rem;
}
.cookie-modal .btn.secondary {
  background: #1A2233;
  color: #EEC978;
}
.cookie-modal .btn.secondary:hover, .cookie-modal .btn.secondary:focus {
  background: #EEC978;
  color: #1A2233;
}
/* ================ RETRO DECORATIVE ELEMENTS ================ */
.features, .about, .services {
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" fill="%23EEC978" fill-opacity="0.17"/><circle cx="34" cy="34" r="3" fill="%237e5538" fill-opacity="0.21"/></svg>');
  background-repeat: repeat;
  background-size: 100px 100px;
  background-position: center 8px;
}

/* ================ RESPONSIVE DESIGN (MOBILE FIRST) ================ */

@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2.05rem;}
  h2 {font-size: 1.3rem;}
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 62px;
  }
  .main-nav {
    display: none !important;
  }
  .cta.primary {
    margin-left: 8px;
    font-size: 1rem;
    padding: 9px 18px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .section, section {
    margin-bottom: 30px;
    padding: 24px 8px;
  }
  .hero {
    padding: 38px 0 24px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .service-card, .features .feature-grid li, .features .feature-grid > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 19px 7px;
    width: 97vw;
    min-width: 0;
    max-width: 100vw;
  }
  .footer-social a img {
    width: 21px;
    height: 21px;
  }
}

/* ================ MICRO-INTERACTIONS ================ */
.card, .service-card, .features .feature-grid li, .features .feature-grid > div {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .service-card:hover, .features .feature-grid li:hover, .features .feature-grid > div:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 36px 0 #EEC97866;
}
.cta.primary, .cookie-banner .btn, .cookie-modal .btn {
  transition: background 0.19s, color 0.16s, box-shadow 0.18s;
}

/* ======= SPECIAL CLASSES (FACT ICONS, SAMPLES, ETC) ====== */
.fact-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
}
.fact-icons img {
  width: 32px;height: 32px;
}
.sample-excerpt {
  margin-top: 16px;
}

.event-calendar, .about ul, .features ul, .features .feature-grid, .features .content-wrapper > ul {
  margin-bottom: 0;
}

/* ======= ACCESSIBILITY FOCUS OUTLINE ====== */
a:focus, button:focus, .cta:focus, .btn:focus {
  outline: 2.2px dotted #EEC978;
  outline-offset: 2.5px;
}

/* ================ PRINT FRIENDLY ================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {display: none !important;}
  .container, body, .section {
    padding: 0 !important; margin: 0 !important;
  }
}

/* ================ Z-INDEX SAFEGUARDS ================ */
header {z-index: 20; position: relative;}
footer {z-index: 10; position: relative;}

/*
All flex containers have sufficient gap, flex-wrap: wrap, and spacing between them.
No absolute for content cards, only minor decorative aboves
NO grid or CSS column properties used.
*/
