/* Velvet Assets – style.css – CREATIVE_ARTISTIC theme (Flexbox Only, Responsive, Burger/Cookie) */

/* ——— 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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background: #F2F3F7;
  color: #233247;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #233247;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #7792B0;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}


/* ——— CSS VARIABLES (WITH FALLBACKS) ——— */
:root {
  --va-primary: #233247;
  --va-secondary: #7792B0;
  --va-accent: #F2F3F7;
  --va-action: #dd517f; /* Artistic vibrant accent */
  --va-highlight: #FFCF39; /* Artistic vibrant accent: yellow */
  --va-dark: #1d2737;
  --va-radius: 20px;
  --va-shadow: 0 6px 24px 0 rgba(35, 50, 71, 0.09), 0 1.5px 4px 0 rgba(35, 50, 71, 0.07);
  --va-font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --va-font-body: 'Roboto', Arial, sans-serif;
}


/* ——— GENERIC CONTAINER ——— */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--va-accent);
  border-radius: var(--va-radius);
}

/* ——— TYPOGRAPHY (Creative Artistic) ——— */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--va-font-display);
  font-weight: 700;
  color: var(--va-primary);
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.18;
  text-shadow: 0 3px 18px rgba(221,81,127,0.14), 0 1px 2px rgba(35,50,71,0.07);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  background: var(--va-action);
  border-radius: 2.5px;
  margin-top: 3px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--va-secondary);
}
p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: var(--va-dark);
}

blockquote {
  font-family: var(--va-font-display);
  font-size: 1.15rem;
  color: var(--va-primary);
  background: #fffacf;
  border-left: 7px solid var(--va-action);
  border-radius: var(--va-radius);
  margin-bottom: 14px;
  margin-top: 0;
  padding: 16px 26px;
  box-shadow: var(--va-shadow);
}

/* Artistic list marker */
ul li, ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1.06rem;
}
ul li:before {
  content: '\25E6';
  color: var(--va-action);
  font-size: 1.12em;
  position: absolute;
  left: 0;
  top: 0.08em;
}

strong {
  color: var(--va-action);
}

/* ——— HEADER AND NAVIGATION ——— */
header {
  background: #ffffff;
  box-shadow: 0 6px 20px 0 rgba(35,50,71,0.09);
  position: sticky;
  top: 0;
  z-index: 200;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}
nav img {
  height: 42px;
  width: auto;
  margin-right: 12px;
}

nav a {
  font-family: var(--va-font-body);
  color: var(--va-primary);
  font-weight: 500;
  font-size: 1.07rem;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
nav a.cta-primary {
  background: var(--va-action);
  color: #fff;
  font-weight: 700;
  font-family: var(--va-font-display);
  font-size: 1.13rem;
  border-radius: 13px;
  box-shadow: 0 2px 7px rgba(221,81,127,0.08);
  letter-spacing: 0.04em;
  transition: background .22s,color .18s, box-shadow .23s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: var(--va-primary);
  color: #fff;
  box-shadow: 0 2px 18px rgba(35,50,71,0.1);
}
nav a:hover, nav a:focus {
  background: var(--va-accent);
  color: var(--va-action);
}
nav a.cta-primary:active {
  background: var(--va-highlight);
  color: var(--va-primary);
}

/* ——— MOBILE MENU ——— */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--va-primary);
  padding: 2px 14px;
  background: #fff;
  margin-left: auto;
  border-radius: 10px;
  box-shadow: 0 0 2px rgba(35,50,71,0.1);
  z-index: 300;
  transition: background .24s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--va-accent);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff6fc;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.67,.01,.29,.99);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--va-primary);
  align-self: flex-end;
  background: transparent;
  border: none;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover {
  color: var(--va-action);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  padding: 13px 0;
  color: var(--va-primary);
  font-family: var(--va-font-display);
  border-radius: 12px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover {
  background: var(--va-action);
  color: #fff;
}

@media (max-width: 1024px) {
  nav {
    gap: 16px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  nav a:not(.cta-primary) { font-size: 0.98rem; }
  nav { gap: 10px; }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ——— HERO ——— */
section > .container > .content-wrapper:first-child {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  section > .container > .content-wrapper:first-child {
    min-height: 180px;
    padding-top: 0;
    gap: 13px;
  }
}

/* ——— CONTENT STRUCTURE / LISTS / TEXT-IMAGE ——— */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  background: #fff;
  transition: box-shadow .25s;
  position: relative;
}
.card:hover {
  box-shadow: 0 6px 34px 0 rgba(35,50,71,0.12);
}
.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;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ——— CTA BUTTONS ——— */
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--va-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 32px;
  background: var(--va-action);
  color: #fff;
  box-shadow: 0 2px 6px rgba(221,81,127,0.09);
  transition: background .22s,color .19s, box-shadow .25s, transform .09s;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta-secondary {
  background: var(--va-primary);
  color: #fff;
  font-weight: 600;
  margin-left: 0;
  border-radius: 12px;
  font-size: 1rem;
  padding: 12px 26px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--va-highlight);
  color: var(--va-primary);
  transform: translateY(-2px) scale(1.037);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--va-action);
  color: #fff;
  transform: translateY(-2px) scale(1.029);
}

/* ——— FEATURES & LISTS ——— */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul img, li img {
  height: 32px;
  width: 32px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(6px);
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
  background: none;
  border: none;
  margin-bottom: 16px;
}

/* ——— TESTIMONIALS ——— */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 560px;
  transition: box-shadow .22s, transform .11s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px 0 rgba(221,81,127,0.13);
  transform: translateY(-3px) scale(1.034);
}
.testimonial-card blockquote {
  border-left: 6px solid var(--va-action);
  font-size: 1.08rem;
  background: #fffbe8;
  color: #233247;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.7;
  filter: brightness(1);
}
.testimonial-details {
  color: var(--va-action);
  font-family: var(--va-font-display);
  font-size: 1.03rem;
  letter-spacing: 0.03em;
  text-align: right;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
  }
}


/* ——— FOOTER ——— */
footer {
  background: #fff;
  padding: 34px 0 16px 0;
  box-shadow: 0 -6px 20px 0 rgba(35,50,71,0.04);
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--va-secondary);
  font-size: .98rem;
  font-family: var(--va-font-display);
  padding: 4px 9px;
  border-radius: 7px;
  transition: background .15s, color .14s;
}
.footer-nav a:hover {
  background: var(--va-action);
  color: #fff;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--va-primary);
  font-size: .97rem;
}
.footer-contact img {
  height: 20px;
  width: 20px;
}
.footer-logo {
  margin-top: 10px;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 40px;
}
.footer-copy {
  color: #939abb;
  font-size: .91rem;
  margin-top: 4px;
  text-align: left;
}
@media (max-width: 768px) {
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
}

/* ——— SOCIAL ——— */
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}
.social-links a img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(35,50,71,0.07);
  background: #fff;
  transition: box-shadow .19s;
}
.social-links a:hover img {
  box-shadow: 0 8px 24px 0 rgba(221,81,127,0.13);
  background: var(--va-action);
}

/* ——— GENERAL RESPONSIVE ——— */
@media (max-width: 768px) {
  h1 { font-size: 2rem; margin-bottom: 18px;}
  h2 { font-size: 1.35rem; }
  p { font-size: 1rem; }
  .container { padding: 0 7px; }
  .section { padding: 28px 8px; margin-bottom: 38px; }
}

/* ——— ANIMATION CLASSES ——— */
.fade-in {
  animation: fadeIn .65s cubic-bezier(.36,1.14,.99,.99);
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: none; }
}

/* ——— COOKIE CONSENT BANNER ——— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -5px 22px rgba(35,50,71,0.14);
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 23px;
  width: 97%;
  margin: 0 auto 10px auto;
  max-width: 900px;
  transition: transform .5s cubic-bezier(.61,0,.39,1.02), opacity .3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner__msg {
  font-family: var(--va-font-body);
  color: var(--va-primary);
  font-size: 1rem;
  flex: 1 1 70%;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--va-font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  padding: 11px 23px;
  border: none;
  outline: none;
  background: var(--va-action);
  color: #fff;
  box-shadow: 0 4px 7px rgba(221,81,127,0.09);
  transition: background .19s, color .16s, transform .13s;
}
.cookie-btn.cookie-btn-reject {
  background: var(--va-secondary);
  color: #fff;
}
.cookie-btn.cookie-btn-settings {
  background: var(--va-primary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--va-highlight);
  color: var(--va-primary);
  transform: scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(221,81,127,0.13);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px;
    gap: 12px;
    width: 99%;
    font-size: .99rem;
  }
  .cookie-banner__actions {
    flex-wrap: wrap; gap: 8px; justify-content: flex-start;
  }
}

/* ——— COOKIE MODAL ——— */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(14,24,34,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .23s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none;}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 7px 40px 0 rgba(35,50,71,0.18);
  max-width: 395px;
  width: 98vw;
  padding: 33px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeIn .4s;
}
.cookie-modal h2 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  color: var(--va-primary);
}
.cookie-modal__close {
  position: absolute;
  right: 22px;
  top: 15px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--va-primary);
  cursor: pointer;
}
.cookie-modal__group {
  margin-bottom: 8px;
}
.cookie-modal__group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  font-family: var(--va-font-body);
}
.cookie-switch {
  display: inline-block;
  width: 35px;
  height: 20px;
  position: relative;
  margin-right: 6px;
}
.cookie-switch input { display: none; }
.cookie-switch span {
  position: absolute;
  cursor: pointer;
  background: #e1e3ea;
  border-radius: 12px;
  width: 35px;
  height: 20px;
  transition: background .14s;
}
.cookie-switch input:checked + span {
  background: var(--va-action);
}
.cookie-switch span::before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 9px;
  transition: left .13s, background .15s;
}
.cookie-switch input:checked + span::before {
  left: 16px;
  background: var(--va-highlight);
}
.cookie-modal__desc {
  color: #464a5f;
  font-size: .97rem;
  margin-top: 2px;
  margin-bottom: 9px;
}
/* Essential cookies always enabled msg */
.cookie-essential-msg {
  font-size: .95rem;
  color: #a7acba;
  margin-top: 2px; margin-left: 4px;
}

/* ——— CARD SPACING & FLEX ——— */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}
@media (max-width: 900px) {
  .card-container,
  .content-grid {
    gap: 13px;
  }
  .section { padding: 26px 7px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 35px; }

  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-logo { margin-top: 0; }
}

/* ——— MICRO-INTERACTIONS & HOVER EFFECTS ——— */
a, button, .cta-primary, .cta-secondary, .cookie-btn {
  transition: background .18s, color .15s, box-shadow .18s, transform .10s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(.96);
}
.card:hover { transform: scale(1.02); }

/* ——— FORMS & INPUTS (if any appear) ——— */
input, textarea, select {
  font-family: var(--va-font-body);
  background: #fff;
  color: var(--va-primary);
  border: 1.5px solid #dce1f0;
  border-radius: 8px;
  padding: 11px 15px;
  margin-bottom: 14px;
  font-size: 1rem;
  transition: border .17s, box-shadow .12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--va-action);
  box-shadow: 0 2px 13px 0 rgba(221,81,127,0.11);
}
label {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 7px;
  color: var(--va-primary);
}

/* ——— SPECIAL ARTISTIC ELEMENTS ——— */
h1, h2, h3, .cta-primary, .footer-logo img {
  /* Decorative brush underline for artistic flair */
  position: relative;
}
h2::after, h3::after {
  content: '';
  display: block;
  height: 5px;
  width: 40px;
  background: var(--va-highlight);
  border-radius: 3px;
  margin-top: 3px;
}
h1::before {
  content: '';
  position: absolute;
  left: -18px;
  top: -13px;
  width: 55px;
  height: 17px;
  background: rgba(221, 81, 127, 0.09);
  border-radius: 20px 6px 24px 19px;
  z-index: -1;
  pointer-events: none;
}

/* ——— ENSURE ADEQUATE SPACING ——— */
main > section,
.section {
  margin-bottom: 60px;
  min-height: 60px;
}

.content-wrapper > * , .text-section > *, .card-container > *, .content-grid > * {
  margin-bottom: 20px;
}
.card-content {
  display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 12px 0;
}

/* ——— PRINT / ACCESSIBILITY / FOCUS ——— */
a:focus, button:focus{
  outline: 3px dashed var(--va-action);
  outline-offset: 2px;
}

/* ——— END ——— */
