@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

:root {
  --dark-bg: #111111;
  --primary-purple: #8a2be2;
  --light-purple: #9933ff;
  --text-color: #ffffff;
  --text-light: #cccccc;
  --gray-bg: #222222;
  --dark-background: #1a1a1a;
  --dark-card-background: #2a2a2a;
  --primary-purple: #8e2de2;
  --secondary-pink: #4a00e0;
  --text-light: #ffffff;
  --text-muted-dark: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--dark-background);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background-color: var(--dark-bg);
  padding: 20px 0;
  border-bottom: 2px solid var(--primary-purple);
}

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

.logo img {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-purple);
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
}

.user-actions .favorites-count {
  font-weight: bold;
}

.user-actions .fa-heart {
  color: var(--primary-purple);
}

.user-actions .fa-bars {
  color: var(--text-color);
  cursor: pointer;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  padding: 50px 0 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(to right, #8a2be2, #9933ff);
}

.highlights-section {
  padding: 40px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.highlight-card {
  background-color: var(--gray-bg);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card img {
  width: 100%;
  height: auto;
  display: block;
}

.highlight-card .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-color);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.highlight-card .therapist-name {
  font-weight: bold;
}

.highlight-card .favorite-icon {
  color: var(--primary-purple);
  cursor: pointer;
  font-size: 1.2rem;
}

.therapists-section {
  padding: 40px 0;
}

.therapists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.therapist-card {
  background-color: var(--gray-bg);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.therapist-card:hover {
  transform: translateY(-5px);
}

.therapist-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-color);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.therapist-name {
  font-weight: bold;
}

.favorite-icon {
  color: var(--primary-purple);
  cursor: pointer;
  font-size: 1.2rem;
}

.about-us-section {
  padding: 40px 0;
  text-align: center;
}

.about-us-text {
  max-width: 800px;
  margin: 20px auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-us-details {
  margin-top: 10px;
  font-style: italic;
  color: var(--text-light);
}

.massage-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.massage-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-section {
  padding: 40px 0;
}

.accordion {
  max-width: 800px;
  margin: 40px auto;
}

.accordion-item {
  background-color: var(--gray-bg);
  border-bottom: 1px solid var(--dark-bg);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background-color: var(--gray-bg);
  color: var(--text-color);
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #333;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(180deg);
}

.accordion-content {
  background-color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.accordion-content p {
  padding: 15px 0;
  color: var(--text-light);
}

.main-footer {
  background-color: var(--gray-bg);
  padding: 40px 0;
  margin-top: 40px;
}

.main-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-social {
  width: 40%;
}

.footer-social h4 {
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.social-icons a {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-purple);
}



.footer-info {
  width: 50%;
  text-align: right;
  color: var(--text-light);
}

.footer-info p {
  margin: 5px 0;
}

.btn-send {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-purple);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-send:hover {
  background-color: var(--accent-pink);
}

.fas.fa-bars.menu-icon {
  display: none;
}