/* 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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F5F0;
  color: #2A3A38;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #6C4737;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #AA8B4F;
  outline-offset: 2px;
}
a:hover {
  color: #BC6B3D;
}
ul, ol {
  margin-left: 1.3em;
}
li {
  margin-bottom: 8px;
  font-size: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2A3A38;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  letter-spacing: -1px;
  text-shadow: 1px 2px 0px #EFE6D9;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  text-shadow: 1px 1px 0px #EFE6D9;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF6E4;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(68,60,57,0.07);
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1140px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* RETRO VINTAGE COLORS */
:root {
  --primary: #2A3A38;
  --secondary: #8C7860;
  --accent: #F5F5F0;
  --cream: #FFF6E4;
  --retro-brown: #7D6042;
  --retro-blue: #4F6D7A;
  --retro-mustard: #E3B23C;
  --retro-orange: #BC6B3D;
  --retro-green: #BCCAC1;
  --retro-shadow: rgba(44,39,33,0.08);
}

/* HEADER & NAV */
header {
  background: var(--cream);
  padding: 0;
  z-index: 20;
  border-bottom: 6px double var(--retro-brown);
  box-shadow: 0 2px 16px 0 rgba(44,35,30,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 11px;
  padding-bottom: 11px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 0;
  text-transform: uppercase;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--retro-mustard);
  transition: width 0.2s;
  margin-top: 4px;
}
.main-nav a:hover:after {
  width: 100%;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--retro-mustard);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 28px;
  margin-left: 24px;
  box-shadow: 0 3px 0 0 var(--retro-brown);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.22s, transform 0.14s;
  text-shadow: 0 1px 3px #9D8143;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-orange);
  box-shadow: 0 6px 20px 0 var(--retro-shadow);
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: var(--retro-mustard);
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 4px 16px;
  margin-left: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 0 0 #D9C196;
  cursor: pointer;
  display: none;
  transition: background 0.18s, box-shadow 0.16s, transform 0.12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  box-shadow: 0 3px 13px 0 var(--retro-shadow);
  transform: translateY(-1px);
}


/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(125deg, var(--retro-mustard) 80%, var(--accent) 100%);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  box-shadow: -4px 0 48px 0 rgba(44,40,31,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #fff;
  color: var(--retro-brown);
  font-size: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--retro-brown);
  box-shadow: 0 5px 9px 0 var(--retro-shadow);
  position: absolute;
  right: 24px;
  top: 24px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s, color 0.13s, transform 0.11s;
  z-index: 1003;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-orange);
  color: #fff;
  outline: none;
  transform: scale(1.06);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 100px;
  width: 100%;
  gap: 24px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 16px 8px;
  color: var(--primary);
  border-radius: 7px;
  width: 100%;
  transition: background 0.15s;
  letter-spacing: 1px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--retro-brown);
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: repeating-linear-gradient(135deg, #FFF6E4, #FFF6E4 50px, #F5EAD1 60px, #FFF6E4 75px);
  padding: 0;
  margin-bottom: 45px;
  border-bottom: 7px dotted var(--retro-brown);
}
.hero .container {
  padding-top: 52px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  align-items: center;
  gap: 20px;
}
.hero h1 {
  text-align: center;
  color: var(--retro-brown);
  font-size: 2.25rem;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-shadow: 2px 3px 0px #E5D3B3;
  font-family: 'Montserrat', serif, Arial, sans-serif;
}
.hero p {
  color: #2A3A38;
  text-align: center;
  font-size: 1.1rem;
}
.hero .cta-btn {
  margin-top: 18px;
  margin-left: 0;
}

/* FEATURES SECTION */
.features {
  background: #F5F5F0;
  border-radius: 18px;
  box-shadow: 0 5px 36px 0 var(--retro-shadow);
  margin-bottom: 60px;
}
.features .container {
  padding-top: 16px;
  padding-bottom: 16px;
}
.features .content-wrapper {
  gap: 22px;
}
.features h2, .features h1 {
  color: var(--retro-orange);
  text-shadow: 0 2px 0 #EFE6D9;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 10px;
  list-style: none;
  align-items: flex-start;
  justify-content: flex-start;
}
.features li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  color: var(--primary);
  background: #FFF6E4;
  border-radius: 10px;
  padding: 13px 22px 13px 18px;
  box-shadow: 0 2px 8px 0 var(--retro-shadow);
  min-width: 260px;
  min-height: 40px;
}
.features li img {
  width: 32px; height: 32px;
  flex-shrink: 0;
}


/* SERVICES/OFFER SECTION */
.services {
  background: #F9EAD7;
  border-radius: 18px;
  box-shadow: 0 8px 38px 0 var(--retro-shadow);
}
.services .content-wrapper {
  gap: 32px;
}
.services ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.services li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FFF6E4;
  border-radius: 11px;
  box-shadow: 0 3px 13px 0 var(--retro-shadow);
  padding: 22px 24px 20px 19px;
  border-left: 7px solid var(--retro-mustard);
  margin-bottom: 8px;
  margin-right: 24px;
  margin-left: 0;
  min-width: 250px;
}
.services h2, .services h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-brown);
}
.services li span {
  font-size: 1rem;
  color: var(--retro-blue);
  font-family: 'Montserrat', Courier, serif;
  text-shadow: 0 1px 0 #ECDDBF;
  margin-left: 12px;
  font-weight: 600;
}
.services p {
  color: var(--primary);
  font-size: 1em;
}
.services .cta-btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--retro-green);
  border-radius: 20px;
  box-shadow: 0 7px 32px 0 var(--retro-shadow);
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  color: var(--retro-orange);
  margin-bottom: 14px;
  text-shadow: 0 2px 0 #EFE6D9;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 26px 16px 26px;
  background: #FFF6E4;
  border-radius: 13px;
  box-shadow: 0 6px 28px 0 rgba(53, 44, 20, 0.13);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 640px;
  border-left: 6px solid var(--retro-blue);
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 16px 38px 0 rgba(53, 44, 20, 0.20);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #423014;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.97em;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #6C4737;
  font-style: italic;
  text-align: right;
  align-self: flex-end;
}

/* CTA SECTION (FORM, THANK YOU, ETC) */
.cta {
  background: #F5EAD1;
  border-radius: 14px;
  box-shadow: 0 4px 22px 0 var(--retro-shadow);
  margin-bottom: 44px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-mustard);
  font-size: 2rem;
}
.cta .cta-btn {
  margin-left: 0;
}

/* CARDS, CONTENT GRID, TEXT-IMAGE SECTIONS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  background: #FFF6E4;
  border: 1.6px solid #E3B23C;
  border-radius: 11px;
  box-shadow: 0 3px 13px 0 var(--retro-shadow);
  padding: 24px 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.15s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 11px 32px 0 var(--retro-shadow);
  transform: translateY(-2px) scale(1.02);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTACT & STATIC PAGES */
.text-section {
  margin-bottom: 20px;
  padding: 15px 0;
}
.text-section h2 {
  color: var(--retro-blue);
}
.text-section a {
  color: var(--retro-orange);
  word-break: break-all;
}

/* PRIVACY, RODO, COOKIES, LEGAL */
.privacy-policy, .rodo-information, .cookies-policy, .site-rules, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF6E4;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--retro-shadow);
}

/* FAQ */
.faq-section {
  background: #F5F5F0;
  border-left: 6px double var(--retro-brown);
  padding: 18px 28px;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 var(--retro-shadow);
  margin-bottom: 22px;
}

/* FOOTER */
footer {
  background: var(--cream);
  box-shadow: 0 -6px 28px 0 var(--retro-shadow);
  border-top: 7px dotted var(--retro-brown);
  padding-top: 24px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 18px;
}
.footer-main img {
  height: 55px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-brown);
  font-size: 1.04em;
  font-weight: 700;
  padding: 1.5px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
}
.footer-contact {
  font-size: 1em;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact a {
  color: var(--retro-mustard);
}
.footer-contact a:hover {
  color: var(--retro-orange);
}
.footer-bottom {
  border-top: 1.2px solid var(--retro-green);
  padding-top: 12px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99em;
  color: #7A634B;
}


/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF6E4;
  border-top: 4px double var(--retro-mustard);
  box-shadow: 0 -3px 18px 0 var(--retro-shadow);
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 23px 6vw 14px 6vw;
  font-size: 1rem;
  animation: cookie-banner-in 0.45s cubic-bezier(.7,.25,.61,.99);
}
@keyframes cookie-banner-in {
  from {transform: translateY(60px); opacity: 0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-consent-banner p {
  max-width: 850px;
  color: var(--primary);
  font-size: 1em;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 19px;
  border: none;
  border-radius: 7px;
  margin-right: 10px;
  font-size: 1em;
  cursor: pointer;
  background: var(--retro-mustard);
  color: #fff;
  box-shadow: 0 2px 6px 0 var(--retro-shadow);
  transition: background 0.14s, box-shadow 0.14s, transform 0.10s;
}
.cookie-btn:last-child {
  margin-right: 0;
  background: var(--retro-green);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-orange);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn[aria-pressed='true'] {
  background: var(--retro-brown);
  color: #FFF6E4;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom:0;
  background: rgba(42,35,24,0.45);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.31s cubic-bezier(.7,.25,.61,.99);
}
@keyframes cookie-modal-in {
  from { opacity: 0;}
  to { opacity: 1;}
}
.cookie-modal-dialog {
  background: #FFF6E4;
  border-radius: 18px;
  box-shadow: 0 9px 65px 0 var(--retro-shadow);
  max-width: 460px;
  width: 96vw;
  padding: 38px 30px 26px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-dialog h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-mustard);
  font-size: 1.55rem;
  margin-bottom: 6px;
}
.cookie-category {
  background: #F5EAD1;
  border-left: 5px solid var(--retro-brown);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--retro-mustard);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: var(--retro-brown);
  color: #fff;
  border-radius: 50%;
  width: 35px; height: 35px;
  border: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.13s, transform 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--retro-orange);
  outline: none;
  transform: scale(1.08);
}


/* SPACING & PATTERNS - FLEXBOX ONLY! */
@media (max-width: 1024px) {
  .footer-main { gap: 20px; flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 18px; }
}
@media (max-width: 860px) {
  .header .container, .footer-main { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero .container { padding-top: 32px; padding-bottom: 32px; }
  .features ul { flex-direction: column; gap: 18px; }
  .services ul { gap: 16px; }
  .card-container, .content-grid { gap: 14px; }
  .footer-main { gap: 20px; }
  .footer-contact { font-size: 0.99em; }
  .hero h1 { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.1rem; }
  .section, .privacy-policy, .rodo-information, .cookies-policy, .site-rules, .thank-you {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
  .hero .content-wrapper, .features .content-wrapper, .services .content-wrapper {
    gap: 13px;
  }
  .features ul { gap: 10px; }
  .card { padding: 14px 6px; }
  .footer-main { gap: 10px; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 17px 6vw 13px 6vw; }
}
@media (max-width: 480px) {
  .footer-main img, header img { height: 36px; }
  .cookie-modal-dialog { padding: 22px 6vw 16px 6vw; }
}

/* Text-image section Mobile - column layout */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

/* UTILS & ANIMATIONS */
.fade-in {
  animation: fadeIn 0.4s cubic-bezier(.6,.08,.2,1) both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* CUSTOM RETRO PATTERNS / DETAILS */
.section, .features, .services, .cta, .testimonials {
  border: 2px solid var(--retro-mustard);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 27px, #FFD97B22 38px, transparent 52px);
}

/* Google Fonts Import for Retro Effect */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* IMPROVE BUTTONS FOR ACCESSIBILITY */
button, .cta-btn, .cookie-btn {
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--retro-mustard);
}

/* Utility Classes */
.hide {
  display: none !important;
}

/* End of File */