/* ====================================================== */
/* GenussReisen | Industrial Modern UI - style.css        */
/* ====================================================== */

/* 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  background: #191C1F;
  color: #F4E7D0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #F4E7D0;
  text-decoration: none;
  transition: color .2s; 
}
a:focus, a:hover {
  color: #FFDDAA;
  outline: none;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 12px;
}

strong {
  font-weight: bold;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #F4E7D0;
  letter-spacing: .5px;
  margin-bottom: 16px;
  font-weight: 700;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  border-left: 4px solid #672F31;
  padding-left: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #E3D3CF;
}

.lead {
  font-size: 1.15rem;
  color: #FFDDAA;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}

.text-section p, .text-section li {
  color: #E6E5E1;
  font-size: 1.05rem;
}

/* ============================
   BRAND COLORS & EFFECTS
   ============================ */
:root {
  --clr-primary: #672F31;
  --clr-primary-rgb: 103,47,49;
  --clr-secondary: #F4E7D0;
  --clr-accent: #126C5D;
  --clr-dark: #191C1F;
  --clr-bg-card: #26272A;
  --clr-metallic: #A6A7AA;
  --clr-btn-shadow: 0 1.5px 5px 0 rgba(24,22,20,0.24);
  --radius: 12px;
}

/* ============================
   LAYOUT BASICS & CONTAINERS
   ============================ */
.container {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
    justify-content: space-between;
  }
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-bg-card);
  border: 1.5px solid #383B40;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(24,22,20,0.10);
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}

.card:hover,
.card:focus-within {
  border-color: var(--clr-accent);
  box-shadow: 0 6px 26px 0 rgba(49,56,63,0.20);
  z-index: 2;
}

.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;
  padding: 20px;
  background: #FAFAFA;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 4px 14px 0 rgba(0,0,0,0.08);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 370px;
  border-left: 6px solid var(--clr-primary);
  transition: box-shadow .2s, transform .21s;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(245,201,164,0.12);
  transform: translateY(-4px) scale(1.016);
}

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

/* ==============================
   HEADER & NAVIGATION
   ============================== */
header {
  background: #191C1F;
  box-shadow: 0 2px 16px rgba(24,22,20,0.07);
  border-bottom: 1px solid #2D2322;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  z-index: 91;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #E2D8C4;
  padding: 7px 10px;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: background .20s, color .18s;
  font-weight: 500;
  position: relative;
}
header nav a.button-primary {
  background: var(--clr-primary);
  color: #F7F6F2;
  border-radius: 21px;
  padding: 8px 20px;
  margin-left: 8px;
  box-shadow: 0 1px 7px rgba(103,47,49,0.08);
  border: none;
  font-weight: 700;
}
header nav a.button-primary:hover {
  background: #80393C;
  color: #FFE7C4;
}
header nav a:hover,
header nav a:focus {
  background: rgba(103,47,49,0.14);
  color: #FFE7C4;
}

header .container > a img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0px 1px 2px #3b1819);
}

/* ======= MOBILE NAV BURGER ======= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--clr-secondary);
  cursor: pointer;
  margin-left: 10px;
  z-index: 102;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background .2s;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(76,52,53,0.21);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232326ee;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.77,.2,.22,1);
  box-shadow: 0 0 54px 0 rgba(38,34,36,0.18);
  padding: 28px 30px 18px 30px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--clr-secondary);
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 3px;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(154, 87, 86, 0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #F4E7D0;
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 0;
  border-radius: 6px;
  transition: background .20s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav a:focus {
  background: var(--clr-primary);
  color: #FFDDAA;
}

@media (min-width: 1000px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none;
  }
}
@media (max-width: 999px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===============================
   SECTIONS, CARDS, LISTS
   =============================== */
section {
  background: #211B1A;
  border-radius: 14px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px rgba(61,41,35,0.085);
  border: 1px solid #2d2322;
}
section h2 {
  margin-bottom: 28px;
}
.content-wrapper > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-wrapper > ul > li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.06rem;
  color: #F4E7D0;
}
.content-wrapper > ul > li img {
  height: 32px;
  width: 32px;
  margin-right: 9px;
  filter: drop-shadow(0 1px 2px #2f1817);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* Feature List (general) */
.feature-item img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/* ===============================
   BUTTONS / LINKS / INTERACTIONS
   =============================== */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  padding: 10px 30px;
  background: var(--clr-primary);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: var(--clr-btn-shadow);
  cursor: pointer;
  transition: background .22s, color .23s, box-shadow .22s, transform .14s;
  outline: none;
  margin-top: 4px;
}
.button-primary:hover,
.button-primary:focus {
  background: #80393C;
  color: #FFDDAA;
  box-shadow: 0 3px 17px 0 rgba(103,47,49,0.16);
  transform: translateY(-2px) scale(1.018);
}
.button-secondary {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  box-shadow: 0 2px 7px 0 rgba(42,108,85,0.14);
}

/* =========================
   FOOTER DESIGN
   ========================= */
footer {
  background: #151618;
  color: #DAC3B1;
  padding: 42px 0 0 0;
  border-top: 2px solid #3C3435;
  margin-top: 50px;
}
footer .container {
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #DAC3B1;
  font-size: .98rem;
  padding: 2px 2px;
  transition: color .17s;
  opacity: .90;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--clr-accent);
}
footer img {
  width: 44px;
  filter: grayscale(14%) brightness(0.94) drop-shadow(0 1px 2px #3c3435);
}
footer .legal-bar {
  border-top: 1.5px solid #2d2322;
  padding: 16px 0 10px 0;
  display: flex;
  justify-content: center;
  color: #8F8C8B;
}
footer small {
  font-size: 0.96rem;
  letter-spacing: .02em;
}

/* =======================================
   RESPONSIVE FLEXBOX LAYOUTS (ESSENTIALS)
   ======================================= */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column!important;
    gap: 18px!important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px!important;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
  }
  section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .card {
    min-width: unset;
    max-width: 100%;
  }
}

/* =========================
   SPACING AND HIERARCHY
   ========================= */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.content-grid, .card-container {
  gap: 24px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  margin-bottom: 20px;
}
.feature-item {
  gap: 15px;
}

/* Always at least 20px vertical margin for sectioned blocks */
section, .card, .testimonial-card {
  margin-bottom: 20px;
}

/* =============================
   MICRO-INTERACTIONS & EFFECTS
   ============================= */
.card, .testimonial-card, .button-primary,
.button-secondary {
  transition: box-shadow .19s, background .18s, border .20s, color .17s, transform .17s;
}

/* =======================
   FORM ELEMENTS (basic)
   ======================= */
input, textarea, select {
  background: #282324;
  color: #FFDDAA;
  border: 1.5px solid #3F1B1D;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--clr-accent);
  background: #23201F;
}
label {
  color: #FFDDAA;
  font-weight: 500;
}

/* =======================================================
     COOKIE CONSENT BANNER & MODAL
   ======================================================= */
#cookie-consent-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #252121;
  color: #FFDDAA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 16px rgba(103,47,49,0.09);
  padding: 22px 30px 22px 24px;
  z-index: 3000;
  transition: transform .34s, opacity .24s;
}
#cookie-consent-banner.closed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#cookie-consent-banner p {
  flex: 2;
  color: #FFDDAA;
  margin-right: 14px;
}

.cookie-btn-group {
  display: flex;
  gap: 13px;
  align-items: center;
}
#cookie-consent-banner button {
  border-radius: 21px;
  font-weight: 700;
  padding: 8px 18px;
  font-size: 1rem;
  margin-right: 4px;
  margin-left: 0;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  outline: none;
  transition: background .2s, color .18s;
  cursor: pointer;
}
#cookie-consent-banner .button-reject {
  background: #fff;
  color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
}
#cookie-consent-banner .button-reject:hover {
  background: rgb(255,237,216);
  color: #80393C;
}
#cookie-consent-banner .button-settings {
  background: var(--clr-accent);
  color: #ffe3d3;
  border: none;
}
#cookie-consent-banner .button-settings:hover {
  background: #0b4237;
  color: #FFDDAA;
}
#cookie-consent-banner button:hover,
#cookie-consent-banner button:focus {
  background: #80393C;
  color: #ffe5bb;
}

/* Cookie Preference Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,33,32,0.87);
  z-index: 3100;
  align-items: center;
  justify-content: center;
  transition: opacity .27s;
}
#cookie-modal.active {
  display: flex;
}
.cookie-modal-container {
  background: #221e1c;
  color: #FFDDAA;
  border-radius: 18px;
  box-shadow: 0 11px 30px rgba(88,43,44,0.17);
  padding: 34px 30px;
  max-width: 410px;
  width:90vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalFadeIn .36s cubic-bezier(.4,1.3,.8,1) 1;
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: scale(.91); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-container h3 {
  margin-bottom: 9px;
  color: #FFDDAA;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #ffd8c4;
  padding: 8px 0 8px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--clr-accent);
}
.cookie-category.essential label {
  font-weight: 700;
  color: #FFE7B4;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  padding: 8px 19px;
  font-size: 1rem;
  border-radius: 21px;
  border: none;
  font-weight: 700;
  color: #fff;
  background: var(--clr-primary);
  transition: background .18s, color .17s;
}
.cookie-modal-actions .button-cancel {
  background: #fff;
  color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
}
.cookie-modal-actions button:hover {
  background: var(--clr-accent);
  color: #ffe5bb;
}
.cookie-modal-actions .button-cancel:hover {
  background: rgb(255,237,216);
  color: #80393C;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 16px;
  background: none;
  border: none;
  color: #fff5ea;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal-close:hover {
  background: #332727;
  color: #FFDDAA;
}

@media (max-width: 600px) {
  #cookie-consent-banner, .cookie-modal-container {
    padding: 16px 9px;
    font-size: 0.95rem;
  }
  .cookie-btn-group, .cookie-modal-actions {
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
  }
}

/* =======================
   SCROLLBAR & SELECTION
   ======================= */
::-webkit-scrollbar {
  width: 8px;
  background: #231a19;
}
::-webkit-scrollbar-thumb {
  background: #3c2324;
  border-radius: 5px;
}
::selection {
  background: #FEDDEC;
  color: #511B1B;
}

/* =========================
   MISC
   ========================= */
hr {
  border: 0; border-top: 1px solid #3b2323; margin: 28px 0;
}

/* =========================
   ACCESSIBILITY
   ========================= */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

/* ======== Hide visually, show for screen readers ====== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  padding: 0;
}

/* CUSTOM FONT FACE (for legacy browsers) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), local('PlayfairDisplay'), url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFiD-vYSZviVYUb_rj3ij__anPXDT0.woff2') format('woff2');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
  unicode-range: U+000-5FF;
}

/* =========== End of Style =========== */
