/* Voltaris LuxTime - Playful_Dynamic CSS (Flexbox Only, Mobile First, Modern, Responsive, Includes Burger Menu & Cookie Banner) */

/* ================================ */
/* CSS RESET & NORMALIZE            */
/* ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #F6F5F0;
}
body {
  background: #F6F5F0;
  color: #11161C;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
}
li {
  margin-bottom: 8px;
}
a {
  color: #BFA980;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #00B1F4;
  text-decoration: underline;
}
hr {
  border: none;
  border-top: 1px solid #E0E2E8;
  margin: 40px 0;
}

/* ================================ */
/* TYPOGRAPHY: Playful Dynamic      */
/* ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #11161C;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #F78E1E;
  text-shadow: 1px 2px 0 #FBE542;
}
@media (min-width: 500px) {
  h1 { font-size: 2.5rem; }
}
@media (min-width: 950px) {
  h1 { font-size: 3.25rem; }
}
h2 {
  font-size: 1.45rem;
  color: #00B3C8;
  margin-bottom: 18px;
}
@media (min-width: 500px) {
  h2 { font-size: 1.9rem; }
}
@media (min-width: 950px) {
  h2 { font-size: 2.3rem; }
}
h3 {
  font-size: 1.15rem;
  color: #E94787;
  font-weight: 700;
}
h4 { font-size: 1rem; margin-bottom: 12px; }
strong { font-weight: 700; }

.text-section p + ul, .text-section ul + p {
  margin-top: 14px;
}

.text-section ul {
  list-style: none;
  margin-top: 10px;
}
.text-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}
.text-section ul li:before {
  content: '★';
  color: #FFCE3B;
  font-size: 1.1em;
  position: absolute;
  top: 1px; left: 0;
  transition: color .2s;
  font-family: inherit;
}
.text-section ul li img {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
  margin-right: 6px;
  margin-left: -22px;
}

/* ================================ */
/* COLOR PALETTE                    */
/* ================================ */
:root {
  --vt-primary: #11161C;
  --vt-secondary: #BFA980;
  --vt-accent: #F6F5F0;
  --vt-playful-1: #F78E1E;  /* Orange */
  --vt-playful-2: #1FDABF;  /* Aqua */
  --vt-playful-3: #FFCE3B;  /* Yellow */
  --vt-playful-4: #00B3C8;  /* Bright Blue */
  --vt-playful-5: #E94787;  /* Fun Pink */
}

/* ================================ */
/* CONTAINER UTILITIES              */
/* ================================ */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1280px;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

/* Responsive grid/columns (flexbox only!) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  box-shadow: 0 4px 18px 0 rgba(30,26,73,.07);
  border-radius: 28px;
  padding: 30px 26px;
  transition: box-shadow .25s, transform .18s;
  min-width: 220px;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(246,166,30,0.22), 0 2px 12px 0 rgba(0,179,200,0.09);
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F6F5F0;
  border-radius: 36px;
}
@media (min-width: 800px) {
  .section {
    padding: 54px 36px;
    margin-bottom: 70px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/********** FEATURE GRID **********/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 10px 0 rgba(224,226,232,0.22);
  padding: 22px 20px 28px 20px;
  min-width: 200px;
  max-width: 285px;
  flex: 1 1 222px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .21s, transform .15s;
}
.feature-item img {
  background: var(--vt-playful-3);
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px 0 rgba(241,152,26,0.15);
  transition: background .19s;
}
.feature-item:hover img {
  background: var(--vt-playful-2);
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(224,200,50,0.17);
  transform: translateY(-7px) scale(1.05);
}
.feature-item h3 {
  color: var(--vt-playful-5);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-item p { color: #555; font-size: 1rem; }

/*********** TESTIMONIALS ************/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 28px;
  min-width: 230px;
  max-width: 350px;
  margin-bottom: 20px;
  box-shadow: 0 4px 22px 0 rgba(0,179,200,0.12);
  border-left: 5px solid #E94787;
  position: relative;
  color: #221b09;
  font-size: 1.1rem;
}
.testimonial-card p {
  font-weight: 500;
  color: #11161c;
}
.testimonial-card span {
  color: #1FDABF;
  font-size: 0.98em;
  font-weight: 700;
  align-self: flex-end;
}
.testimonial-card strong {
  color: #BFA980;
}

/* ================================ */
/* HEADER & MAIN NAV                  */
/* ================================ */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(224,226,232,0.07);
  border-bottom: 4px solid #FFCE3B;
  position: relative;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 62px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 1rem;
}
header nav a {
  color: #11161C;
  font-weight: 500;
  padding: 8px 12px 8px 10px;
  border-radius: 16px;
  transition: color .21s, background .18s;
}
header nav a:hover, header nav a:focus {
  background: #F78E1E;
  color: #fff;
}
header img {
  max-height: 44px;
  margin-right: 16px;
}
@media (max-width: 950px) {
  header .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ================================ */
/* BUTTONS, PRIMARY & SECONDARY     */
/* ================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg,#F78E1E 60%,#1FDABF 120%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  border: none;
  border-radius: 22px;
  padding: 13px 32px;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 10px 0 rgba(241,152,26,0.14), 0 1.5px 6px 0 rgba(0,179,200,0.07);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 0 #FFCE3B;
  transition: background .13s, transform .13s, box-shadow .16s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(100deg, #E94787 50%, #FFCE3B 120%);
  color: #fff;
  box-shadow: 0 7px 36px 0 rgba(224,200,50,0.17);
  transform: scale(1.04) rotate(-1.4deg);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #00B3C8;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  border: 2.5px solid #00B3C8;
  border-radius: 16px;
  padding: 9px 22px;
  box-shadow: 0 2px 8px 0 rgba(241,152,26,0.10);
  cursor: pointer;
  margin: 10px 6px 10px 0;
  transition: background .19s, color .19s, border .19s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E94787;
  color: #fff;
  border-color: #E94787;
}

/* ================================ */
/* FOOTER AREA                      */
/* ================================ */
footer {
  background: #fff;
  border-top: 3px solid #BFA980;
  padding: 22px 0 8px 0;
  margin-top: 60px;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #BFA980;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background .14s, color .16s;
}
footer nav a:hover, footer nav a:focus {
  background: #11161C;
  color: #FFF;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: .99rem;
  color: #BFA980;
}
.footer-brand img { height: 32px; }

/* ================================ */
/* MOBILE MENU BURGER NAV           */
/* ================================ */
.mobile-menu-toggle {
  background: #F78E1E;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 14px;
  padding: 8px 13px;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 22px;
  z-index: 1112;
  display: flex;
  box-shadow: 0 2px 7px 0 rgba(241,152,26,0.11);
  transition: background .18s, color .18s, transform .14s;
}
.mobile-menu-toggle:active {
  transform: scale(.97);
}
@media (min-width: 990px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 74vw;
  max-width: 385px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 32px 0 rgba(246,166,30,.15);
  z-index: 1114;
  display: flex;
  flex-direction: column;
  padding: 33px 28px 16px 20px;
  transition: transform .34s cubic-bezier(.96,.01,.26,1.05), right .2s;
  transform: translateX(100%);
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}

.mobile-menu-close {
  background: #E94787;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 11px;
  align-self: flex-end;
  padding: 6px 13px;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(224,200,70,0.10);
  transition: background .11s, color .14s;
  outline: none;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F78E1E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.16rem;
  color: #11161C;
  background: #FFCE3B;
  padding: 13px 18px;
  border-radius: 18px;
  margin-bottom: 4px;
  font-weight: 700;
  box-shadow: 0 2.5px 8px 0 rgba(246,166,30,0.08);
  transition: background .18s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E94787;
  color: #fff;
}
@media (min-width: 990px) {
  .mobile-menu { display: none; }
}

/* Hide main navigation on mobile */
@media (max-width: 990px) {
  header nav, header .btn-primary { display: none; }
}

@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ================================ */
/* COOKIE CONSENT BANNER/POPUP      */
/* ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 -4px 28px 0 rgba(241,152,26,0.17);
  border-top: 5px solid #FFCE3B;
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 25px 20px 18px;
  gap: 24px;
  font-size: 1.05rem;
  transition: transform .36s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(200%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 220px;
  color: #222;
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 17px;
  border: none;
  margin: 0 1.5px;
  font-weight: 700;
  cursor: pointer;
  background: #FFCE3B;
  color: #11161C;
  transition: background .19s, color .18s;
}
.cookie-banner button.accept {
  background: #1FDABF;
  color: #fff;
}
.cookie-banner button.reject {
  background: #E94787;
  color: #fff;
}
.cookie-banner button.settings {
  background: #fff;
  border: 2px solid #FFCE3B;
  color: #F78E1E;
}
.cookie-banner button.accept:hover { background: #F78E1E; }
.cookie-banner button.reject:hover { background: #FFCE3B; color: #E94787; }
.cookie-banner button.settings:hover { background: #F6F5F0; color: #222; }

/* Consent Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,22,28,0.50);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .27s;
  opacity: 1;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 42px 2px rgba(246,166,30,0.22);
  width: 98vw;
  max-width: 420px;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal h2 {
  color: #F78E1E;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-category-toggle {
  width: 36px;
  height: 22px;
  background: #eee;
  border-radius: 11px;
  position: relative;
  display: inline-block;
  transition: background .16s;
}
.cookie-category-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-category-toggle .slider {
  position: absolute;
  top: 3px; left: 4px;
  width: 16px;
  height: 16px;
  background: #BFA980;
  border-radius: 50%;
  transition: left .17s cubic-bezier(.96,.01,.26,1), background .21s;
}
.cookie-category-toggle input:checked + .slider {
  background: #1FDABF;
  left: 16px;
}
.cookie-category.essential .cookie-category-toggle .slider {
  background: #6c6c6c;
}
.cookie-category.essential .cookie-category-toggle {
  background: #ddd;
}
.cookie-category.essential .cookie-category-toggle .slider {
  opacity: 0.7;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal button {
  font-family: 'Source Sans Pro', sans-serif;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-modal .accept {
  background: #1FDABF;
  color: #fff;
}
.cookie-modal .reject {
  background: #E94787;
  color: #fff;
}
.cookie-modal .close {
  background: #eee;
  color: #F78E1E;
}
.cookie-modal .accept:hover { background: #F78E1E; color: #fff; }
.cookie-modal .reject:hover { background: #FFCE3B; color: #E94787; }
.cookie-modal .close:hover { background: #FFCE3B; color: #222; }

/* ================================ */
/* MAP SNIPPET                      */
.map-snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  border-radius: 18px;
  background: #FFCE3B;
  padding: 13px 22px;
  font-weight: 600;
  color: #11161C;
  box-shadow: 0 2px 14px 0 rgba(241,152,26,0.08);
  font-size: 1rem;
}
.map-snippet img {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

/* ================================ */
/* MISC UTILS                       */
/* ================================ */
.text-section {
  color: #3a3630;
  margin-bottom: 16px;
}
.text-section h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.18rem;
  color: #1FDABF;
}
.text-section p {
  margin-bottom: 4px;
}

/***** Content Breathing Room *****/
main>.section, main section {
  margin-bottom: 48px;
  padding: 34px 8px;
  border-radius: 30px;
}
@media (min-width: 850px){
  main>.section, main section {padding: 44px 20px;}
}

/* CTA Final
------------------------------ */
.cta-final {
  background: linear-gradient(90deg,#F78E1E 40%,#FFCE3B 100%);
  color: #11161C;
  padding: 42px 22px;
  border-radius: 34px;
  text-align: center;
  box-shadow: 0 4px 28px 0 rgba(246,166,30,0.19);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ================================ */
/* RESPONSIVE                      */
/* ================================ */
@media (max-width: 768px) {

  .container { padding: 0 10px; }
  .section, main>.section, main section { padding: 28px 3px; }

  .feature-grid, .testimonials, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .testimonial-card, .card {
    min-width: unset;
    max-width: 100%;
    width: 99%;
    align-self: stretch;
  }
  .testimonial-card {
    padding: 15px 16px;
    margin-bottom: 18px;
  }
  .footer-brand { justify-content: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.05rem; }
}

/* Micro-interactions/Animations */
.btn-primary, .btn-secondary, .feature-item, .card, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
  will-change: transform, box-shadow, background, color;
}

/************* END *************/
