/* Luxe effecten - Airco Techniek Oss */

:root {
  --lux-gold: #c9a227;
  --lux-gold-soft: rgba(201, 162, 39, 0.35);
  --lux-glass: rgba(255, 255, 255, 0.72);
  --lux-blur: 18px;
}

/* Scrollvoortgang */
.lux-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 10001;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--lux-gold));
  box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.5);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Zwevende ambient orbs */
.lux-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lux-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
}

.lux-orb--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.55), transparent 70%);
  animation: lux-float-a 18s ease-in-out infinite;
}

.lux-orb--2 {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  top: 42%;
  right: -6%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.45), transparent 70%);
  animation: lux-float-b 22s ease-in-out infinite;
}

.lux-orb--3 {
  width: min(38vw, 300px);
  height: min(38vw, 300px);
  bottom: 12%;
  left: 28%;
  background: radial-gradient(circle, var(--lux-gold-soft), transparent 70%);
  animation: lux-float-c 20s ease-in-out infinite;
}

@keyframes lux-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}

@keyframes lux-float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5%, -4%) scale(1.06); }
}

@keyframes lux-float-c {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3%, -5%); }
}

/* Header luxe */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.35);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.site-header.is-scrolled .brand-logo {
  transform: scale(0.94);
  transition: transform 0.4s var(--ease-out-expo);
}

/* Hero luxe */
body.home .hero {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.88) 45%, rgba(255, 255, 255, 0.92) 100%),
    url('assets/photos/luxury-interior.jpg');
  background-size: cover;
  background-position: center 30%;
}

body.home .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: lux-shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes lux-shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}

.hero-kicker {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.12), rgba(var(--lux-gold), 0.15));
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  animation: lux-kicker-glow 3s ease-in-out infinite;
}

@keyframes lux-kicker-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(var(--brand-rgb), 0); }
  50% { box-shadow: 0 0 20px rgba(var(--brand-rgb), 0.25); }
}

.hero-title .lux-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em) rotateX(12deg);
  transform-origin: center bottom;
  animation: lux-word-in 0.85s var(--ease-out-expo) forwards;
}

.hero-title .lux-word:nth-child(1) { animation-delay: 0.08s; }
.hero-title .lux-word:nth-child(2) { animation-delay: 0.14s; }
.hero-title .lux-word:nth-child(3) { animation-delay: 0.2s; }
.hero-title .lux-word:nth-child(4) { animation-delay: 0.26s; }
.hero-title .lux-word:nth-child(5) { animation-delay: 0.32s; }
.hero-title .lux-word:nth-child(6) { animation-delay: 0.38s; }
.hero-title .lux-word:nth-child(n + 7) { animation-delay: 0.44s; }

@keyframes lux-word-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-lead,
.hero-cta {
  opacity: 0;
  animation: lux-fade-up 0.9s var(--ease-out-expo) 0.45s forwards;
}

@keyframes lux-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.hero-cta { animation-delay: 0.58s; }

.lux-shine-wrap {
  position: relative;
  overflow: hidden;
}

.lux-shine-wrap::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 42%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 58%
  );
  transform: translateX(-120%) rotate(12deg);
  animation: lux-card-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lux-card-shine {
  0%, 75%, 100% { transform: translateX(-120%) rotate(12deg); }
  40% { transform: translateX(120%) rotate(12deg); }
}

.hero-figure.lux-shine-wrap {
  animation: lux-hero-float 7s ease-in-out infinite;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 24px 48px rgba(var(--brand-rgb), 0.18);
}

@keyframes lux-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-panel {
  background: var(--lux-glass);
  backdrop-filter: blur(var(--lux-blur)) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

/* Knoppen */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, #2563eb 45%, var(--brand-hover) 100%);
  background-size: 200% 200%;
  animation: lux-btn-gradient 6s ease infinite;
  box-shadow: 0 10px 28px rgba(var(--brand-rgb), 0.35);
}

@keyframes lux-btn-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out-expo);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  transition: all 0.35s var(--ease-out-expo);
}

.btn-secondary:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.15);
}

/* Secties & kaarten */
.section-eyebrow {
  position: relative;
  display: inline-block;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--lux-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.is-revealed .section-eyebrow::after,
.section-head.is-revealed .section-eyebrow::after {
  transform: scaleX(1);
}

[data-reveal] {
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo),
    filter 0.75s var(--ease-out-expo);
}

[data-reveal].is-revealed {
  filter: none;
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
}

.feature-card,
.brand-card,
.team-card,
.step-card,
.contact-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.brand-card::before,
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--lux-x, 50%) var(--lux-y, 50%), rgba(var(--brand-rgb), 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.feature-card:hover::before,
.brand-card:hover::before,
.team-card:hover::before {
  opacity: 1;
}

.team-card--photo::before {
  z-index: 2;
}

.team-card--photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card--media:hover .feature-card-media img {
  transform: scale(1.08);
}

.photo-gallery li {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.photo-gallery li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.photo-gallery li:hover::after {
  opacity: 1;
}

.photo-gallery img {
  transition: transform 0.7s var(--ease-out-expo), filter 0.4s;
}

.photo-gallery li:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.project-carousel-slide {
  position: relative;
}

.project-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  pointer-events: none;
}

.project-carousel-slide:hover::after {
  opacity: 1;
}

.project-carousel-slide:hover img {
  transform: scale(1.08);
  filter: brightness(1.04);
}

/* Live strip pulse */
.live-strip {
  position: relative;
  overflow: hidden;
}

.live-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: lux-strip-sweep 5s ease-in-out infinite;
}

@keyframes lux-strip-sweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.live-stat-num {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reviews */
.reviews-track {
  transition: transform 0.85s var(--ease-out-expo);
}

.review-card {
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

/* Trust strip marquee */
.trust-strip {
  overflow: hidden;
}

.trust-strip-inner.lux-marquee {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  animation: lux-marquee 28s linear infinite;
  width: max-content;
}

@keyframes lux-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Cursor spotlight (desktop) */
.lux-spotlight {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.08), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s;
}

body.lux-cursor-on .lux-spotlight {
  opacity: 1;
}

/* Subpagina's */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: -30% 20% 0 -20%;
  background: radial-gradient(ellipse at 30% 20%, rgba(var(--brand-rgb), 0.15), transparent 55%);
  pointer-events: none;
}

.page-hero-figure,
.split-figure {
  box-shadow:
    var(--shadow-lg),
    0 20px 40px rgba(var(--brand-rgb), 0.12);
}

/* CTA band - originele foto (Elementor sectie 6bfe094 / b93a5c0) */
.cta-band {
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #d2ecff;
  background-image: url('assets/photos/cta-contact-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .cta-band::after {
    background-attachment: fixed;
  }
}

@media (max-width: 899px) {
  .page-hero {
    overflow-x: clip;
    overflow-y: visible;
  }

  [data-tilt] {
    transform: none !important;
  }

  .lux-ambient,
  .lux-scroll-progress,
  .lux-spotlight {
    max-width: 100vw;
    pointer-events: none;
  }

  .trust-strip .trust-strip-inner.wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .trust-strip-inner.lux-marquee {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    gap: 1.75rem;
    animation: lux-marquee 22s linear infinite;
    transform: translateX(0);
  }

  .trust-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 639px) {
  .cta-band {
    min-height: 0;
    padding: 2rem 0;
  }

  .lux-ambient {
    opacity: 0.35;
  }

  .lux-orb {
    filter: blur(50px);
  }
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--brand-rgb), 0.6);
  z-index: 1;
  pointer-events: none;
}

.cta-band > .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-band h2 {
  text-shadow: 0 2px 16px rgba(15, 23, 42, 0.25);
}

.cta-band p {
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.2);
}

.cta-band-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band-link:hover {
  opacity: 0.9;
}

/* Pagina binnenkomst */
body.lux-loaded main {
  animation: lux-main-in 0.9s var(--ease-out-expo) both;
}

@keyframes lux-main-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.nav a:not(.nav-cta) {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.15rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--lux-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out-expo);
}

.nav a:not(.nav-cta):hover::after,
.nav a.nav-current::after {
  transform: scaleX(1);
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(var(--brand-rgb), 0.04));
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .lux-ambient,
  .lux-scroll-progress,
  .lux-spotlight,
  body.home .hero::after,
  .lux-shine-wrap::after,
  .hero-figure.lux-shine-wrap,
  .live-strip::before,
  .btn-primary,
  .trust-strip-inner.lux-marquee,
  body.lux-loaded main {
    animation: none !important;
    display: none;
  }

  .hero-title .lux-word,
  .hero-lead,
  .hero-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  [data-reveal] {
    filter: none;
  }

  [data-tilt] {
    transform: none !important;
  }
}
