@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Wix Madefor Text", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* ── LOGO / HERO HEADER ── */
.logo-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem 1.5rem 5rem;
  background: url(../images/hero-bg.jpg) center / cover no-repeat;
  border-bottom: 1px solid #e0e0e0;
}

.header-splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.header-splash img {
  width: 100%;
}

.logo-mark {
  position: relative;
  z-index: 1;
}

.logo-name img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.logo-tagline {
  font-family: "Playpen Sans", cursive;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #C8217B;
  font-weight: 500;
  margin-top: 0.25rem;
}


/* ── HERO HEADLINE ── */
.hero {
  padding: 5rem 8% 3.75rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #333;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero-underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #e91e63, #ff5252);
  border-radius: 3px;
}


/* ── SERVICE SECTIONS ── */
.service-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service-section.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1 1 50%;
  padding: 3.5rem 8%;
}

.service-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-text h3.blue   { color: #0097a7; }
.service-text h3.pink   { color: #e91e63; }
.service-text h3.purple { color: #9c27b0; }

.service-text p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.service-visual {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.reverse .service-visual img {
  transform: scaleX(-1);
}


/* ── CHECK LIST ── */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  color: #555;
  margin-bottom: 0.55rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 20px;
  height: 20px;
}


/* ── CONTACT SECTION ── */
.contact-section {
  border-top: 4px solid #ff9800;
  background: #3a3a3a;
  color: #fff;
  padding: 3.5rem 8%;
}

.contact-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2.25rem;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5rem;
  max-width: 800px;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}

.contact-item a {
  color: #8ecae6;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── ENTRANCE ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Initial hidden state for animated elements */
.animate {
  opacity: 0;
}

/* Logo entrance — plays on load */
.logo-mark {
  animation: fadeUp 1s ease-out 0.3s both;
}

.header-splash {
  animation: fadeIn 1.2s ease-out both;
}

/* Scroll-triggered animations */
.animate.visible {
  opacity: 1;
}

.animate.fade-up.visible {
  animation: fadeUp 0.7s ease-out both;
}

.animate.slide-left.visible {
  animation: slideInLeft 0.7s ease-out both;
}

.animate.slide-right.visible {
  animation: slideInRight 0.7s ease-out both;
}

/* Stagger children */
.animate.visible .check-list li {
  opacity: 0;
  animation: fadeUp 0.5s ease-out both;
}
.animate.visible .check-list li:nth-child(1) { animation-delay: 0.15s; }
.animate.visible .check-list li:nth-child(2) { animation-delay: 0.25s; }
.animate.visible .check-list li:nth-child(3) { animation-delay: 0.35s; }
.animate.visible .check-list li:nth-child(4) { animation-delay: 0.45s; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate, .logo-mark, .header-splash {
    animation: none !important;
    opacity: 1 !important;
  }
  .animate.visible .check-list li {
    animation: none !important;
    opacity: 1 !important;
  }
}


/* ══════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════ */

/* ── Tablet (≤ 960px) ── */
@media (max-width: 960px) {
  .service-section,
  .service-section.reverse {
    flex-direction: column;
  }

  .service-text {
    flex: none;
    width: 100%;
    padding: 3rem 6%;
  }

  .service-visual {
    flex: none;
    width: 100%;
  }

  .service-visual img {
    max-height: 320px;
  }

  .reverse .service-text {
    order: 0;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .logo-section {
    min-height: 80vh;
    padding: 2rem 1.25rem 3rem;
  }

  .logo-name img {
    max-width: 260px;
  }

  .hero {
    padding: 3rem 6% 2.5rem;
  }

  .hero h1 br {
    display: none;
  }

  .service-text {
    padding: 2rem 6%;
  }

  .service-text p {
    max-width: 100%;
  }

  .service-visual img {
    max-height: 240px;
  }

  .contact-section {
    padding: 2.5rem 6%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}