/* 
 * Main Stylesheet for createaiwomenforporn.pw
 * Modern, mobile-responsive design with teal/pink color scheme
 */

/* CSS Reset and Base Styles */
:root {
  --primary-color: #00c2cb;
  --secondary-color: #ff6b97;
  --dark-color: #1e2a3a;
  --light-color: #ffffff;
  --bg-color: #f5f9fc;
  --text-color: #333f4d;
  --card-bg: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-size: 16px;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.8em;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dark-color);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

/* Buttons */
.primary-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 194, 203, 0.4);
  color: white;
}

.primary-button.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.secondary-button {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  text-align: center;
  transition: var(--transition);
  margin-left: 15px;
}

.secondary-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Header and Navigation */
header {
  padding: 15px 0;
  background-color: var(--light-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  width: 180px;
  height: auto;
}

.logo-text {
  fill: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--text-color);
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.cta-nav {
  background: var(--gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
}

.cta-nav:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(to bottom right, rgba(245, 249, 252, 1), rgba(230, 240, 250, 1));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 194, 203, 0.1), transparent 70%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 107, 151, 0.1), transparent 70%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  width: 50%;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.hero-visual {
  width: 45%;
  display: flex;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: var(--light-color);
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.step {
  width: 30%;
  padding: 30px 20px;
  background: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  fill: var(--primary-color);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--bg-color);
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  padding: 35px 25px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--light-color);
}

.benefits h2 {
  margin-bottom: 50px;
}

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

.benefits-info {
  width: 50%;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.check-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefits-visual {
  width: 45%;
  display: flex;
  justify-content: center;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
  color: var(--light-color);
}

.cta h2 {
  color: var(--light-color);
}

.cta h2:after {
  background: var(--light-color);
  left: 50%;
  transform: translateX(-50%);
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta .primary-button {
  background: var(--light-color);
  color: var(--primary-color);
}

.cta .primary-button:hover {
  background: var(--light-color);
  color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  padding: 60px 0 20px;
  color: #adbdcf;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-logo {
  width: 30%;
}

.footer-logo .logo-svg {
  width: 180px;
  margin-bottom: 15px;
}

.footer-logo .logo-text {
  fill: var(--light-color);
}

.footer-logo p {
  opacity: 0.7;
}

.footer-links {
  display: flex;
  width: 60%;
  justify-content: flex-end;
}

.footer-col {
  margin-left: 60px;
}

.footer-col h4 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #adbdcf;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-icon {
  display: flex;
  align-items: center;
}

.footer-icon img {
  margin-left: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container,
  .benefits-content {
    flex-direction: column;
  }

  .hero-content,
  .hero-visual,
  .benefits-info,
  .benefits-visual {
    width: 100%;
  }

  .hero-content,
  .benefits-info {
    margin-bottom: 40px;
  }

  .footer-logo {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }

  .footer-col {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: var(--light-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin: 15px 0;
    width: 100%;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .steps {
    flex-direction: column;
  }

  .step {
    width: 100%;
    margin-bottom: 30px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .secondary-button {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-icon {
    margin-top: 15px;
    justify-content: center;
  }
}
