/* ppzz.lu - Retro-Futuristic Design */
/* Colors: #c4622d rust, #f5c842 yellow, #4a9fd4 sky, #0a1f3f navy, #f5ede0 cream, #e8f5f0 mint, #8a7a6a gray */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #0a1f3f;
  background-color: #f5ede0;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== CURSOR ORB ===== */
#cursor-orb {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.6) 0%, rgba(196,98,45,0.3) 60%, transparent 100%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: screen;
  will-change: left, top;
}

/* ===== CIRCUIT LINES SVG ===== */
#circuit-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
}

.circuit-line {
  stroke: #4a9fd4;
  stroke-width: 1.5;
  fill: none;
}

.circuit-node {
  fill: #4a9fd4;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  overflow: hidden;
  z-index: 2;
}

/* ===== PHOTO BACKGROUNDS ===== */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(10,31,63,0.85) 0%,
      rgba(196,98,45,0.4) 40%,
      rgba(245,200,66,0.3) 70%,
      rgba(74,159,212,0.5) 100%
    ),
    radial-gradient(ellipse at 30% 50%, rgba(196,98,45,0.3) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 30%, rgba(74,159,212,0.25) 0%, transparent 60%);
  background-color: #0a1f3f;
  filter: sepia(0.2) saturate(1.3) hue-rotate(15deg);
  z-index: -2;
}

.section-photo-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-bg {
  background:
    linear-gradient(160deg,
      rgba(245,237,224,0.95) 0%,
      rgba(232,245,240,0.9) 50%,
      rgba(245,237,224,0.95) 100%
    );
  background-color: #f5ede0;
}

.services-bg {
  background:
    linear-gradient(135deg,
      rgba(10,31,63,0.92) 0%,
      rgba(10,31,63,0.85) 50%,
      rgba(74,159,212,0.3) 100%
    ),
    radial-gradient(ellipse at 80% 20%, rgba(245,200,66,0.15) 0%, transparent 50%);
  background-color: #0a1f3f;
}

.showcase-bg {
  background:
    linear-gradient(180deg,
      rgba(245,237,224,0.97) 0%,
      rgba(232,245,240,0.92) 100%
    );
  background-color: #f5ede0;
}

.contact-bg {
  background:
    linear-gradient(135deg,
      rgba(10,31,63,0.9) 0%,
      rgba(196,98,45,0.3) 50%,
      rgba(10,31,63,0.85) 100%
    );
  background-color: #0a1f3f;
}

.hero-overlay,
.section-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-overlay {
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10,31,63,0.3) 100%);
}

/* ===== FROST PANELS ===== */
.frost-panel {
  background: rgba(245,237,224,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245,237,224,0.25);
  border-radius: 16px;
  padding: 60px;
  position: relative;
}

/* ===== HERO ===== */
.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out;
}

.display-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.08em;
  color: #f5ede0;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.accent-dot {
  color: #f5c842;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(245,237,224,0.85);
  margin-bottom: 24px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #c4622d, #f5c842);
  margin: 0 auto 24px;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,237,224,0.75);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatDown 2s ease-in-out infinite;
}

.scroll-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.5);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(245,237,224,0.4);
  border-bottom: 2px solid rgba(245,237,224,0.4);
  transform: rotate(45deg);
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0a1f3f;
  margin-bottom: 48px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c4622d, #f5c842);
  margin-top: 16px;
}

.section-heading--light {
  color: #f5ede0;
  text-align: center;
}

.section-heading--light::after {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTION INNER ===== */
.section-inner {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ===== ABOUT ===== */
.about-panel {
  max-width: 900px;
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.content-col p {
  font-size: 1.05rem;
  color: #0a1f3f;
  line-height: 1.9;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  text-align: center;
  padding: 48px 32px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.service-icon {
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #f5ede0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.95rem;
  color: rgba(245,237,224,0.7);
  line-height: 1.7;
}

/* ===== SHOWCASE ===== */
.showcase-panel {
  max-width: 1100px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.showcase-item {
  transition: transform 0.4s ease;
}

.showcase-item:hover {
  transform: translateY(-4px);
}

.showcase-thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
}

.retro-filter {
  filter: sepia(0.2) saturate(1.3) hue-rotate(15deg);
}

.showcase-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-placeholder {
  transform: scale(1.05);
}

.showcase-item-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: #0a1f3f;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.showcase-item-desc {
  font-size: 0.9rem;
  color: #8a7a6a;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-panel {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.contact-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(245,237,224,0.8);
  margin-bottom: 40px;
  line-height: 1.9;
}

.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #f5c842;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #c4622d;
}

.contact-separator {
  color: rgba(245,237,224,0.3);
}

.contact-location {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(245,237,224,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
#footer {
  background-color: #0a1f3f;
  padding: 32px 40px;
  border-top: 1px solid rgba(245,237,224,0.1);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #f5ede0;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.8rem;
  color: #8a7a6a;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Scroll reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .frost-panel {
    padding: 40px 28px;
  }
  .section {
    padding: 120px 24px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 100px 16px;
  }
  .frost-panel {
    padding: 32px 20px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .contact-links {
    flex-direction: column;
    gap: 12px;
  }
}
