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

:root {
  /* Color Palette - Soft, warm, and calming */
  --cream: #faf8f5;
  --light-pink: #f4e6e1;
  --soft-pink: #e8d5d0;
  --sage-green: #8a9682;
  --warm-white: #ffffff;
  --text-dark: #4a4a4a;
  --text-light: #6b6b6b;
  --accent-pink: #d4a5a0;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-heading: "Playfair Display", serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --border-radius: 12px;
  --navbar-height: 70px;

  /* Shadows */
  --soft-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

/* Navigation */
.navbar {
  background-color: var(--warm-white);
  box-shadow: var(--soft-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--navbar-height);
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--sage-green);
}

.nav-cta {
  background-color: var(--sage-green) !important;
  color: var(--warm-white) !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: var(--accent-pink) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}

/* Mobile menu active states */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu.active {
  display: flex !important;
  position: fixed;
  left: 0;
  top: var(--navbar-height);
  flex-direction: column;
  background-color: var(--warm-white);
  width: 100%;
  text-align: center;
  box-shadow: var(--soft-shadow);
  padding: 2rem 0;
  gap: 1.5rem;
  z-index: 999;
}

/* Hero Section */
.hero {
  padding-top: var(--navbar-height);
  background-color: var(--cream);
  min-height: 70vh; /* Reduced from 100vh */
}

.hero-content {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: calc(70vh - var(--navbar-height)); /* Reduced from 100vh */
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 74, 74, 0.75) 0%,
    rgba(168, 181, 160, 0.65) 50%,
    rgba(74, 74, 74, 0.8) 100%
  );
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 3rem;
  margin-left: calc(max(20px, (100vw - 1200px) / 2));
  width: 100%;
}

.hero-logo {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.tagline {
  font-size: 1.4rem;
  color: var(--light-pink);
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--warm-white);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--sage-green);
  color: var(--warm-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--soft-shadow);
}

.cta-button:hover {
  background-color: var(--accent-pink);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.cta-button.large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  color: var(--sage-green);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("images/favicon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* White favicon for pink sections */
.services .section-title::before,
.contact .section-title::before {
  filter: brightness(0) invert(1);
}

/* About Section */
.about {
  padding: var(--section-padding);
  background-color: var(--warm-white);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--sage-green);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-text h2::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("images/favicon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* About Me Section */
.about-me {
  padding: var(--section-padding);
  background-color: var(--cream);
}

.about-me-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-me-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-me-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
}

.services-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-single {
  display: flex;
  justify-content: center;
}

.service-card-combined {
  background-color: var(--warm-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.service-icons {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.service-icon svg {
  color: var(--sage-green);
  width: 60px;
  height: 60px;
}

.service-icon span {
  font-weight: 500;
  color: var(--sage-green);
  font-size: 1.1rem;
}

.service-card-combined h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.service-price {
  background-color: var(--sage-green);
  color: var(--warm-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-duration {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.service-descriptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.service-description h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.service-description p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-summary {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--light-pink);
  padding-top: 1.5rem;
}

/* Benefits Section */
.benefits {
  padding: var(--section-padding);
  background-color: var(--warm-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--cream);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  color: var(--sage-green);
  width: 60px;
  height: 60px;
}

.benefit-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section (Merged with Location) */
.contact {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-pink) 100%);
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-details-section {
  margin-bottom: 0.5rem;
}

.location-details-section {
  margin-top: 0.5rem;
}

.contact-details-section h3,
.location-details-section h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--sage-green);
  margin-bottom: 1.5rem;
}

.location-details-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 1rem;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-item strong {
  color: var(--sage-green);
  display: inline-block;
  width: 80px;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--sage-green);
}

.contact-cta {
  margin-top: 1.5rem;
}

.booking-note {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.location-details {
  padding: 1.5rem;
  background-color: var(--warm-white);
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
}

.location-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-item strong {
  color: var(--sage-green);
  font-weight: 600;
  width: 120px;
  flex-shrink: 0;
}

.location-item span {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: fit-content;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: var(--border-radius);
}

/* Footer */
.footer {
  background-color: var(--sage-green);
  color: var(--warm-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 280px 1fr; /* Give specific width to middle column */
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 280px; /* Add minimum width */
}

.footer-hours h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 260px; /* Add minimum width for the list */
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  opacity: 0.9;
  white-space: nowrap; /* Prevent wrapping */
}

/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--warm-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

/* Vertibase Link in Copyright */
.vertibase-credit {
  font-size: 0.9rem;
}

.vertibase-credit a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vertibase-credit a:hover {
  transform: translateY(-1px);
}

.vertibase-credit .verti {
  color: white;
}

.vertibase-credit .base {
  color: #00b0f0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--sage-green);
  color: var(--warm-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--accent-pink);
  transform: translateY(-3px);
}

.scroll-to-top:focus {
  outline: 2px solid var(--sage-green);
  outline-offset: 2px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  :root {
    --navbar-height: 60px;
    --section-padding: 50px 0;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    height: var(--navbar-height);
    padding: 0 15px;
  }

  .logo-image {
    height: 45px;
  }

  .hero-logo {
    height: 80px;
  }

  .hero-text {
    padding: 2rem 1.5rem;
    margin-left: 0;
    max-width: 100%;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-me-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-me-image {
    order: 1;
  }

  .about-me-text {
    order: 2;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .location-details {
    text-align: left;
  }

  .service-icons {
    gap: 2rem;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .section-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title::before {
    width: 35px;
    height: 35px;
  }

  .about-text h2 {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .about-text h2::before {
    width: 35px;
    height: 35px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    gap: 3rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 2.5rem;
  }

  .contact-map iframe {
    height: 350px;
  }

  .location-item strong {
    width: 110px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --navbar-height: 55px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .logo-image {
    height: 30px;
  }

  .hero-logo {
    height: 60px;
  }

  .footer-logo {
    height: 25px;
  }

  .hero-text {
    padding: 1.5rem 1rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .service-card-combined,
  .benefit-item {
    padding: 1.5rem;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }

  .section-title::before {
    width: 30px;
    height: 30px;
  }

  .about-text h2::before {
    width: 30px;
    height: 30px;
  }

  .service-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-map iframe {
    height: 300px;
  }

  .location-details {
    padding: 1rem;
  }

  .location-item {
    font-size: 0.9rem;
  }

  .location-item strong {
    width: 100px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--sage-green);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .cta-button {
    display: none;
  }

  body {
    background-color: white;
  }

  .hero,
  .services,
  .benefits,
  .contact {
    background: white;
  }
}

.benefit-item:hover .benefit-icon svg,
.service-card-combined:hover .service-icon svg {
  color: var(--accent-pink);
  transform: scale(1.1);
  transition: all 0.3s ease;
}
