/* 
   AI Porn Chat Website Styles
   Domain: aipornchat.love
   Responsive & SEO-optimized design
*/

/* Base Styles and Variables */
:root {
  --primary: #FF1F5A;
  --secondary: #FF7A90;
  --accent: #FF9E80;
  --dark: #121212;
  --dark-gray: #222222;
  --medium-gray: #444444;
  --light-gray: #888888;
  --light: #ffffff;
  --text-dark: #222222;
  --text-light: #eeeeee;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(255, 31, 90, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

h2 span {
  color: var(--primary);
}

section {
  padding: 5rem 0;
}

/* Header Styles */
header {
  padding: 1.2rem 0;
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

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

.logo svg {
  margin-right: 12px;
}

.logo h1 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--light);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

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

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-content h2 span {
  color: var(--primary);
  position: relative;
}

.hero-content h2 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: 8px;
  left: 0;
  background-color: rgba(255, 31, 90, 0.2);
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 2.5rem;
}

.hero-visual {
  flex: 1;
  max-width: 500px;
  margin-left: 2rem;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

/* Button Styles */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--light);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 8px 15px rgba(255, 31, 90, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(255, 31, 90, 0.4);
  color: var(--light);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(255, 31, 90, 0.05);
  color: var(--primary);
}

/* Features Section */
#features {
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

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

.feature::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature p {
  color: var(--medium-gray);
}

/* Experience/How It Works Section */
.dark-section {
  background-color: var(--dark);
  color: var(--light);
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--light);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--light-gray);
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials */
#testimonials {
  background-color: #f9f9f9;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 31, 90, 0.1);
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

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

.author-name {
  font-weight: 600;
}

.star {
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo svg {
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.link-group h4 {
  color: var(--light);
  margin-bottom: 1.2rem;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 0.7rem;
}

.link-group a {
  color: var(--light-gray);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 31, 90, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 31, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 31, 90, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

@keyframes typing {
  0% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-5px); }
  100% { opacity: 0.3; transform: translateY(0); }
}

.typing-dot:nth-child(1) {
  animation: typing 1s infinite 0s;
}

.typing-dot:nth-child(2) {
  animation: typing 1s infinite 0.2s;
}

.typing-dot:nth-child(3) {
  animation: typing 1s infinite 0.4s;
}

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-content h2 {
    text-align: center;
    font-size: 2.6rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light);
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  nav.active ul {
    display: flex;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .step {
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-around;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
