/* ====================================================
   VINTAGE RETRO VIBES + BRAND GUIDELINES - STYLE.CSS
   Fuzzy Sight Analyse
======================================================*/
/* --- 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-size:100%;
  font:inherit;
  vertical-align:baseline; 
  box-sizing: border-box;
}
html { scroll-behavior:smooth; }
body { line-height:1; }
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display:block;
}
ol,ul { list-style:none; }
a { text-decoration:none; color:inherit; }
img { border:0; max-width:100%; height:auto; display:block; }
*, *:before, *:after { box-sizing:inherit; }

/* --- CSS VARIABLES: RETRO/VINTAGE + Brand Colors --- */
:root {
  --primary: #1F3F5B;
  --secondary: #D9D9D9;
  --accent: #F5C242;
  --retro-orange: #E66B2B;
  --retro-dark: #332C23;
  --retro-cream: #F8F4ED;
  --retro-blue: #33658A;
  --retro-mint: #A9CBB7;
  --retro-red: #B8405E;
  --retro-brown: #AB7B5C;
  --bg-base: var(--retro-cream);
  --border-radius: 10px;
  --shadow: 0 4px 18px 0 rgba(51,44,35,.11);
  --card-shadow: 0 2px 8px 0 rgba(51,44,35,.17);
}

/* --- FONT-FACE: Retro & Brand fonts --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900|Roboto:400,500,700&display=swap');
@font-face {
  font-family: 'RetroVibes';
  src: local('Cooper Black'), local('CooperBlack'),
       url('https://fonts.cdnfonts.com/s/48112/CooperBlack.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  min-height: 100vh;
  background: var(--bg-base);
  color: var(--retro-dark);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: .01em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAV --- */
header {
  background: var(--primary);
  color: #fff;
  padding: 0;
  border-bottom: 5px solid var(--accent);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
header img {
  height: 44px;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.1));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', 'RetroVibes', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-size: 16px;
  transition: color 0.2s linear;
  padding: 4px 8px;
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: var(--retro-orange);
}

.btn-primary, .btn-secondary {
  display: inline-block;
  border-radius: var(--border-radius);
  font-family: 'Montserrat', 'RetroVibes', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(31,63,91,0.12);
  transition: background 0.18s, color 0.18s, transform 0.17s;
  margin-left: 18px;
  padding: 12px 32px;
}
.btn-primary {
  background: var(--accent);
  color: var(--retro-dark);
  border: 2px solid var(--retro-brown);
  text-shadow: 0 2px 0 #fff6e3;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(51,44,35,0.14);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #fff;
  color: var(--retro-dark);
  border: 2px solid var(--accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-blue);
  color: #fff;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 2px 6px rgba(31,63,91,0.07);
  transition: background .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  background: rgba(31,63,91,0.95);
  z-index: 1200;
  transform: translateX(105%);
  transition: transform .34s cubic-bezier(.60,.2,.18,1.02);
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  margin: 24px 28px 0 0;
  font-size: 28px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(31,63,91,0.09);
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-red);
  color: #fff;
}
.mobile-nav {
  width: 100%;
  padding: 36px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-nav a {
  width: 100%;
  display: block;
  padding: 18px 38px;
  color: var(--accent);
  background: none;
  font-size: 22px;
  font-family: 'Montserrat', 'RetroVibes', Arial, sans-serif;
  font-weight: 800;
  border-bottom: 1px dotted var(--accent);
  transition: background .14s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}

/* --- HERO & RETRO HEADINGS --- */
.hero {
  padding: 70px 0 60px 0;
  background: repeating-linear-gradient(45deg, #f8f4ed, #f8f4ed 30px, #f5c24215 32px, #f8f4ed 64px);
  border-bottom: 6px double var(--accent);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  font-family: 'RetroVibes', 'Montserrat', Arial, serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-shadow: 2px 3px 0 #f5c24260, 0 1px 0 #fff6;
}
.subheadline {
  font-size: 1.3rem;
  color: var(--retro-brown);
  margin-bottom: 23px;
  font-style: italic; 
  letter-spacing: .02em;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff6e8;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
section:last-child {
  margin-bottom: 0;
}

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5 {
  font-family: 'RetroVibes', 'Montserrat', Arial, serif;
  font-weight: 900;
  color: var(--retro-blue);
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; color: var(--retro-orange); }
h3 { font-size: 1.25rem; color: var(--primary); }
p,li,address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--retro-dark);
  line-height: 1.7;
  margin-bottom: 10px;
}
ul,ol {
  padding-left: 18px;
  margin-bottom: 16px;
}
strong {
  color: var(--retro-blue);
  letter-spacing: .02em;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- FLEX CONTAINERS, CARDS, TESTIMONIALS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 30px 0 rgba(80,66,62,0.13);
  transform: translateY(-4px) scale(1.01);
}
.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: center;
  gap: 20px;
  background: var(--accent);
  color: #262210;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 15px 0 rgba(51,44,35,.13);
  font-size: 1.1rem;
  position: relative;
  min-width: 260px;
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-card h2 {
  color: var(--retro-dark);
  margin-bottom: 8px;
}
.testimonial-card p {
  color: var(--retro-dark);
  font-style: italic;
}
.testimonial-card footer {
  color: var(--retro-red);
  font-size: 1rem;
  font-family: 'Montserrat', 'RetroVibes', Arial, sans-serif;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7edd6;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px 0 rgba(180, 120, 90, 0.08);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--accent);
  font-size: 1rem;
  padding: 55px 0 24px 0;
  border-top: 5px solid var(--accent);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 170px;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', 'RetroVibes', Arial, sans-serif;
  font-size: 17px;
  transition: color .18s;
  padding-bottom: 1px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: var(--retro-cream);
}
.footer-contact img {
  height: 19px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: -4px;
}
.brand-statement {
  font-family: 'RetroVibes', 'Montserrat', Arial, serif;
  color: var(--retro-orange);
  font-size: 18px;
  font-weight: bold;
  padding-top: 23px;
  text-shadow: 1px 2px 0px #0002, 0 1px 0 #fff4;
}

/* --- LINKS --- */
a {
  color: var(--retro-blue);
  transition: color .16s;
}
a:hover, a:focus {
  color: var(--retro-red);
}

/* --- FORMS AND ADDRESS --- */
address {
  font-style: normal;
  color: var(--retro-dark);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  width: 100vw;
  background: var(--retro-brown);
  color: #fff7e6;
  padding: 22px 10px 19px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 12px 0 rgba(51,44,35,0.13);
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  animation: cookieIn .7s cubic-bezier(.56,.17,.45,1.12);
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity: 0; }
  90%{ opacity:.95; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-left: 20px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 7px;
  padding: 11px 24px;
  font-size: 1rem;
  margin: 0 2px;
  background: var(--accent);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(80,80,60,0.07);
  transition: background 0.17s, color 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-banner .btn-cookie-settings {
  background: var(--retro-mint);
  color: var(--retro-dark);
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: var(--retro-blue);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,63,91,0.88);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .33s cubic-bezier(.55,.15,.67,1);
}
@keyframes modalFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff7ec;
  border-radius: 18px;
  max-width: 430px;
  width: 97vw;
  padding: 30px 8vw 19px 8vw;
  box-shadow: 0 8px 44px 0 rgba(51,44,35,0.17);
  color: var(--retro-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPopIn .32s cubic-bezier(.53,.13,.54,.94);
}
@keyframes modalPopIn {
  0%   { opacity: 0; transform: scale(.94); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px dotted #e3cead;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--retro-blue);
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  background: var(--retro-cream);
  border: 2px solid var(--accent);
  border-radius: 4px;
  width: 23px;
  height: 23px;
  box-shadow: 1px 1px 3px #0001;
  cursor: pointer;
  transition: background .14s;
  display: inline-block;
  margin-right: 4px;
  position: relative;
}
.cookie-category input[type=checkbox]:checked {
  background: var(--accent);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .14s, color .14s;
  margin-left: 7px;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-modal .modal-close {
  background: transparent;
  color: var(--retro-red);
  position: absolute;
  right: 18px;
  top: 14px;
  border: none;
  font-size: 29px;
  padding: 6px;
  border-radius: 50%;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: rgba(244, 187, 84, .22);
}

/* --- RESPONSIVE / MOBILE --- */
@media (max-width: 1060px) {
  header .container {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 18px; }
  .footer-content { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 35px;
    padding: 25px 10px;
  }
  .container { padding-left: 12px; padding-right: 12px; }
  .footer-content { flex-direction: column; gap: 16px; align-items: flex-start; }
  .brand-statement { font-size: 1.05rem; padding-top: 12px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; z-index: 1211; }
  .btn-primary, .btn-secondary { font-size: 17px; padding: 10px 22px; margin-left: 8px; }
}
@media (max-width: 650px) {
  .hero { padding: 30px 0 24px 0; }
  .hero h1 { font-size: 1.27rem; }
}
@media (max-width: 640px) {
  .content-wrapper, .text-section { gap: 10px; }
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: .99rem; }
  .testimonial-card { padding: 12px; font-size: .99rem; }
}
@media (max-width: 480px) {
  .footer-contact span { font-size: 12px; }
  .footer-nav a { font-size: 13px; }
}
/* Mobile-specific flex direction for layouts */
@media (max-width: 768px) {
  .text-image-section, .content-grid, .footer-content { flex-direction: column; align-items: flex-start; gap: 18px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* --- MICROINTERACTIONS & TRANSITIONS --- */
section, .card, .btn-primary, .btn-secondary, .testimonial-card, .feature-item, .footer-nav a {
  transition: box-shadow 0.13s, background 0.17s, color 0.15s, border-color .16s, transform .13s;
}

/* --- RETRO PATTERN DECORATIVE BORDERS --- */
section {
  border: 3px solid var(--retro-brown);
  border-radius: var(--border-radius);
  background: #fff6e8 url('data:image/svg+xml;utf8,<svg width="80" height="8" xmlns="http://www.w3.org/2000/svg"><rect fill="%23f5c242" width="20" height="8"/><rect x="20" fill="%23fff6e8" width="20" height="8"/><rect x="40" fill="%23f5c242" width="20" height="8"/><rect x="60" fill="%23fff6e8" width="20" height="8"/></svg>') repeat-x 0 100%;
  background-size: 80px 8px;
  box-shadow: var(--shadow);
}

/* --- SCROLLBAR (retro look) --- */
body::-webkit-scrollbar {
  width: 12px; background: var(--retro-cream);
}
body::-webkit-scrollbar-thumb {
  background: var(--retro-brown); border-radius: 9px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--retro-blue);
}


/* ====================================================
   END OF STYLE.CSS
======================================================*/
