/* ===================================================
   FROZEN CREST BEAUTY – LUXURY PREMIUM CSS THEME
   Responsive, modern, luxury-pedigree flexbox stylesheet
   =================================================== */

/* --- CSS RESET & NORMALIZE (ESSENTIALS) --- */
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,
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;
}
body {
  line-height: 1.5;
  background: #F4F6F8;
  color: #222;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
button {
  font-family: inherit;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* ------- FONTS ------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F4F6F8;
  color: #283040;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #284157;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
@media (max-width: 600px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
}

p, li, address, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #283040;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: #284157;
}

/* --------- BRAND COLORS AND LUXURY ACCENTS --------- */
:root {
  --brand-primary: #284157;
  --brand-secondary: #80A6B4;
  --brand-accent: #F4F6F8;
  --gold: #BA9A5A;
  --almost-black: #1A232E;
  --white: #fff;
  --grey-light: #E9EEF2;
  --grey-dark: #374151;
  --shadow-card: 0 2px 20px 0 rgba(40,65,87,0.10);
  --shadow-hover: 0 10px 32px 0 rgba(186,154,90,0.13), 0 4px 12px 0 rgba(44,58,73,0.13);
  --radius-xl: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --transition: 0.25s cubic-bezier(.5,.1,.2,1.0);
}

/* ------ SECTION LAYOUTS & CONTAINERS ------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

@media (max-width: 992px) {
  .container { padding: 0 12px; }
  .section { padding: 28px 10px; margin-bottom: 38px; }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 600px) {
  .section { padding: 16px 2px; margin-bottom: 30px; }
  .container { padding: 0 2px; }
}

/* FLEX PATTERNS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 270px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.025);
  border-color: var(--gold);
}
.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 28px;
  background: var(--grey-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  min-width: 260px;
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* -------------- HEADER & MAIN NAVIGATION ------------- */
header {
  background: var(--white);
  box-shadow: 0 1px 8px #0001;
  position: relative;
  z-index: 111;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.main-nav > a img {
  height: 42px;
  min-width: 110px;
  margin-right: 16px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  color: var(--brand-primary);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--gold);
  border-color: var(--gold);
}
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  background: var(--brand-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 11px 28px;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 12px #28304025;
  transition: background 0.2s, color 0.2s, filter 0.2s, box-shadow 0.2s;
  letter-spacing: .04em;
  position: relative;
  text-shadow: 0 1px 1px #0001;
}
.cta-primary::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 4px; left: 15px; right: 15px;
  height: 3px;
  border-radius: 3px;
  opacity: 0.12;
  background: var(--gold);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--gold);
  color: var(--brand-primary);
  filter: brightness(1.05);
  box-shadow: 0 6px 22px 0 rgba(186,154,90,0.20);
}
.cta-secondary {
  display: inline-block;
  background: none;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 22px;
  margin-left: 9px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-primary);
  color: var(--gold);
  border-color: var(--gold);
}

/* ------------- MOBILE NAVIGATION (BURGER MENU) ------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 30px;
  line-height: 1;
  background: var(--brand-primary);
  color: var(--gold);
  border-radius: 50%;
  padding: 4px 10px 7px 10px;
  z-index: 200;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 8px #2221;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active {
  background: var(--gold);
  color: var(--brand-primary);
}

/* Hide desktop nav on mobile */
@media (max-width: 992px) {
  .main-nav ul, .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,65,87,0.98);
  z-index: 1200;
  padding-top: 60px;
  transform: translateX(-105%);
  transition: transform 0.35s var(--transition);
  box-shadow: 2px 0 26px #1A232E70;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 32px;
  color: var(--gold);
  background: none;
  border: none;
  padding: 12px 16px;
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-primary);
  border-radius: 50%;
  z-index: 1300;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: var(--gold);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 38px;
  width: 70vw;
  max-width: 330px;
}
.mobile-nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  padding: 13px 0 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.24s, border-color 0.24s;
  letter-spacing: 0.04em;
  border-radius: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--white);
  border-bottom: 2px solid var(--white);
  background: #BA9A5A22;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* -------- HERO & SECTION HEADINGS ------- */
section .container:first-child h1,
section h1 {
  font-size: 32px;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  section .container:first-child h1,
  section h1 {
    font-size: 24px;
    margin-bottom: 11px;
  }
}

.section h2 {
  font-size: 26px;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 9px;
}

.section h3 {
  color: var(--brand-primary);
  font-size: 19px;
  font-weight: 700;
}

/* ------ Feature Icons ------- */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 18px 0 10px 0;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
}
.feature-icons img {
  width: 28px;
  height: 28px;
  display: block;
  filter: drop-shadow(1px 1px 2px #eee) brightness(1.09);
}
@media (max-width:620px) {
  .feature-icons { gap: 8px; }
  .feature-icons span { font-size: 14px; padding: 3px 8px; }
  .feature-icons img { width: 20px; height: 20px; }
}

/* -------- LIST & ICON LISTS -------- */
ul {
  padding-left: 0;
  margin-bottom: 12px;
}
ul li {
  position: relative;
  padding-left: 27px;
  font-size: 16px;
  margin-bottom: 8px;
  color: #374151;
  line-height: 1.6;
}
ul li:before {
  content: "\2022";
  color: var(--gold);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 1px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding-left: 0;
}
.icon-list li img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(1px 1px 2px #eee) brightness(1.09);
}

/* ---- TEXT BLOCKS & HELPER CLASSES ---- */
.text-section {
  margin-bottom: 18px;
}

.text-section strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}

/* ------ TESTIMONIALS & CARD DESIGN ------- */
.testimonial-card {
  background: #FAFAFB;
  color: #23292B;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  filter: brightness(1.010);
}
.testimonial-card p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  color: #374151;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  color: var(--brand-primary);
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

/* ------- FOOTER STYLES --------- */
footer {
  background: var(--brand-primary);
  color: var(--white);
  padding: 34px 0 12px 0;
  position: relative;
  width: 100%;
  font-size: 16px;
}
footer .content-wrapper {
  gap: 7px;
  color: var(--white);
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--gold);
  font-size: 15px;
  transition: color 0.19s;
  text-decoration: underline;
  padding: 2px 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--white);
  background: #BA9A5A33;
}
footer address, footer span {
  font-size: 14px;
  color: var(--accent);
}

/* ----------- SMALL BUTTONS ------------ */
button, .button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: 0;
  padding: 10px 18px;
  background: var(--brand-secondary);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px #80A6B450;
  transition: background .2s, color .2s;
}
button:hover, .button:hover, input[type="submit"]:hover {
  background: var(--gold);
  color: var(--brand-primary);
}

/* --------- SERVICE CARDS (LEISTUNGEN) -------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.service-cards .text-section {
  flex: 1 1 250px;
  min-width: 250px;
  background: var(--grey-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 16px 18px;
  margin-bottom: 10px;
  border-left: 4px solid var(--gold);
  transition: box-shadow .23s, transform .2s;
}
.service-cards .text-section h2 {
  font-size: 18px;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.service-cards .text-section strong {
  color: var(--gold);
  font-weight: 700;
  margin-top: 6px;
  font-size: 15px;
  display: inline-block;
}
.service-cards .text-section:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 800px) {
  .service-cards { flex-direction: column; gap: 10px; }
  .service-cards .text-section { min-width: unset; }
}

/* -------------- COOKIE CONSENT BANNER + MODAL -------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--white);
  z-index: 2050;
  border-top: 4px solid var(--gold);
  box-shadow: 0 -2px 28px #1A232E17;
  display: flex;
  justify-content: center;
  padding: 20px 10px 18px 10px;
  align-items: center;
  gap: 24px;
  animation: cookieBannerIn .6s cubic-bezier(.78,.34,.17,1.2);
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--white);
  margin-right: 10px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius-sm);
  margin-right: 9px;
  margin-bottom: 0;
  padding: 9px 20px;
  border: 1.8px solid var(--gold);
  background: var(--gold);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 15px;
  transition: background .18s, color .18s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus { 
  background: var(--brand-primary);
  color: var(--gold);
}
.cookie-banner .cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--white);
  border-color: var(--gold);
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--gold);
  color: var(--brand-primary);
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2055;
  background: rgba(40,65,87,0.82);
  align-items: center;
  justify-content: center;
  animation: fadeIn .38s ease;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from {opacity: 0.0;} to {opacity: 1;}
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 400px;
  width: 95vw;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 18px 66px #80808015, 0 4px 12px #2222;
  z-index: 2060;
  animation: fadeIn .55s cubic-bezier(.64,.12,.18,1);
}
.cookie-modal h3 {
  color: var(--brand-primary);
  font-size: 20px;
  margin-bottom: 18px;
}
.cookie-modal ul {
  margin-bottom: 18px;
}
.cookie-modal li {
  color: #283040;
  font-size: 15px;
  margin-bottom: 11px;
  padding-left: 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--brand-primary);
  border-radius: 3px;
  border: 1.5px solid var(--brand-secondary);
  margin-right: 8px;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary);
  color: var(--white);
}
.cookie-modal .cookie-btn.accept {
  background: var(--gold);
  color: var(--brand-primary);
}
.cookie-modal .cookie-btn.reject {
  background: var(--brand-secondary);
  color: var(--white);
}
.cookie-modal .cookie-btn.settings {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
}
.cookie-modal .cookie-btn:hover {
  filter: brightness(1.06) contrast(1.1);
}
/* Modal close X */
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  color: var(--brand-primary);
  font-size: 29px;
  border-radius: 50%;
  padding: 3px 9px;
  border: 1.6px solid var(--brand-secondary);
  cursor: pointer;
  transition: background .13s, color .13s;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--gold);
  color: var(--white);
}

/* ------ FORMS (if present) ------ */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-secondary);
  padding: 10px 12px;
  background: var(--accent);
  outline: none;
  box-shadow: none;
  width: 100%;
  margin-bottom: 14px;
  transition: border 0.15s, box-shadow 0.15s;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 2px #BA9A5A22;
}

/* ------ ANIMATIONS / MICRO-INTERACTIONS ------ */
a, button, .cta-primary, .cta-secondary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .18s, color .18s, border .17s, box-shadow .18s, filter .18s;
}
.card, .testimonial-card, .service-cards .text-section {
  transition: box-shadow .22s, border-color .18s, transform .23s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-primary);
  filter: brightness(1.03);
}

/* ------ ACCESSIBILITY & COLOR CONTRAST ------ */
.testimonial-card p,
.testimonial-card span {
  color: #222;
  background: transparent;
}

/* ------ RESPONSIVE & MOBILE ADJUSTMENTS ------ */
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .main-nav { flex-direction: row; gap: 5px; padding: 12px 0; min-height: 70px; }
  .main-nav > a img { height: 31px; }
  .cta-primary, .cta-secondary { padding: 9px 14px; font-size: 15px; }
  .feature-item { gap: 8px; }
}
@media (max-width: 520px) {
  .footer-nav { flex-direction: column; gap: 7px; }
  .main-nav { flex-direction: column; gap: 8px; padding: 6px 0; }
  .main-nav > a img { min-width: 80px; }
}

/* --------------- UTILITIES ---------------- */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }

/* ------------- PRINT OPTIMIZATION -------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; color: #121212 !important; }
}
