/* =========================================================
   phonesex.chat — Updated style.css (UK version)
   ========================================================= */

/* === Base Styles === */
body {
  font-family: 'Arial', sans-serif;
  background-color: #fafafa;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === Logo === */
.site-logo {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  color: #f2f2f2;
  margin: 0;
}

.logo-accent {
  color: #ff3b3b;
  font-weight: 800;
}

/* === Header === */
header {
  background: linear-gradient(90deg, #000 0%, #1a1a1a 100%);
  padding: 15px 0;
}

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

/* === Intro Section === */
.intro-text {
  max-width: 850px;
  margin: 20px auto 5px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  padding: 0 15px;
}

.intro-text strong {
  color: #e40046;
  font-weight: 700;
}

/* === Profile Grid === */
.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px 5%;
  animation: fadeIn 1.5s ease;
}

.profile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.profile-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.profile-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.profile-card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

/* === Call-to-Action Buttons === */
.cta {
  display: inline-block;
  padding: 10px 22px;
  margin: 6px 4px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: subtlePulse 2.8s infinite;
  cursor: pointer;
  white-space: nowrap;
  background: #e40046;
  color: #fff;
}

.cta:hover,
.cta:focus {
  background: #ff3369;
  transform: scale(1.03);
  outline: none;
}

.cta.secondary {
  background: #1cb8a3;
  color: #fff;
}

.cta.secondary:hover,
.cta.secondary:focus {
  background: #22d2ba;
  transform: scale(1.03);
}

/* Accessibility focus ring */
.cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.4);
}

/* Device labels */
.cta .mobile-label {
  display: none;
}
.cta .desktop-label {
  display: inline;
}

@media (max-width: 768px) {
  .cta .mobile-label {
    display: inline;
  }
  .cta .desktop-label {
    display: none;
  }
}

/* === Price text === */
.price {
    display: block;
    text-align: center;
    font-size: 1rem;
    color: #e40046; /* red accent to match CTA */
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

/* === SEO Text Section === */
.seo-text {
  background: #fff;
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 40px 6%;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1.5s ease;
}

.seo-text h2,
.seo-text h3 {
  color: #e40046;
  margin-top: 30px;
  margin-bottom: 10px;
}

.seo-text p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

/* === FAQ Section === */
.faq {
  background: #f8f8f8;
  border-top: 2px solid #eee;
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 40px 6%;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1.8s ease;
}

.faq h2 {
  color: #e40046;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #e40046;
  margin-bottom: 5px;
}

.faq-item p {
  font-size: 0.95rem;
  margin: 0;
  color: #444;
}

/* === Footer === */
.site-footer {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  background-color: #111;
  padding: 25px 10px;
  line-height: 1.6;
}

.site-footer a {
  color: #ff2b2b;
  text-decoration: none;
  margin: 0 5px;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
  outline: none;
}

.site-footer strong {
  color: #fff;
}

/* === Animations === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtlePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* === Reduced Motion Support === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
  .cta {
    display: block;
    width: 80%;
    margin: 8px auto;
  }

  .profile-card img {
    height: 240px;
  }

  .seo-text,
  .faq {
    padding: 30px 7%;
  }

  .intro-text {
    font-size: 1rem;
  }

  .site-logo {
    font-size: 1.9rem;
  }
}
