/* === RESET & NORMALIZE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F7F6F2;
  color: #21232C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  text-decoration: none;
  color: #965D3C;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FDB833;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
  list-style-type: disc;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #21232C;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* === VINTAGE RETRO BRAND COLOR PALETTE === */
:root {
  --primary: #21232C;
  --secondary: #F7F7F7;
  --accent: #FDB833;
  --retro-red: #C1440E;
  --retro-green: #3A6351;
  --retro-blue: #607196;
  --retro-brown: #965D3C;
  --retro-yellow: #FFE083;
  --vintage-beige: #F7F6F2;
  --retro-border: #D5CABD;
}

/* === CONTAINER & SECTION SPACING === */
.container {
  width: 95vw;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-beige);
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(149, 93, 60, 0.05);
  border: 1.5px solid var(--retro-border);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === RETRO PATTERNS (border + shadow + background) === */
.section {
  background: repeating-linear-gradient(135deg, #F7F7F7, #F7F7F7 20px, #FFE083 20px, #FFE083 40px);
  border: 2px solid var(--retro-border);
  box-shadow: 0 3px 24px 0 rgba(149, 93, 60, 0.06), 0 2px 0 #ECE2D0;
}

/* === HEADER === */
header {
  background: #E3DECD;
  border-bottom: 4px solid #FFD265;
  box-shadow: 0 2px 12px 0 rgba(33,35,44,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 12px;
  padding: 8px 16px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--retro-brown);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 4px 0 2px 0;
  position: relative;
}
nav a:hover, nav a:focus {
  color: var(--primary);
  border-bottom: 2.5px solid var(--accent);
}
.cta-primary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 36px;
  padding: 11px 32px;
  font-size: 1.06rem;
  margin-left: 12px;
  box-shadow: 0 3px 8px 0 rgba(33,35,44,0.09);
  letter-spacing: 1px;
  text-shadow: 0 2px 0 #fff8e1;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
  outline: none;
  border-bottom: 4px solid #F4B63D;
}
.cta-primary:hover, .cta-primary:focus {
  background: #C1440E;
  color: #fff;
  box-shadow: 0 5px 24px 0 #C1440E40;
  border-bottom: 4px solid #FDB833;
}
.cta-secondary {
  background: #607196;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  margin-top: 16px;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px 0 #60719626;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #3A6351;
  color: #FFD265;
  box-shadow: 0 4px 22px 0 #3A635144;
}

.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  line-height: 0.9;
  margin-left: 10px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 5px 0 #FFD26550;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C1440E;
  color: #fff8e6;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  background: #F7F7F7;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.82,.01,.21,1.01);
  box-shadow: 4px 0 28px 0 #21232C33;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.9rem;
  cursor: pointer;
  z-index: 2500;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C1440E;
  color: #fff8e6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 76px 0 0 0;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.15rem;
  padding: 10px 32px;
  border-radius: 18px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero {
  min-height: 370px;
  background: repeating-linear-gradient(110deg, #FFE083 0 40px, #F7F7F7 40px 80px);
  border-top: 4px solid #FDB833;
  border-bottom: 4px solid #965D3C;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  min-height: 300px;
}
.hero .content-wrapper {
  gap: 20px;
  max-width: 525px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #21232C;
  text-shadow: 1px 1px 0 #fff8e6, 0 4px 30px #FDB83345;
}
.hero .subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #3A6351;
  margin-bottom: 5px;
}

/* === FLEX PATTERNS === */
.feature-grid, .advantage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature {
  background: #FFF7ED;
  border: 2px solid #FFD265;
  border-radius: 17px;
  box-shadow: 0 3px 16px 0 #FDB83315, 0 1.5px 0 #F7F7F7;
  padding: 22px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 1 235px;
  max-width: 330px;
  min-width: 210px;
  transition: box-shadow 0.19s, border-color 0.19s;
  margin-bottom: 20px;
  position: relative;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 7px 30px 0 #FDB83333, 0 1.5px 0 #F7F7F7;
  border-color: #FDB833;
}
.feature img {
  height: 48px;
  width: 48px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.16rem;
  color: var(--retro-red);
  margin-bottom: 5px;
}
.feature p {
  color: #21232C;
  font-size: 1rem;
  opacity: 0.92;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFBF2;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #FFF7ED3c;
  padding: 30px 28px 24px 28px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #D5CABD;
  flex: 1 1 320px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #FFE083;
  box-shadow: 0 2px 11px 0 #965D3C1A;
  border: 2px solid #FFD265;
  max-width: 600px;
}
.testimonial-card .testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card p {
  color: #21232C;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #965D3C;
  letter-spacing: 0.5px;
  font-size: 1em;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
  align-items: stretch;
}
.pricing-package {
  flex: 1 1 240px;
  min-width: 210px;
  background: #FFF7ED;
  border: 2px solid #FFD265;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 #FFD26514;
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.19s;
}
.pricing-package h3 {
  color: #C1440E;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
}
.pricing-package ul {
  margin-bottom: 0;
}
.pricing-package:hover {
  border-color: #FDB833;
  box-shadow: 0 8px 30px 0 #FDB83321;
}

.benefits-overview {
  background: #B0A08410;
  border-left: 5px solid #FFD265;
  border-radius: 11px;
  padding: 17px 18px;
  margin-top: 13px;
  font-style: italic;
  color: #607196;
  font-size: 1.1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.contact-info img {
  vertical-align: middle;
  margin-right: 8px;
  height: 23px;
  width: 23px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.map img {
  height: 55px;
  width: 55px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
footer {
  background: #ECE2D0;
  padding: 32px 0 18px 0;
  margin-top: 60px;
  border-top: 4px solid #FFD265;
  font-size: 0.98em;
}
footer p {
  text-align: center;
  color: #7E6140;
  margin-top: 8px;
}
.footer-nav a {
  color: #7E6140;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.04em;
  letter-spacing: 0.25px;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #21232C;
  background: #FFD26533;
  border-radius: 7px;
}

/* === STAR ICONS (testimonial ratings) === */
.testimonial-card img, .content-wrapper > div > img[alt="Ocena"] {
  height: 30px;
  width: 30px;
  margin-right: 4px;
}

/* === RESPONSIVE MOBILE FIRST === */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .section {
    min-width: 0;
    padding: 27px 6px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .advantage-grid, .pricing-table, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .pricing-package, .card {
    min-width: 0;
    max-width: 99vw;
    padding: 20px 10px 18px 10px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero .container {
    min-height: 140px;
    padding: 0 3px;
  }
  nav, .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .map {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* == HEADINGS RETRO STYLE == */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1.3px;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  font-size: 2.2rem;
  color: var(--retro-red);
  text-shadow: 0 3px 0 #FFE08388, 0 2px 30px #FDB83320;
}
h2 {
  font-size: 1.5rem;
  color: #607196;
  text-shadow: 0 2px 0 #FFD26577;
}
h3 {
  font-size: 1.12rem;
  color: var(--retro-green);
}

/* == TYPOGRAPHY / COPY == */
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: #21232C;
  font-size: 1rem;
  letter-spacing: 0.1px;
}
strong {
  color: #965D3C;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* == BUTTONS COMMON ANIMATIONS == */
.cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-consent-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, border-color 0.18s;
  outline: none;
}

/* == VISUAL MICROWAVES == */
.cta-primary:active, .cta-secondary:active {
  box-shadow: 0 0 0 0 #FFF7;
  transform: translateY(1px) scale(0.97);
}

/* == COOKIE CONSENT BANNER == */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2222;
  width: 100%;
  background: #FFF7ED;
  border-top: 3px solid #FDB833;
  box-shadow: 0 -2px 20px 0 #FDB83345;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 1.04rem;
  animation: cookie-fadein 0.6s cubic-bezier(.51,.05,.18,1.01);
}
@keyframes cookie-fadein {
  from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity:1; }
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
  align-items: center;
}
.cookie-consent-btn {
  background: #FDB833;
  color: #21232C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05em;
  border: none;
  border-radius: 18px;
  padding: 9px 26px;
  letter-spacing: 0.8px;
  margin: 2px 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #FDB83318;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #C1440E;
  color: #fff;
}
.cookie-consent-btn.cookie-settings {
  background: #607196;
  color: #fff;
}
.cookie-consent-btn.cookie-settings:hover, .cookie-consent-btn.cookie-settings:focus {
  background: #965D3C;
  color: #FFD265;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle {
  margin-left: 10px;
  appearance: none;
  width: 32px;
  height: 19px;
  background: #FFD265;
  border-radius: 10px;
  position: relative;
  outline: none;
}
.cookie-toggle:checked {
  background: #3A6351;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff8e1;
  transition: transform .23s cubic-bezier(.42,.03,.36,.93);
  box-shadow: 0 2px 6px 0 #FDB83325;
}
.cookie-toggle:checked:before {
  transform: translateX(13px);
}
.cookie-modal {
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-150%,100%);
  opacity:0;
  background: #FFF7ED;
  border: 2px solid #FFD265;
  border-radius: 23px;
  padding: 38px 30px 26px 30px;
  box-shadow: 0 13px 50px 0 #FDB83361;
  z-index: 3000;
  min-width: 330px;
  max-width: 98vw;
  width: 400px;
  transition: transform 0.34s cubic-bezier(.53,.01,1,1.17), opacity 0.23s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal.open {
  transform: translate(-50%,-50%);
  opacity: 1;
}
.cookie-modal h3 {
  color: #C1440E;
  font-size: 1.14em;
  margin-bottom: 6px;
  font-weight: 700;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.35px;
  font-size: 1em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}

@media (max-width:500px) {
  .cookie-modal {
    min-width: unset;
    width: 96vw;
    padding: 20px 8px 12px 8px;
  }
}

/* === LIST DECORATIONS FOR RETRO FLAVOR === */
ul, ol {
  padding-left: 1.22em;
}
ul li, ol li {
  position: relative;
  margin-bottom: 0.7em;
  font-size: 1.01em;
}
ul li:before {
  content: "\2022 ";
  color:#FDB833;
  position: absolute;
  left: -1.2em;
  font-size: 1.3em;
  top: -2px;
}

/* === FOCUS VISIBLE === */
a:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2px solid #FDB833;
  outline-offset: 2px;
  border-radius: 4px;
}

/* === SCROLLBAR RETRO STYLE === */
::-webkit-scrollbar {
  width: 11px;
  background: #F7F7F7;
}
::-webkit-scrollbar-thumb {
  background: #FFD265;
  border-radius: 7px;
  border: 2px solid #F7F7F7;
}

/* === RETRO CORNERS & DIVIDERS === */
hr {
  border: none;
  height: 2px;
  background: repeating-linear-gradient(90deg,#FFD265, #FFD265 10px,#FFFBF2 10px, #FFFBF2 33px);
  margin: 32px 0;
  border-radius: 1.5px;
}

/* === RETRO SHADOWS / BORDERS === */
.card, .feature, .pricing-package, .testimonial-card {
  border-radius: 14px;
  box-shadow: 0 1.5px 7px 0 #965D3C13;
  border: 1.5px solid #D5CABD;
}

/* === EFFECTS ==== */
.card:hover, .pricing-package:hover {
  box-shadow: 0 7px 36px 0 #965D3C11, 0 2.5px 0 #FFD26521;
  border-color: #FDB833;
}

/* === ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .cta-primary, .cta-secondary, .cookie-consent-btn {
    transition: background 0.21s, color 0.21s, box-shadow 0.21s, border-color 0.21s;
  }
  .feature, .card, .testimonial-card {
    transition: box-shadow 0.17s, border-color 0.17s;
  }
}

/* === Z-INDEX LAYERING === */
header { z-index: 1002; position: relative; }
.mobile-menu { z-index: 2100; }
.cookie-consent-banner { z-index: 2222; }
.cookie-modal { z-index: 3000; }

/* === RETRO NOSTALGIA DECOR === */
.section:before {
  content:'';
  display:block;
  position:absolute;
  left:30px; top:-18px;
  width:55px; height:8px;
  background: repeating-linear-gradient(90deg,#FDB833,#FDB833 6px, transparent 6px, transparent 11px);
  opacity: 0.32;
  border-radius:3px;
  z-index:1;
}
.section:after {
  content:'';
  display:block;
  position:absolute;
  right:30px; bottom:-18px;
  width:44px; height:8px;
  background: repeating-linear-gradient(90deg,#FFD265,#FFD265 9px, transparent 9px, transparent 15px);
  opacity:0.27;
  border-radius:3px;
  z-index:1;
}
@media (max-width:600px) {
  .section:before,.section:after{ display:none; }
}

/* === THANK-YOU PAGE === */
.thank-you {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
  padding:48px 15px 45px 15px;
  background: #FFE083;
  border-radius:18px;
  box-shadow:0 6px 22px 0 #FFD26525;
  border:2px solid #FFD265;
  margin:0 auto 24px auto;
}

/* === ACCESSIBILITY CONTRASTS === */
.testimonial-card,
.testimonial-card p,
.testimonial-card .testimonial-content {
  color: #21232C !important;
  background: #FFE083 !important;
}

/* === HIDDEN === */
[hidden] { display:none !important; }


/*
  -- End of CSS vintage_retro theme for Lumina Hollow
*/
