/* Main CSS for shemaleaiporn.site */
:root {
  --primary-color: #E91E63;
  --secondary-color: #9C27B0;
  --accent-color: #00BCD4;
  --text-color: #333333;
  --light-color: #f8f8f8;
  --dark-color: #222222;
  --gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  font-size: 1.6rem;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Styles */
header {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Banner Section */
.banner {
  background: var(--gradient);
  color: white;
  padding: 8rem 0;
  text-align: center;
}

.banner h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.banner p {
  font-size: 1.8rem;
  max-width: 70rem;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 5rem;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Benefits Section */
.benefits {
  padding: 8rem 0;
  background-color: white;
}

.section-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 5rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background: var(--accent-color);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.benefit-card {
  background: var(--light-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
}

.benefit-content {
  padding: 2rem;
}

.benefit-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.benefit-card p {
  color: #666;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: var(--dark-color);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 1.8rem;
  max-width: 60rem;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-info p {
  margin-top: 1.5rem;
  opacity: 0.7;
  font-size: 1.4rem;
}

.footer-links h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  opacity: 0.7;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.4rem;
  opacity: 0.6;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

/* Media Queries */
@media (max-width: 768px) {
  html {
    font-size: 57%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .banner h1 {
    font-size: 3.2rem;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 576px) {
  .banner {
    padding: 6rem 0;
  }
  
  .banner p {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .benefits {
    padding: 6rem 0;
  }
}
