/* ==========================================
   MOVE & THRIVE - REDESIGN
   Color Scheme from Screenshots:
   - Background: #E8E4F3 (Light lavender)
   - Header: #2E1A47 (Dark purple/navy)
   - Text: #3A3A3A (Dark gray)
   - Links: #6B5B95 (Purple)
   - Accent: #4A4A4A (Charcoal)
   ========================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lavender-bg: #E8E4F3;
  --dark-purple: #2E1A47;
  --text-dark: #3A3A3A;
  --text-medium: #4A4A4A;
  --link-purple: #6B5B95;
  --white: #FFFFFF;
  --light-gray: #F5F3F8;
  --border-color: #D0C9E0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--lavender-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  background-color: var(--dark-purple);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.25rem;
  transition: opacity 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover:not(.active) {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .header-container {
    padding-right: 0.5rem;
  }

  .main-nav {
    gap: 0.75rem;
    margin-right: 0.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
main {
  padding-top: 60px; /* Account for fixed header */
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Image / Image Placeholders */
.hero-image {
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.logo-hero-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* Email Section */
.email-section {
  text-align: center;
  padding: 1.5rem 1rem;
}

.email-link {
  color: var(--link-purple);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--dark-purple);
  text-decoration: underline;
}

/* Welcome Section */
.welcome-section {
  text-align: center;
  padding: 2rem 1.5rem;
}

.main-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.subtitle {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.tagline {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-style: italic;
}

/* About Section */
.about-section {
  text-align: center;
  padding: 2rem 1.5rem;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.credentials {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.location {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* Social Media Icons Section */
.social-icons-section {
  padding: 2rem 1.5rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.social-icon {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.icon-img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Bio Section */
.bio-section {
  padding: 2rem 1.5rem;
  color: var(--text-dark);
}

.bio-section p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bio-intro {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bio-intro-bold {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.bio-header {
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 2rem 0 1.5rem 0;
  line-height: 1.4;
}

.bio-list {
  list-style: disc;
  margin: 1rem 0 1.5rem 0;
  padding-left: 2rem;
}

.bio-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.closing-statement {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.final-bio {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.page-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info {
  margin-bottom: 2rem;
}

.enquiry-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 0.5rem;
}

.service-block {
  background-color: var(--lavender-bg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 2px solid #b8a8d6;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-block p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.equipment-list {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-style: italic;
}

.service-types {
  font-weight: 600;
  color: var(--text-dark);
}

.service-activities {
  font-style: italic;
}

.pricing {
  font-weight: 600;
  color: var(--link-purple);
  font-size: 1rem;
}

.external-link {
  color: var(--link-purple);
  text-decoration: none;
  word-break: break-word;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.5rem;
}

.external-link:hover {
  text-decoration: underline;
}

.more-info {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.more-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 2rem 1rem;
}

.gallery-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item .image-placeholder {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
}

/* Small Logo Section */
.small-logo-section {
  padding: 2rem 1.5rem;
  text-align: center;
}

.small-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Contact Section */
.contact-section {
  padding: 3rem 1.5rem;
  text-align: center;
}

.contact-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-block {
  background-color: var(--lavender-bg);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 2px solid #b8a8d6;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 1rem auto;
}

.contact-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-link {
  color: var(--link-purple);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--dark-purple);
  text-decoration: underline;
}

/* Social Section */
.social-section {
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.social-text {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  word-break: break-word;
  line-height: 1.5;
}

.social-link {
  color: var(--link-purple);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--dark-purple);
}

/* Back to Top Section */
.back-to-top-section {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.back-to-top-btn {
  background-color: var(--dark-purple);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(46, 26, 71, 0.3);
}

.back-to-top-btn:hover {
  background-color: #3d2558;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 26, 71, 0.4);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
}

.footer a {
  color: var(--lavender-bg);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (min-width: 768px) {
  .main-title {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 1.15rem;
  }

  .section-heading {
    font-size: 2.25rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .contact-heading {
    font-size: 2.25rem;
  }

  .bio-section p,
  .service-block p {
    font-size: 1rem;
  }

  .gallery-grid-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .service-block {
    padding: 2rem;
  }

  .icon-img {
    width: 50px;
    height: 50px;
  }

  .social-icons {
    gap: 3rem;
  }

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

  .contact-icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1024px) {
  main {
    max-width: 700px;
  }

  .hero-image {
    padding: 1.5rem;
  }

  .gallery-grid-row {
    max-width: 100%;
  }

  .gallery-item {
    max-width: 300px;
  }
}

/* ==========================================
   UTILITIES
   ========================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
