/* VINTAGE RETRO CSS for Luminis Dom, FLEXBOX ONLY, no grid/columns, with mobile menu and cookie banner */

/* ===================== CSS RESET & BASE ===================== */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; border: 0; outline: none; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5EEE6;
  color: #392819;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #197D75; text-decoration: none; transition: color 0.20s; }
a:hover, a:focus { color: #E45447; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', 'Arial', sans-serif; font-weight: 700; letter-spacing: 0.03em; color: #392819; margin-bottom: 20px; }
h1 { font-size: 2.6rem; margin-bottom: 24px; text-shadow: 2px 2px 0 #EDD89A; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.30rem; margin-bottom: 16px; }

/* ===================== RETRO COLORS & FONTS ===================== */
:root {
  --retro-primary: #392819;         /* Vintage dark brown */
  --retro-secondary: #F5EEE6;      /* Vintage soft cream */
  --retro-accent: #E45447;         /* Retro brick red */
  --retro-yellow: #EDD89A;         /* Muted mustard */
  --retro-green: #197D75;          /* Deep teal-green */
  --retro-blue: #537188;           /* Washed denim */
  --retro-card-bg: #FFF8ED;
  --retro-shadow: rgba(60,32,16,0.08);
  --brand-primary: #1F3455;
  --brand-accent: #007C55;
  --brand-secondary: #F3F6FA;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body, input, textarea, select, button {
  font-family: var(--font-body);
}

/* ===================== CONTAINER & SECTION SPACING ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-secondary);
  border-radius: 12px;
  box-shadow: 0 6px 24px var(--retro-shadow);
}

/* Universal Pattern for card containers */
.card-container, .content-grid, .service-list, .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .testimonial-card, .product-list > div, .service-list > div {
  position: relative;
  margin-bottom: 20px;
  background: var(--retro-card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  border: 2px solid #EAD49C;
  padding: 24px 20px 20px 20px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .product-list > div:hover,
.service-list > div:hover {
  box-shadow: 0 8px 36px rgba(60,32,16,0.12);
  transform: translateY(-4px) scale(1.017);
  border-color: var(--retro-accent);
}

.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: 12px;
  padding: 20px;
  background: #FFF8ED;
  border-radius: 15px;
  border: 2px dashed var(--retro-yellow);
  margin-bottom: 20px;
  color: #26241c; /* readable on light bg */
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.content-wrapper {
  margin-bottom: 20px;
}

/* ===================== NAVIGATION ===================== */
header {
  background: var(--retro-yellow);
  border-bottom: 4px solid var(--retro-primary);
  box-shadow: 0 2px 18px var(--retro-shadow);
}
header .container {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.07rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--retro-primary);
  padding: 2px 10px;
  position: relative;
  font-weight: 500;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--retro-accent);
  transition: width 0.25s;
  position: absolute;
  left: 10px; bottom: 1px;
}
header nav a:hover:after, header nav a:focus:after { width: 60%; }
header nav a.active {
  color: var(--retro-accent);
}
.\32 fa-btn  { margin-right: 10px }

.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--retro-accent);
  color: #fff;
  padding: 13px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  text-shadow: 1px 1px 0 #8c392a;
  letter-spacing: 1px;
  margin-left: 30px;
  margin-top: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.20s, color 0.18s, border 0.15s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-primary);
  color: var(--retro-yellow);
  border: 2px solid var(--retro-accent);
  transform: translateY(-1.5px) scale(1.02);
  outline: none;
}

/* =========== MOBILE BURGER MENU =========== */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-yellow);
  border: 2px solid var(--retro-primary);
  color: var(--retro-primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1050;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(100,78,44,0.10);
  transition: background 0.19s, color 0.13s;
}
.mobile-menu-toggle:active {
  background: var(--retro-primary);
  color: var(--retro-yellow);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(241,229,204,0.97);
  box-shadow: 0 0 80px 20px rgba(60,32,16,0.19);
  transform: translateX(110vw);
  transition: transform 0.32s cubic-bezier(0.55, 0, 0.25, 1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  font-size: 2.2rem;
  color: var(--retro-accent);
  align-self: flex-end;
  margin: 24px 32px 0 0;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 56px 38px 38px 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.38rem;
  color: var(--retro-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  padding: 7px 8px;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s, transform 0.14s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--retro-accent);
  color: #fff;
  transform: translateX(5px);
}

/* Hide the desktop nav & show burger on mobile */
@media (max-width: 992px) {
  header .container nav, header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================== MAIN CONTENT STYLES ===================== */
section {
  margin-bottom: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 32px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 25px;
}
li {
  margin-bottom: 16px;
  font-size: 1.03rem;
  position: relative;
  line-height: 1.7;
  color: #463A2A;
}
ul li:before {
  content: '\25AA';
  color: var(--retro-accent);
  font-size: 1rem;
  margin-right: 12px;
  vertical-align: text-bottom;
  display: inline-block;
}
ol li { counter-increment: listcounter; }
ol li:before {
  content: counter(listcounter) '.';
  color: var(--retro-primary);
  margin-right: 9px;
  font-weight: 600;
  font-size: 1.01em;
}

/* ========== Service/Product Listings ========== */
.service-list, .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list > div, .product-list > div {
  min-width: 260px;
  flex: 1 1 272px;
  margin-bottom: 20px;
  background: #FFF8ED;
  border-radius: 13px;
  border: 2.5px solid #EAD49C;
  box-shadow: 0 3px 13px var(--retro-shadow);
  padding: 22px 20px 19px 20px;
  transition: box-shadow 0.2s, transform 0.18s, border 0.17s;
}
.service-list > div:hover, .product-list > div:hover {
  border-color: var(--retro-accent);
  transform: scale(1.024) translateY(-2px);
  box-shadow: 0 8px 22px rgba(60,32,16,0.14);
}
.service-list h3, .product-list h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  margin-bottom: 10px;
  color: var(--retro-primary);
}
.service-list span, .product-list span {
  display: inline-block;
  margin-top: 13px;
  font-size: 1.06em;
  color: var(--retro-accent);
  font-weight: 700;
  text-shadow: 0 1px 0 #EDD89A;
}
.product-list ul, .service-list ul {
  margin-bottom: 0;
}

/* ========== Testimonial Card ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF8ED;
  border-radius: 15px;
  border: 2px dashed var(--retro-yellow);
  margin-bottom: 20px;
  color: #26241c;
  font-style: italic;
  box-shadow: 0 2px 8px var(--retro-shadow);
}
.testimonial-card span {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-display);
  color: var(--retro-primary);
  font-style: normal;
  font-weight: 600;
  text-shadow: 0px 1px 0 #EAD49C;
}

/* ========== Feature/Item List ========== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== FAQ ========== */
dt {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 7px;
  font-size: 1.1em;
  color: var(--retro-primary);
}
dd {
  margin-bottom: 19px;
  margin-left: 10px;
}
dl {
  margin-bottom: 15px;
}

/* ========== Contact Details ========== */
.contact-details ul li {
  margin-bottom: 13px;
}

/* ========== Footer ========== */
footer {
  background: var(--retro-primary);
  color: #F3F6FA;
  padding: 46px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  min-height: 80px;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F3F6FA;
  font-weight: 500;
  letter-spacing: 1.3px;
  font-size: 1em;
  opacity: 0.88;
  position: relative;
  transition: color 0.14s, opacity 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--retro-yellow);
  opacity: 1;
}
footer .text-section {
  margin-left: auto;
  font-size: 1em;
  opacity: 0.98;
  letter-spacing: 0.03em;
}
footer img {
  width: 42px;
  min-width: 42px;
}

/* ===================== COOKIE CONSENT ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: #FDF2E6;
  border-top: 3px solid var(--retro-accent);
  box-shadow: 0 -3px 28px rgba(60,32,16,0.13);
  padding: 22px 16px 22px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 1.00em;
  font-family: var(--font-body);
  animation: cookieDrop 0.7s cubic-bezier(.51,1.8,.48,1) 1;
}
@keyframes cookieDrop {
  0% {transform: translateY(120%) scale(0.98); opacity: 0;}
  95% {transform: translateY(-2px) scale(1.02); opacity: .98;}
  100% {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-banner button {
  min-width: 120px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98em;
  padding: 10px 18px;
  border-radius: 22px;
  margin-right: 10px;
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.18s, border 0.19s, box-shadow 0.21s;
  box-shadow: 0 1px 4px rgba(192,160,76,0.04);
}
.cookie-banner .accept-all {
  background: var(--retro-accent);
  color: #fff;
  border: 2px solid var(--retro-accent);
}
.cookie-banner .accept-all:hover {
  background: #fff;
  color: var(--retro-accent);
}
.cookie-banner .settings {
  background: #fff8ed;
  color: var(--retro-primary);
  border: 2px solid var(--retro-primary);
}
.cookie-banner .settings:hover {
  background: var(--retro-accent);
  color: #fff;
  border-color: var(--retro-accent);
}
.cookie-banner .reject-all {
  background: #fff8ed;
  color: var(--retro-accent);
  border: 2px solid var(--retro-accent);
}
.cookie-banner .reject-all:hover {
  background: var(--retro-yellow);
}
.cookie-banner-hide { display: none !important; }

/* ========== Cookie Modal ========== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1350;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(60,32,16,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FFF8ED;
  border-radius: 18px;
  border: 2.5px solid var(--retro-yellow);
  max-width: 400px;
  width: 96vw;
  padding: 36px 20px 26px 20px;
  box-shadow: 0 8px 44px rgba(60,32,16,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: cookiePopup 0.43s;
  font-family: var(--font-body);
}
@keyframes cookiePopup {
  0% {transform: scale(0.7) translateY(60px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.29em;
  font-family: var(--font-display);
  margin-bottom: 18px;
  color: var(--retro-primary);
}
.cookie-modal .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.cookie-modal .category label {
  font-weight: 600;
  color: var(--retro-primary);
}
.cookie-modal .toggle {
  appearance: none;
  width: 36px;
  height: 18px;
  border-radius: 18px;
  background: #efd195;
  position: relative;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(60,32,16,0.11);
  transition: background 0.14s;
}
.cookie-modal .toggle:checked {
  background: var(--retro-accent);
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .toggle:checked:before {
  left: 19px;
}
.cookie-modal .modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px
}
.cookie-modal .modal-actions button {
  background: var(--retro-accent);
  color: #fff;
  font-family: var(--font-display);
  padding: 10px 22px;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 1px 8px rgba(192,160,76,0.07);
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .modal-actions button.cancel {
  background: #fff8ed;
  color: var(--retro-accent);
  border: 2px solid var(--retro-accent);
}
.cookie-modal .modal-actions button.cancel:hover, .cookie-modal .modal-actions button.cancel:focus {
  background: var(--retro-yellow);
  color: var(--retro-primary);
}
.cookie-modal .close-x {
  position: absolute;
  top: 12px; right: 24px;
  font-size: 1.48em;
  background: none;
  color: var(--retro-accent);
  border: none;
  cursor: pointer;
}
.cookie-modal .close-x:hover {
  color: var(--retro-primary);
}

/* ===================== UTILITY CLASSES ===================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-2 { margin-top: 13px; }
.mt-3 { margin-top: 23px; }
.mb-2 { margin-bottom: 13px; }
.mb-3 { margin-bottom: 23px; }

/* ===================== RETRO DECORATIVE ===================== */
.card::before, .service-list>div::before, .product-list>div::before {
  content: '';
  display: block;
  position: absolute;
  top: -13px; left: 22px;
  width: 46px; height: 10px;
  border-radius: 8px/5px;
  background: repeating-linear-gradient(90deg,#EDD89A,#EDD89A 14px,#FFF8ED 14px,#FFF8ED 22px);
  opacity: 0.31;
  pointer-events: none;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: -10px;
  color: var(--retro-yellow);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 3.7em;
  font-weight: 700;
  opacity: .17;
  z-index: 0;
  pointer-events: none;
}

/* ===================== TRANSITIONS/MICRO-INTERACTIONS ===================== */
button, .cta-btn, a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.12s, color 0.13s, box-shadow 0.16s, border 0.14s;
}
.card, .testimonial-card {
  transition: box-shadow 0.16s, border 0.15s, transform 0.15s;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .service-list, .product-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-list > div, .product-list > div {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }
  header .container {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0 7px 0;
    align-items: stretch;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card-container, .content-grid, .service-list, .product-list {
    flex-direction: column;
    gap: 13px;
  }
  .section {
    padding: 22px 7px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; margin-bottom: 18px; }
  h2 { font-size: 1.21rem; }
  .card, .testimonial-card, .service-list > div, .product-list > div { padding: 14px 8px; }
  .cookie-modal { padding: 21px 7px 20px 7px; }
  footer .container, header .container { padding-left: 2vw; padding-right: 2vw; }
}

/* ===================== ACCESSIBILITY & FOCUS ===================== */
a, .cta-btn, button {
  outline: none;
}
a:focus, .cta-btn:focus, button:focus {
  box-shadow: 0 0 0 3px var(--retro-yellow), 0 0 0 6px var(--retro-accent);
}

/* ===================== SCROLLBAR (RETRO STYLE) ===================== */
::-webkit-scrollbar { width: 11px; background: #F5EEE7; }
::-webkit-scrollbar-thumb { background: #EDD89A; border-radius: 11px; border: 2px solid #F5EEE7; }
::-webkit-scrollbar-thumb:hover { background: #E4A65A; }

/* ===================== END CSS ===================== */
