/* ============================================================
   THE LOVE FOLK - COMPLETE MASTER BUILD v2.3
   ============================================================ */

/* --- 1. RESET & GLOBALS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
}
body {
  font-family: "Lato", sans-serif;
  color: #4a4a4a;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: #2e2e2e;
}

/* --- 2. FIXED WALLPAPER --- */
.wallpaper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/geelong+celebrants+vic.webp") no-repeat center
    center;
  background-size: cover;
  z-index: -1;
}

/* --- 3. NAVIGATION (Desktop & Scroll Logic) --- */
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 10000;
  padding: 15px 0;
  transition: all 0.4s ease-in-out;
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

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

.nav-logo-flat img {
  height: 45px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

#nav.scrolled .nav-links a {
  color: #4a4a4a;
}

/* --- 4. BUTTON SYSTEM (Square & Modern) --- */
.btn-solid,
.btn-outline,
.nav-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 !important;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-solid,
.nav-button {
  background-color: #cb6ce6 !important;
  color: #ffffff !important;
  border-color: #cb6ce6 !important;
}

.btn-solid:hover,
.nav-button:hover {
  background-color: transparent !important;
  color: #cb6ce6 !important;
}

.btn-outline.light {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline.light:hover {
  background-color: #cb6ce6;
  border-color: #cb6ce6;
  color: #ffffff;
}

.btn-outline.dark {
  border-color: #2e2e2e;
  color: #2e2e2e;
}
.btn-outline.dark:hover {
  background-color: #cb6ce6;
  border-color: #cb6ce6;
  color: #ffffff;
}

/* --- 5. HERO & MAIN CONTENT --- */
#header {
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}
.hero-logo img {
  height: 220px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
#hero {
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 700px;
}

#main {
  background: white;
  position: relative;
  z-index: 10;
}

/* ABOUT SECTION */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  padding: 8rem 10%;
  max-width: 1400px;
  margin: 0 auto;
}
.about-section img {
  width: 100%;
  border-radius: 500px 500px 0 0;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.subtitle {
  color: #cb6ce6;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* SERVICES GRID */
.services-section {
  padding: 6rem 10%;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.service-item {
  text-align: left;
}
.arch-image {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 4/5;
}
.arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.arch-image:hover img {
  transform: scale(1.05);
}

/* --- 6. HOW IT WORKS (4-Column) --- */
/* --- HOW IT WORKS (Soft Charcoal Version) --- */
.process-section {
  padding: 8rem 10%;
  background-color: #262626; /* Soft Charcoal (Elegant, not pitch black) */
  color: #ffffff; /* Flip all text to white */
}

.process-section .section-title {
  color: #ffffff;
  margin-bottom: 4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  position: relative;
  padding-top: 3.5rem;
}

.step-number {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  /* Make the numbers glow slightly or remain subtle pink */
  color: rgba(203, 108, 230, 0.15); 
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  color: #cb6ce6; /* Pink headings pop beautifully on charcoal */
}

.step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e0e0e0; /* Softer white for easier reading */
  position: relative;
  z-index: 2;
}

/* RESPONSIVE UPDATES */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-section {
    padding: 6rem 8%;
  }
}

/* --- 7. REVIEWS & FOOTER --- */
.reviews-section {
  padding: 8rem 10%;
  text-align: center;
  background: #ffffff;
}
.review-text {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.review-author {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#footer {
  padding: 6rem 10%;
  background: #2e2e2e;
  color: #ffffff;
  text-align: center;
}
.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}
.footer-socials a {
  color: white;
  font-size: 1.2rem;
  margin: 0 1rem;
  transition: 0.3s;
}
.footer-socials a:hover {
  color: #cb6ce6;
}

/* --- 8. MOBILE & TABLET LOGIC --- */
.menu-toggle,
.close-menu {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10001;
  color: #ffffff;
}
#nav.scrolled .menu-toggle {
  color: #4a4a4a;
}

@media (max-width: 1024px) {
  .nav-container {
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  .menu-toggle {
    display: block !important;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    color: #4a4a4a !important;
    font-size: 1.1rem;
  }
  .close-menu {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #4a4a4a;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .review-text {
    font-size: 1.2rem;
  }
}

/* WIGGLE */
.accent-underline {
  position: relative;
  display: inline-block;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 7 Q 30 2, 60 7 T 100 7' stroke='%23cb6ce6' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: 100% 12px;
  padding-bottom: 12px;
}
/* --- FOOTER (Website Match) --- */
#footer {
  padding: 6rem 10% 2rem;
  background: #1a1a1a; /* Deeper dark background */
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4rem;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-column h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  color: #cb6ce6; /* Pink headings for the links */
}

.footer-column p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: #cb6ce6;
}

.footer-socials {
  margin-top: 1.5rem;
}

.footer-socials a {
  color: white;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #cb6ce6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  opacity: 0.4;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .footer-socials a {
    margin: 0 0.75rem;
  }
}
/* --- FEATURED IN (Sleek Bar) --- */
.featured-section {
  padding: 2rem 10%;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.featured-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #aaa;
  margin-bottom: 3rem;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-row img {
  height: 50px; /* Adjust height based on your specific logos */
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.logo-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* MOBILE FEATURED */
@media (max-width: 768px) {
  .logo-row {
    gap: 1rem;
  }
  .logo-row img {
    height: 40px;
  }
}}