/* monopole.style - Holographic Organic Design */
/* Colors: #E0F0F1, #4A3F6B, #F0E6F6, #C9A0DC, #8ED1C0, #FCCAB5, #F2B5D4, #A0C4E8 */
/* Fonts: Poiret One (display), Space Grotesk (sub), Lora (body), Inter (UI) */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: #4A3F6B;
  background: #E0F0F1;
  overflow-x: hidden;
  cursor: none;
}

/* --- Holographic Background --- */
#holographic-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #C9A0DC, #F2B5D4, #FCCAB5, #8ED1C0, #A0C4E8, #C9A0DC);
  background-size: 600% 600%;
  animation: holographic-shift 20s ease infinite;
}

@keyframes holographic-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Particle Canvas --- */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* --- Cursor Follower --- */
#cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,220,0.4), rgba(142,209,192,0.2), transparent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: screen;
  opacity: 0;
}

#cursor-follower.visible {
  opacity: 1;
}

#cursor-follower.expanded {
  width: 80px;
  height: 80px;
}

/* --- Floating Navigation --- */
#floating-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.nav-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
}

.nav-dot::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(74,63,107,0.3);
  border: 2px solid rgba(74,63,107,0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.nav-dot:hover::after,
.nav-dot.active::after {
  background: #C9A0DC;
  border-color: #C9A0DC;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(201,160,220,0.6);
}

.nav-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4A3F6B;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-dot:hover .nav-label {
  opacity: 1;
  transform: translateX(0);
}

/* --- Organic Canvas --- */
#organic-canvas {
  position: relative;
  z-index: 1;
}

/* --- Content Regions --- */
.content-region {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

/* --- Blob Shapes --- */
.blob-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.blob-hero {
  width: 90vw;
  height: 80vh;
  top: 10%;
  left: 5%;
}

.blob-about {
  width: 85vw;
  height: 85vh;
  top: 5%;
  left: 8%;
}

.blob-about-accent {
  width: 40vw;
  height: 50vh;
  top: 30%;
  right: 0;
  left: auto;
}

.blob-services {
  width: 90vw;
  height: 90vh;
  top: 5%;
  left: 5%;
}

.blob-work {
  width: 85vw;
  height: 90vh;
  top: 3%;
  left: 7%;
}

.blob-contact {
  width: 80vw;
  height: 80vh;
  top: 10%;
  left: 10%;
}

.blob-contact-accent {
  width: 35vw;
  height: 45vh;
  bottom: 5%;
  left: 5%;
  top: auto;
}

.morphing-path {
  transition: d 2s ease-in-out;
}

/* --- Hero Section --- */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-family: 'Poiret One', cursive;
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #4A3F6B;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards 0.3s;
}

.hero-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #4A3F6B;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-divider {
  margin: 20px auto;
  width: 200px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.wave-divider {
  width: 100%;
  height: auto;
}

.wave-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawWave 2s ease forwards 1.2s;
}

@keyframes drawWave {
  to { stroke-dashoffset: 0; }
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-style: italic;
  color: rgba(74,63,107,0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 1.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- Section Titles --- */
.section-title {
  font-family: 'Poiret One', cursive;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #4A3F6B;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-intro {
  font-family: 'Lora', serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic;
  color: rgba(74,63,107,0.7);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- About Section --- */
.about-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.about-text-group {
  margin-bottom: 50px;
}

.body-text {
  font-family: 'Lora', serif;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.9;
  color: #4A3F6B;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.body-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-number {
  font-family: 'Poiret One', cursive;
  font-size: 48px;
  color: #C9A0DC;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(74,63,107,0.6);
  margin-top: 8px;
}

/* --- Services Section --- */
.services-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
}

.services-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.service-blob {
  position: relative;
  width: 260px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
  cursor: none;
}

.service-blob.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-blob:hover {
  transform: translateY(-5px) scale(1.05);
}

.service-blob-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px;
}

.service-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4A3F6B;
  margin-bottom: 12px;
}

.service-desc {
  font-family: 'Lora', serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(74,63,107,0.75);
  font-style: italic;
}

/* --- Work Section --- */
.work-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.work-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-item {
  background: rgba(240,230,246,0.4);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(201,160,220,0.2);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  cursor: none;
}

.work-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.work-item:nth-child(even) {
  transform: translateX(30px);
}

.work-item:nth-child(even).visible {
  transform: translateX(0);
}

.work-item:hover {
  border-color: rgba(201,160,220,0.5);
  box-shadow: 0 10px 40px rgba(201,160,220,0.15);
}

.work-swatch {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.work-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #4A3F6B;
  margin-bottom: 8px;
}

.work-category {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A0DC;
  margin-bottom: 16px;
}

.work-desc {
  font-family: 'Lora', serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(74,63,107,0.75);
}

/* --- Contact Section --- */
.contact-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.contact-form-wrapper {
  margin-top: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #4A3F6B;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(74,63,107,0.2);
  outline: none;
  transition: border-color 0.4s ease;
  cursor: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(74,63,107,0.35);
  font-style: italic;
  font-family: 'Lora', serif;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.field-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A0DC, #8ED1C0);
  transition: width 0.4s ease, left 0.4s ease;
}

.form-field input:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
  width: 100%;
  left: 0;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F0E6F6;
  background: linear-gradient(135deg, #4A3F6B, #C9A0DC);
  border: none;
  border-radius: 50px;
  cursor: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 16px;
  align-self: center;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(201,160,220,0.4);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.contact-info {
  margin-top: 50px;
}

.contact-detail {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(74,63,107,0.6);
  margin-bottom: 8px;
}

/* --- Footer --- */
#site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.footer-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(74,63,107,0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #floating-nav {
    right: 15px;
    gap: 15px;
  }

  .nav-label {
    display: none;
  }

  .content-region {
    padding: 60px 20px;
  }

  .about-stats {
    gap: 30px;
  }

  .services-flow {
    flex-direction: column;
    align-items: center;
  }

  .work-item {
    padding: 28px;
  }

  body {
    cursor: auto;
  }

  #cursor-follower {
    display: none;
  }

  .service-blob,
  .work-item,
  .submit-btn,
  .form-field input,
  .form-field textarea {
    cursor: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .stat-number {
    font-size: 36px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}
