/* ===================================================
   SPECTRAMAISON VINTAGE RETRO - style.css MAIN BUNDLE
   =================================================== */
/*
RESET & BASE
-------------------------------------*/
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F2E8DA;
  color: #213142;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
strong { font-weight: bold; }
input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}
/* Hide scrollbars on mobile */
html { scrollbar-width: thin; }

/*
TYPOGRAPHY - VINTAGE RETRO
-------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #213142;
  --color-secondary: #7B9F82;
  --color-accent: #F2E8DA;
  --color-dark: #372C22;
  --color-offwhite: #F6F0E6;
  --color-brown: #AE8D5E;
  --color-orange: #DF915D;
  --color-cream: #EFE6D7;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  font-weight: 900;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  text-shadow: 1px 3px 0 var(--color-brown);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-secondary);
  text-shadow: 0 2px 0 var(--color-cream);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-orange);
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--color-dark);
}
blockquote, em {
  font-family: var(--font-display);
  color: var(--color-primary);
}

/* VINTAGE/NOSTALGIC TEXTURE BACKGROUND FOR HIGHLIGHT SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background:
    repeating-linear-gradient(135deg, #F6F0E6, #F2E8DA 20px, #EFE6D7 30px, #F6F0E6 40px),
    url('data:image/svg+xml;utf8,<svg opacity=".06" viewBox="0 0 60 60" width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect x="5" y="5" width="50" height="50" rx="8" fill="%23C5B58E"/></svg>');
  box-shadow: 0 6px 36px 0 rgba(97,61,38,0.08);
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

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

.text-section {
  max-width: 800px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/*
NAVIGATION & HEADER - FLEXBOX ONLY
-------------------------------------*/
header {
  background-color: var(--color-cream);
  border-bottom: 8px solid var(--color-brown);
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0 8px 0;
  justify-content: center;
}
nav > a > img {
  max-height: 48px;
  width: auto;
}
nav ul {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-left: 30px;
}
nav ul li a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--color-primary);
  padding: 8px 13px;
  border-radius: 7px;
  transition: all .18s cubic-bezier(.37,1.56,.64,1.18);
  position: relative;
}
nav ul li a:hover, nav ul li a:focus {
  background-color: var(--color-secondary);
  color: #fff;
  box-shadow: 0 1px 8px 0 rgba(33,49,66,0.12);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--color-orange);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 18px 0 rgba(175,141,94,0.13);
  border: 2px solid var(--color-brown);
  cursor: pointer;
  text-transform: uppercase;
  transition: all .15s ease;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 0 2px var(--color-secondary);
  transform: scale(1.04) rotate(-1deg);
}

/*
MOBILE NAVIGATION (BURGER MENU)
-------------------------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: var(--color-brown);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 1020;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF0E8;
  box-shadow: 0 2px 8px rgba(175,141,94,.17);
  transition: background .13s, box-shadow .11s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-orange);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(175,141,94,.23);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-offwhite);
  box-shadow: 0 0 80px 0 rgba(33, 49, 66, 0.13);
  z-index: 1200;
  transform: translateX(-110vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transition: transform .34s cubic-bezier(.54,-0.01,.65,1.05);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  position: absolute;
  right: 17px; top: 17px;
  display: flex;
  align-items: center; justify-content: center;
  z-index: 2;
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 84px 32px 32px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--color-primary);
  background: none;
  padding: 13px 0;
  border-bottom: 1.3px dashed var(--color-secondary);
  width: 100%;
  transition: color .15s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-orange);
  background: none;
}

/*
LAYOUT UTILITIES (MANDATORY FLEX + SPACING)
-------------------------------------------*/
.card-container, .card-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(33,49,66,0.09);
  padding: 28px 24px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF7F0;
  border-radius: 11px;
  padding: 20px;
  box-shadow: 0 1px 9px 0 rgba(33,49,66,.07);
}

/*
LISTS AND ICONS (VINTAGE STYLING)
-----------------------------*/
ul li, ol li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 32px;
  font-size: 1.04rem;
  color: var(--color-dark);
}
ul li::before, ol li::before {
  content: '';
  position: absolute;
  left: 7px; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.22;
  box-shadow: 0 1px 3px 0 #AE8D5E12;
}

ul li:last-child, ol li:last-child { margin-bottom: 0; }

dt { font-weight: bold; }
dd { margin-bottom: 8px; }

/*
BUTTONS & CTA (RETRO STYLE)
-------------------------------------*/
button, .cta-button {
  transition: background .18s, color .14s, box-shadow .16s, transform .15s;
}

/*
TESTIMONIAL CARD DESIGN
-------------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 13px 0 rgba(33,49,66,0.05);
  position: relative;
  min-width: 280px;
  margin-bottom: 24px;
  border-left: 7px solid var(--color-orange);
  flex: 1 1 265px;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.09rem;
  color: #222;
  line-height: 1.55;
  margin-right: 12px;
}
.testimonial-card strong {
  color: var(--color-brown);
  font-size: 1rem;
}
.testimonial-card em {
  font-style: italic;
}

/*
FOOTER
-------------------------------------*/
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 44px 0 28px 0;
  border-top: 8px solid var(--color-secondary);
}
footer a, footer nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  opacity: 0.92;
  padding: 2px 0;
  text-decoration: underline dashed 1.7px var(--color-brown);
  transition: color .14s, text-decoration .18s;
  font-size: 1rem;
}
footer a:hover, footer a:focus { color: var(--color-orange); text-decoration: underline solid 2px; }
footer nav {
  display: flex;
  flex-direction: row;
  gap: 6px;
  justify-content: flex-start;
  align-items: center;
  margin: 18px 0 16px 0;
  flex-wrap: wrap;
}
footer img {
  margin-bottom: 15px;
  max-width: 96px;
}
footer p {
  font-size: 0.98rem;
  color: #FFEEDC;
  margin: 4px 0;
  opacity: 0.89;
}

/*
COOKIE CONSENT BANNER
-------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2100;
  background: var(--color-brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 16px;
  font-family: var(--font-body);
  box-shadow: 0 -4px 18px 0 rgba(97,61,38,0.18);
}
.cookie-banner p {
  font-size: 1.02rem;
  max-width: 580px;
  line-height: 1.7;
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  border-radius: 40px;
  border: none;
  padding: 10px 22px;
  margin: 0 2px;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .13s;
  box-shadow: 0 1px 6px 0 rgba(255,255,255,.16);
}
.cookie-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--color-orange);
  color: var(--color-primary);
}
.cookie-reject {
  background: #fff;
  color: var(--color-brown);
  border: 1.6px solid var(--color-orange);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--color-orange);
  color: #fff;
}
.cookie-settings {
  background: var(--color-primary);
  color: #F2E8DA;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--color-cream);
  color: var(--color-brown);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 90vw;
  max-width: 430px;
  background: #fff;
  color: #744F29;
  border-radius: 21px;
  transform: translate(-50%,-53%) scale(0.7);
  z-index: 2200;
  box-shadow: 0 7px 64px 0 rgba(174,141,94,0.21);
  padding: 36px 28px;
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.58,.02,.4,.99), opacity .22s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: var(--color-brown);
  margin-bottom: 9px;
  font-size: 1.36rem;
}
.cookie-modal .modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 10px;
}
.cookie-modal label {
  font-family: var(--font-body);
  font-size: 1.01rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
}
.cookie-modal .modal-close {
  background: var(--color-secondary);
  color: #fff;
  padding: 7px 18px;
  border-radius: 25px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-left: auto;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--color-orange);
  color: var(--color-primary);
}
/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(68, 47, 24, 0.22);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/*
SECTION & CARD FLEX LAYOUTS
-------------------------------------*/
.section { /* Already specified above for spacing! */ }
.card-container { /* Specified above */ }
.card { /* Specified above */ }
.content-grid { /* Specified above */ }
.text-image-section { /* Specified above */ }
.testimonial-card { /* Specified above */ }
.feature-item { /* Specified above */ }

/*
MICRO-INTERACTIONS / HOVER
-------------------------- */
a, button, .cta-button, nav ul li a, .mobile-nav a {
  transition: background .19s, color .17s, box-shadow .18s, transform .19s;
}
a:focus, button:focus, .cta-button:focus {
  outline: 2px dotted var(--color-secondary);
  outline-offset: 2px;
}
.card:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.01) rotate(-1deg);
  box-shadow: 0 4px 24px 0 rgba(33,49,66,0.095);
}

/*
ACCESSIBILITY CONTRAST FOR TESTIMONIALS/REVIEW
----------------------------------------------*/
.testimonial-card {
  color: #212124;
  background: #fff;
}
.testimonial-card p { color: #232017; }
.testimonial-card strong { color: var(--color-secondary); }

/*
RESPONSIVE - MOBILE FIRST
------------------------------*/
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  nav {
    flex-direction: row;
    gap: 56px;
  }
  nav ul { gap: 22px; }
  .content-wrapper { gap: 38px; }
  .section { padding: 60px 48px; }
}
@media (min-width: 992px) {
  .container { max-width: 1150px; }
  .content-wrapper { gap: 52px; }
  .section { padding: 66px 80px; }
  nav { gap: 90px; }
}

@media (max-width: 991px) {
  nav ul {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header nav ul,
  header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .text-image-section, .content-grid, .features {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
  }
  .card-container {
    gap: 14px;
  }
  .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: unset;
  }
  .section {
    padding: 26px 5vw;
    margin-bottom: 40px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.08rem; }
  .container { padding: 0 10px; }
}
@media (max-width: 430px) {
  .section { padding: 12vw 3vw; }
}

/* Hide cookie modal if not open */
@media (max-width: 450px) {
  .cookie-modal { padding: 19vw 3vw; }
  .cookie-banner { flex-direction: column; gap: 14px; padding: 15px 8px; }
}

/*
SPECIAL VINTAGE/RETRO MICRO-STYLING
------------------------------------------*/
.card, .testimonial-card, .feature-item {
  border: 1.5px solid #E8D4BB;
  background-clip: padding-box;
}
.card::after {
  content: '';
  position: absolute;
  right: 12px; bottom: 9px;
  width: 44px; height: 10px;
  background: repeating-linear-gradient(90deg, var(--color-brown) 0, var(--color-brown) 7px, transparent 7px, transparent 14px);
  border-radius: 6px;
  opacity: .13;
}
.feature-item::before {
  content: '';
  display: block;
  width: 34px; height: 2.5px;
  background: var(--color-orange);
  border-radius: 1.5px;
  margin-bottom: 6px;
  opacity: .17;
}
section {
  padding: 15px;
}
/***********************************************
 * END - SpectraMaison Vintage_Retro CSS Bundle
 **********************************************/
