/*
Theme Name: GratiseenWebsite.nl
Theme URI: https://gratiseenwebsite.nl
Author: OpenAI
Author URI: https://gratiseenwebsite.nl
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: gratiseenwebsite
*/

:root {
  --gew-bg: #12071f;
  --gew-bg-2: #24103b;
  --gew-panel: rgba(255,255,255,0.08);
  --gew-panel-strong: rgba(255,255,255,0.12);
  --gew-text: #ffffff;
  --gew-text-soft: rgba(255,255,255,0.84);
  --gew-muted: rgba(255,255,255,0.68);
  --gew-primary: #8f42ff;
  --gew-secondary: #f14fbe;
  --gew-accent: #c98cff;
  --gew-light: #f7f2ff;
  --gew-darktext: #2f2142;
  --gew-border: rgba(255,255,255,0.14);
  --gew-shadow: 0 20px 60px rgba(14,4,28,0.35);
  --gew-radius: 22px;
  --gew-radius-sm: 16px;
  --gew-max: 1240px;
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--gew-darktext);
  background: #ffffff;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container, .gew-container {
  width: min(calc(100% - 32px), var(--gew-max));
  margin: 0 auto;
}
.screen-reader-text { position: absolute; left: -9999px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(77,22,130,0.92), rgba(62,20,113,0.85));
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.7rem;
}
.site-branding__mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, #d5a2ff, #8d41ff 60%, #4d1c7c 100%);
  position: relative;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.18), 0 10px 30px rgba(53, 16, 92, 0.45);
}
.site-branding__mark::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 3px solid rgba(255,255,255,0.95);
  border-radius: 10px;
}
.site-navigation {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-navigation ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 6px;
  flex-wrap: wrap;
}
.site-navigation li { margin: 0; }
.site-navigation a {
  color: rgba(255,255,255,0.93);
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 12px;
  transition: 0.25s ease;
}
.site-navigation a:hover,
.site-navigation .current-menu-item > a {
  background: rgba(255,255,255,0.1);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gew-secondary), var(--gew-primary));
  box-shadow: 0 10px 30px rgba(136, 51, 255, 0.34);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(241,79,190,0.26), transparent 24%),
    radial-gradient(circle at 62% 80%, rgba(143,66,255,0.35), transparent 30%),
    linear-gradient(135deg, #4b1485 0%, #651da0 40%, #6d1ca8 58%, #38115f 100%);
  color: #fff;
}
.hero::before,
.cta-banner::before,
.footer-gew::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255,255,255,0.08) 18% 20%, transparent 20% 32%, rgba(255,255,255,0.05) 32% 34%, transparent 34%),
    linear-gradient(-25deg, transparent 0 58%, rgba(255,255,255,0.08) 58% 60%, transparent 60% 72%, rgba(255,255,255,0.06) 72% 74%, transparent 74%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
  min-height: 700px;
  padding: 70px 0 54px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
  font-weight: 700;
}
.hero__title {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero__text {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.88);
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  min-height: 58px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gew-secondary), var(--gew-primary));
  box-shadow: 0 16px 38px rgba(117, 34, 214, 0.36);
}
.btn--secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.device-scene {
  position: relative;
  min-height: 540px;
}
.device {
  position: absolute;
  background: linear-gradient(180deg, #15151f, #0c0c12);
  border-radius: 20px;
  box-shadow: 0 35px 80px rgba(22, 3, 37, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
}
.device__screen {
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 12%),
    linear-gradient(135deg, #5c1d99, #9f50ff 58%, #291043);
}
.device__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09) 0 38px, transparent 38px),
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.08) 18% 28%, transparent 28% 100%);
}
.device__screen::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 18%;
  bottom: 8%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.95)) top / 100% 14% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.85)) 8% 26% / 30% 11% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.25)) 46% 26% / 46% 11% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.92)) 8% 46% / 42% 24% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.75)) 56% 46% / 36% 24% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.15)) center bottom / 84% 16% no-repeat;
}
.device--desktop {
  width: 540px;
  height: 335px;
  right: 20px;
  top: 0;
}
.device--desktop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -74px;
  transform: translateX(-50%);
  width: 110px;
  height: 74px;
  background: linear-gradient(180deg, #ddd, #b1acc1);
  clip-path: polygon(28% 0, 72% 0, 88% 100%, 12% 100%);
}
.device--desktop::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  width: 240px;
  height: 22px;
  background: linear-gradient(180deg, #cac7d5, #948ea8);
  border-radius: 999px;
}
.device--tablet {
  width: 170px;
  height: 235px;
  left: 35px;
  bottom: 46px;
}
.device--laptop {
  width: 275px;
  height: 168px;
  right: 0;
  bottom: 18px;
}
.device--laptop::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 320px;
  height: 16px;
  background: linear-gradient(180deg, #c8c4d5, #8f899b);
  border-radius: 0 0 999px 999px;
}
.device--phone {
  width: 98px;
  height: 188px;
  left: 200px;
  bottom: 20px;
  border-radius: 22px;
}

.features-strip {
  background: #f4edf9;
  padding: 28px 0;
  border-bottom: 1px solid #eadcf8;
}
.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-mini {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 10px;
}
.feature-mini__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  color: var(--gew-primary);
  background: linear-gradient(180deg, rgba(143,66,255,0.12), rgba(241,79,190,0.08));
  display: grid;
  place-items: center;
  border: 1px solid rgba(143,66,255,0.15);
}
.feature-mini__icon svg { width: 28px; height: 28px; }
.feature-mini h3 {
  margin: 0 0 2px;
  font-size: 1.22rem;
  color: #532a84;
}
.feature-mini p {
  margin: 0;
  color: #6d5a82;
  font-size: 0.98rem;
}

.section {
  padding: 82px 0;
}
.section--light { background: #faf7fd; }
.section--purple {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(circle at 95% 70%, rgba(255,255,255,0.08), transparent 20%),
    linear-gradient(135deg, #53148b, #7f2ad6 55%, #4c137f);
}
.section--purple::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 16%, rgba(255,255,255,0.07) 16% 18%, transparent 18% 32%, rgba(255,255,255,0.06) 32% 34%, transparent 34%),
    linear-gradient(-35deg, transparent 0 62%, rgba(255,255,255,0.08) 62% 64%, transparent 64% 78%, rgba(255,255,255,0.06) 78% 80%, transparent 80%);
  pointer-events: none;
}
.section__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
}
.section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--gew-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
.section--purple .section__eyebrow { color: #f4b5ff; }
.section__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: inherit;
}
.section__text {
  margin: 0 auto;
  font-size: 1.08rem;
  color: rgba(47,33,66,0.75);
}
.section--purple .section__text { color: rgba(255,255,255,0.83); }

.card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.info-card {
  overflow: hidden;
  border-radius: var(--gew-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(32,17,58,0.12);
  border: 1px solid rgba(69,35,111,0.08);
}
.info-card__media {
  position: relative;
  height: 214px;
  background: linear-gradient(135deg, #6530a8, #a253ff 60%, #f1bfd8);
}
.info-card__media::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 16%;
  bottom: 12%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.92)) top / 100% 15% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.20)) 8% 28% / 84% 8% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.92)) 8% 42% / 40% 36% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.72)) 54% 42% / 30% 36% no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.20)) center bottom / 84% 10% no-repeat;
}
.info-card__media--booking::after,
.info-card__media--portfolio::after,
.info-card__media--shop::after,
.info-card__media--blog::after,
.info-card__media--business::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 146px;
  right: 14px;
  bottom: 14px;
  border-radius: 18px;
  border: 3px solid rgba(18,18,25,0.9);
  background: linear-gradient(180deg, #fff, #f5efff);
  box-shadow: 0 10px 28px rgba(15, 4, 28, 0.22);
}
.info-card__media--booking::after {
  width: 160px;
  height: 110px;
  border-radius: 14px;
  right: 16px;
  bottom: 18px;
}
.info-card__body {
  padding: 24px 22px 26px;
}
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
  color: #2d1c43;
}
.info-card p {
  margin: 0;
  color: #665777;
}

.portfolio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 16px 50px rgba(29, 7, 52, 0.3);
}
.portfolio-card__media {
  position: relative;
  min-height: 270px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
}
.portfolio-card__body { padding: 22px 22px 28px; }
.portfolio-card__title { margin: 0 0 8px; font-size: 1.4rem; }
.portfolio-card__text { margin: 0; color: rgba(255,255,255,0.82); }

.testimonial-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.testimonial-list {
  display: grid;
  gap: 18px;
}
.testimonial {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(34,18,58,0.12);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.testimonial__avatar {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efb8f9, #8f42ff);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.24);
}
.testimonial__quote {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #4e3d63;
}
.testimonial__name {
  margin: 0;
  color: #2b1c41;
  font-weight: 800;
}
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #511789, #7a25d0 52%, #4a1279);
  box-shadow: 0 20px 60px rgba(51, 13, 88, 0.34);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
}
.cta-banner h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}
.cta-banner p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
}
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.content-area {
  padding: 70px 0;
}
.entry-card {
  background: #fff;
  border: 1px solid #eee4f7;
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(45, 24, 72, 0.08);
  padding: 36px;
}
.entry-title, .page-title { margin-top: 0; }
.entry-content h2, .entry-content h3, .entry-content h4 {
  color: #361f51;
}

.footer-gew {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #300c53, #4d1481 52%, #2a0844);
}
.footer-gew__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 70px 0 22px;
}
.footer-gew h4 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}
.footer-gew p,
.footer-gew li,
.footer-gew a {
  color: rgba(255,255,255,0.82);
}
.footer-gew ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-brand {
  max-width: 420px;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
}
.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.gew-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gew-post-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ebdff8;
  box-shadow: 0 12px 36px rgba(46, 21, 75, 0.08);
}
.gew-post-card__body { padding: 24px; }
.gew-post-card h2 { font-size: 1.35rem; margin-top: 0; }

@media (max-width: 1150px) {
  .hero__inner,
  .testimonial-cta,
  .footer-gew__inner,
  .card-grid,
  .portfolio-grid,
  .features-strip__grid,
  .gew-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__inner { grid-template-columns: 1fr; }
  .device-scene { min-height: 500px; }
  .footer-gew__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 76px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }
  .site-navigation { justify-content: center; flex-wrap: wrap; }
  .card-grid,
  .portfolio-grid,
  .features-strip__grid,
  .testimonial-cta,
  .footer-gew__inner,
  .gew-post-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .hero__inner { min-height: auto; padding-top: 54px; }
  .device-scene { min-height: 420px; transform: scale(0.88); transform-origin: center top; }
  .device--desktop { width: 420px; height: 260px; right: 50%; transform: translateX(50%); }
  .device--tablet { left: 10px; }
  .device--phone { left: 126px; }
  .device--laptop { right: 10px; width: 220px; }
}

@media (max-width: 560px) {
  .site-branding { font-size: 1.3rem; }
  .header-cta { width: 100%; }
  .hero__actions,
  .cta-banner__actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .device-scene { transform: scale(0.72); min-height: 320px; }
  .testimonial { flex-direction: column; }
  .entry-card { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}

