/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #2a2a2a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #fa79cd; /* Soft pink-purple blend */
}

a {
  text-decoration: none;
  color: #fa79cd; /* Soft pink-purple */
}

a:hover {
  color: #d46aff; /* Slightly deeper pink-purple */
}

/* Header */
/* Header */
header {
  background: #1a1a1a;
  padding: 15px 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 2rem; /* Smaller font size */
}

/* Search Bar Styling */
#search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}


/* Footer */
footer {
  background: #1a1a1a; /* Very dark gray */
  color: #fff;
  padding: 15px 0; /* Reduced height */
  text-align: center;
}

footer p {
  margin: 5px 0;
  font-size: 0.9rem; /* Smaller font size */
}

footer a {
  color: #fa79cd; /* Soft pink-purple */
}

footer a:hover {
  color: #d46aff; /* Deeper pink-purple */
}

.escort-info .escort-properties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 5px;
  margin-bottom: 10px;
}
		 
/* Therapists Grid */
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.therapist-item {
  background: #444;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  gap: 12px;
}

.profile-section {
  flex: 1;
  min-width: 45%; /* 40-50% of box width */
  display: flex;
  flex-direction: column;
}

.escort-info {
  flex: 2;
  padding-left: 12px; /* Separate description from image */
  border-left: 1px solid #666; /* Visual divider */
}


.escort-info p {
  line-height: 1.4;
  font-size: 0.95rem;
}

.escort-info h3 {
  margin: 0 0 8px 0;
  color: #fa79cd;
}


.profile-img {
  width: 100%; /* Fill container width */
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid #fa79cd;
  margin-bottom: 8px; /* Space between image and text */
}

.profile-img.top-img {
	height: 250px;
}

.therapist-item:hover {
  transform: translateY(-5px); /* Subtle lift effect */
}

.name-region {
  text-align: left; /* Align name/region under image */
  margin-bottom: 0px;
}

.name-region h3 {
  margin: 8px 0 0 0; /* Reduced bottom margin */
  font-size: 1.1rem;
}

.name-region p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc; /* Slightly lighter text for region */
}


/* Header Adjustments */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}


.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Push search + nav to the right */
  gap: 10px; /* Spacing between search bar and nav */
}


/* Smaller header padding */
header {
  padding: 15px 0; /* Slightly increased to fit search bar */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
  }

  #search-form {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .therapist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .therapist-item {
    flex-direction: column;
  }
  
  .escort-info {
    border-left: none;
    border-top: 1px solid #666;
    padding-left: 0;
    padding-top: 12px;
  }

}

@media (max-width: 480px) {
  .therapist-grid {
    grid-template-columns: 1fr;
  }
}
