/* ===========================================================
   FAEHRKUNST NÜRNBERG CORPORATE STYLE CSS
   --------------------------------------------------------
   - Professional blue/gray palette with gold accent
   - Responsive flexbox layouts ONLY
   - Corporate business fonts ('Spectral' for display, 'Roboto' for body)
   - Modern visual hierarchy, clean cards & lists, interactive buttons
   - Mobile burger menu & full cookie consent components
   =========================================================== */

/* RESET & BASIC NORMALIZATION */
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%;
  vertical-align: baseline;
  font-family: inherit;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F4EF;
  color: #223245;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  border-radius: 0;
}
a {
  color: #204060;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D0A74A;
}

/* BASE BRAND COLORS */
:root {
  --primary: #204060;
  --primary-rgb: 32,64,96;
  --secondary: #D0A74A;
  --accent: #F6F4EF;
  --gray-100: #F6F4EF;
  --gray-200: #E4E6EB;
  --gray-300: #CAD2DC;
  --gray-900: #223245;
  --text: #1B2632;
  --shadow: rgba(32,64,96,0.07);
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@600;700&family=Roboto:ital,wght@0,400;0,500;1,400&display=swap');

h1, .h1 {
  font-family: 'Spectral', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Spectral', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Spectral', serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Spectral', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}
p, ul, ol, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
blockquote {
  border-left: 3.5px solid var(--secondary);
  padding-left: 14px;
  font-style: italic;
  margin: 12px 0 16px 0;
  color: #3e4c57;
  background: #F6F4EF;
}
.subheadline {
  color: #566E8A;
  font-size: 1.18rem;
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
}

/* BUTTONS */
.btn-primary, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 0.75em 2.1em;
  font-size: 1.06rem;
  font-family: 'Spectral', serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 1.5px 7px var(--shadow);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus, .btn:hover, .btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(32,64,96,0.12);
}

/* LAYOUT CONTAINERS & SPACING (MANDATORY PATTERNS) */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px;
  flex: 1 0 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  background: #F6F4EF;
  color: #223245;
  border-radius: 7px;
  box-shadow: 0 2.5px 13px 0 var(--shadow);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* FLEX-ONLY GRIDS/SPECIAL LISTS BY PAGE CLASSES (NO GRID!) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-grid > li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 11px var(--shadow);
  padding: 24px 20px 22px 20px;
  min-width: 220px;
  max-width: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.22s;
}
.feature-grid > li:hover,
.feature-grid > li:focus {
  box-shadow: 0 6px 20px rgba(32,64,96,0.13);
}
.person-grid, .monument-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 20px;
}
.person-grid > li,
.monument-grid > li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px 18px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.person-grid > li blockquote {
  margin-top: 6px;
  background: #f8f8fa;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 3px 17px -12px rgba(32,64,96,0.13);
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
}
header > img {
  margin: 16px 0 10px 0;
  height: 48px;
  width: auto;
  align-self: start;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin: 0 0 10px 0;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 7px 13px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* Burger & MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  position: absolute;
  right: 20px;
  top: 24px;
  cursor: pointer;
  z-index: 22;
  line-height: 1;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #204060ee;
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.68, 0, 0.32, 1);
  box-shadow: -2px 0 26px 0 rgba(32,64,96,0.18);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  top: 22px; right: 22px;
  z-index: 999;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 90px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-family: 'Spectral', serif;
  padding: 14px 0 14px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  width: 100%;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(80deg, rgba(32,64,96,0.03) 54%, #d5dbe6 100%);
  padding: 74px 0 54px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 680px;
}
.hero .btn-primary {
  margin-top: 16px;
}

/* ABOUT/CONTACT SECTION AND GENERIC WRAPPERS */
.about, .contact, .footer {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 15px var(--shadow);
  margin-top: 36px;
  margin-bottom: 40px;
}
.about .content-wrapper,
.contact .content-wrapper,
.footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 14px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 9px;
  font-size: 1rem;
}

/* SERVICES-LIKE ACTION SECTIONS */
.services {
  background: #20406008;
  border-radius: 11px;
  box-shadow: 0 1.5px 11px var(--shadow);
  margin: 35px 0 45px 0;
}
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 18px;
}
.services ul {  
  margin: 0 0 12px 0;
}
.services a.btn-primary {
  margin-top: 6px;
}

/* TESTIMONIALS - STRONG CONTRAST */
.testimonials {
  background: #F6F4EF;
  border-radius: 12px;
  margin-top: 35px;
  margin-bottom: 60px;
  box-shadow: 0 2.5px 16px 0 var(--shadow);
  padding-bottom: 36px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: #fff;
  border-left: 5px solid var(--secondary);
  color: var(--text);
  font-size: 1.06rem;
  box-shadow: 0 2.5px 13px 0 var(--shadow);
  min-width: 180px;
  max-width: 680px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 18px;
}
.testimonial-card span {
  margin-left: auto;
  font-size: 0.98rem;
  color: #566E8A;
}

/* FOOTER */
footer {
  background: #223245;
  color: #fff;
  margin-top: 60px;
  font-size: 1rem;
  padding: 36px 0 25px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 14px;
  width: 100%;
}
.footer-nav a {
  color: #D0A74A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 10px;
}
.footer-contact img {
  height: 40px;
  margin-bottom: 13px;
}
.footer-contact a {
  color: #F6F4EF;
  transition: color 0.18s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #D0A74A;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1033;
  background: #223245;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px 24px;
  box-shadow: 0 -2px 18px 0 rgba(32,64,96,0.18);
  gap: 18px;
  min-height: 60px;
  font-size: 1rem;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  animation: cookiebanner-in 0.55s 0.17s ease;
}
@keyframes cookiebanner-in {
  from {transform: translateY(100%); opacity: 0;}
  to   {transform: translateY(0);   opacity: 1;}
}
.cookie-banner .cookie-text {
  flex: 1 1 60%;
  min-width: 160px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Spectral', serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  padding: 10px 21px;
  margin-left: 4px;
  margin-right: 4px;
}
.cookie-banner .btn-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #fff;
  color: var(--primary);
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  color: var(--secondary);
  background: #E4E6EB;
}
.cookie-banner .btn-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 64, 96, 0.23);
  z-index: 1200;
  transition: opacity 0.28s;
  opacity: 0;
}
.cookie-modal-backdrop.open {
  display: block;
  opacity: 1;
}
.cookie-modal {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--primary);
  border-radius: 13px;
  box-shadow: 0 6px 38px 0 rgba(32,64,96,0.17);
  max-width: 375px;
  width: 96vw;
  min-height: 280px;
  padding: 40px 30px 24px 30px;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.3s cubic-bezier(.38,1.1,.27,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.37rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px; right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--secondary);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-size: 1rem;
}
.cookie-modal .cookie-label {
  font-weight: 500;
  margin-right: 8px;
}
.cookie-modal .cookie-toggle {
  accent-color: var(--primary);
  width: 1.3em;
  height: 1.3em;
}
.cookie-modal .cookie-disabled {
  color: #ccc !important;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal button {
  font-size: 1rem;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  padding: 10px 22px;
}
.cookie-modal .btn-modal-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .btn-modal-accept:hover, .cookie-modal .btn-modal-accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .btn-modal-reject {
  background: #fff;
  color: var(--primary);
}
.cookie-modal .btn-modal-reject:hover, .cookie-modal .btn-modal-reject:focus {
  background: #eee;
  color: var(--secondary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .feature-grid > li, .person-grid > li, .monument-grid > li {
    min-width: 160px;
    max-width: 95vw;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.07rem; }
  h2, .h2 { font-size: 1.33rem; }
  .subheadline { font-size: 1.04rem; }
  .container { max-width: 100vw; }
  /* Main nav hide, burger menu show */
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0;
    min-height: 56px;
  }
  header > img {
    height: 38px;
    margin-left: 17px;
    margin-right: auto;
    margin-top: 8px;
  }
  .hero {
    padding: 38px 0 22px 0;
  }
  .card-container, .feature-grid, .person-grid, .monument-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li, .person-grid > li, .monument-grid > li {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
  }
  .testimonials .content-wrapper {
    gap: 17px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 18px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact img {
    margin-bottom: 7px;
    height: 33px;
  }
  .section { padding: 23px 5px; margin-bottom: 35px; }
  .about, .contact, .footer { padding: 0; margin: 23px 0 28px 0; }
  .about .content-wrapper, .contact .content-wrapper, .footer .content-wrapper {
    padding: 8px 4px 15px 6px;
    gap: 14px;
  }
  .testimonials { padding-bottom: 10px; border-radius: 8px; }
}
@media (max-width: 530px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 11px 9px;
    font-size: 0.96rem;
    gap: 6px;
  }
  .cookie-banner .cookie-text {
    min-width: 95px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .footer-contact p {
    font-size: 0.94rem;
  }
}

/* MICRO-INTERACTIONS & EFFECTS */
.card, .feature-grid > li, .person-grid > li, .monument-grid > li, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.17s;
}
.card:hover, .feature-grid > li:hover, .person-grid > li:hover, .monument-grid > li:hover {
  box-shadow: 0 8px 32px 0 rgba(32,64,96,0.15);
  border-color: var(--secondary);
}
.btn-primary:active, .btn:active {
  background: #12273a;
  color: #d9e3ea;
}
.mobile-menu {
  will-change: transform;
}

/* FOCUS STATES FOR ACCESSIBILITY */
a:focus, button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ACCESSIBLE HIDE CLASS */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ADDITIONAL SPACING/PADDING FOR VISUAL HIERARCHY */
section + section {
  margin-top: 33px;
}
ul, ol {
  margin-bottom: 17px;
}
ul ul, ol ol {
  margin-bottom: 0;
}

/* ICONS IN TEXT */
.text-section img[alt$='-Icon'],
.text-section img[alt^='Telefon'],
.text-section img[alt^='E-Mail'],
.text-section img[alt^='Uhr'] {
  display: inline-block;
  width: 1.11em;
  height: 1.11em;
  vertical-align: text-bottom;
  margin-right: 3px;
  margin-left: 1px;
}

/* REMOVE EXCESSIVE CARD SHADOW ON LIGHT BACKGROUND SECTIONS */
.section .card, .section .feature-grid > li, .section .person-grid > li, .section .monument-grid > li {
  box-shadow: 0 2px 8px var(--shadow);
}

/* END OF FILE */
