/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif; /* Or 'Poppins' / 'Raleway' */
    margin: 0;
    padding: 0;
    background-color: #fffaf7;
    color: #333;
  }

/* Navigation */
header {
  background-color: #ffe8ec;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    background-color: #ffe8f0;
    padding: 1rem 0;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .logo img {
    height: 80px;
    width: auto;
    margin-top: -20px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-links a {
    text-decoration: none;
    color: #007080;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
  }

.logo {
  height: 40px;
}

.linkedin-icon .bg {
  transition: fill 0.3s ease;
}

.linkedin-icon:hover .bg {
  fill: #0a66c2; /* LinkedIn blue (hover effect) */
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #007c91;
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  color: #ff5f8f;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #007c91;
  margin-bottom: 1.5rem;
}

#about,
#services,
#testimonials,
#appointment {
  padding: 2rem 1.5rem;
}

#about p {
    font-size: 1.125rem; /* slightly larger than default */
    color: #333;          /* darker for better contrast */
    line-height: 1.7;     /* improve readability */
    max-width: 700px;     /* keep lines from stretching too wide */
    margin: 0 auto;       /* center it */
    text-align: left;     /* Changed from center to left */
  }

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #d1f2f2, #ffe8ec);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007c91;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.btn {
  display: inline-block;
  background-color: #ffb6b9;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  min-width: 250px;   /* 🔑 same width */
}

.waitlist-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem; /* 🔑 reduced spacing */
  margin-bottom: 2rem; /* optional to give breathing room */
}

.nav-cta {
  background-color: #ff5f8f;   /* standout color */
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background-color: #d94c73;
}

.booking-logo{
  margin-top: 70px;
  margin-left: 80px;
}

.btn:hover {
  background-color: #f87590;
}

/* About Section - Enhanced Layout */
#about {
  background-color: #fff;
  padding: 5rem 2rem;
}

.aboutmeimg {
  width: 450px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0; /* Prevents image from shrinking */
}

.about-text {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background-color: #fafafa;
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid #007c91;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-text > div {
  flex: 2; /* Text takes up 2/3 of the space */
}

.about-text h2 {
  font-size: 2rem;
  color: #007c91;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 0;
}



/* Second about section - content columns */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
  margin-top: -165px;
}

/* Content sections styling for second about section */
.about-content > div {
  background-color: #fafafa;
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid #007c91;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #007c91;
  text-align: left;
  font-weight: 600;
  position: relative;
}

.about-content h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ffb6b9;
  margin-top: 0.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* Highlight key terms */
.about-content p strong {
  color: #007c91;
  font-weight: 600;
}

/* Removed unused .about-image styles since they don't match the HTML */

/* Services */
#services {
  background-color: #fef5d7;
  padding: 3rem 2rem;
}

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

.service-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-logo {
  margin-top: 25px;
  width: 75px;
  height: auto;
}

.service-card p,
.testimonial-card p {
  font-size: 1rem;         /* Or try 1.1rem for slightly larger */
  line-height: 1.7;        /* Increased line spacing */
  color: #333;             /* Optional: make text a bit darker for contrast */
  font-family: 'Outfit', sans-serif;
  margin-top: 0.5rem;
}

.service-icon {
  font-size: 2rem;
  color: #ff85a2;
  margin-bottom: 0.5rem;
}

/* Testimonials */
#testimonials {
  background-color: #e0f7f7;
  padding: 3rem 2rem;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.stars {
  color: #ffc107;
}

/* Appointment */
#appointment {
  padding: 3rem 2rem;
  background-color: #fff2f9;
}

.appointment-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.appointment-text h3 {
  color: #d63384;
}

.work-hours {
  margin-top: 1rem;
  list-style: none;
  font-weight: 900;
}

.appointment-calendly {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

/* Footer */
footer {
  background-color: #007c91;
  color: white;
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-section h3 {
  color: #fff;
}

.footer-section p {
  margin-top: 10px;
}

.footer-section a {
  color: #ffe8ec;
  text-decoration: none;
}

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

.footer-section ul {
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.social-icons a svg {
  margin-top: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .about-content,
  .appointment-container,
  .testimonials-container,
  .footer-content {
    flex-direction: row;
  }

  .appointment-text,
  .appointment-calendly {
    flex: 1;
  }

  .footer-content {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  /* Mobile navigation */
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffe8ec;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* Mobile about section adjustments */
  .about-text {
    flex-direction: column !important;
    gap: 3rem !important;
    padding: 2rem !important;
    min-height: auto !important;
    text-align: center;
  }

  .about-text > div:first-child {
    flex: none !important;
    padding-right: 0 !important;
  }

  .about-text h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-text p {
    font-size: 1.05rem;
    text-align: center;
  }

  .aboutmeimg {
    width: 280px !important;
    height: 350px !important;
    margin: 0 auto !important;
    align-self: center !important;
  }

  .about-content {
    padding: 3rem 1rem;
    gap: 3rem;
  }
  
  .about-content > div {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .about-content h1 {
    font-size: 1.5rem;
  }
  
  .about-text h2 {
    font-size: 1.6rem;
  }
  
  .about-content p,
  .about-text p {
    font-size: 1rem;
  }
}