/* 
* Main stylesheet for aigeneratedgayporn.love
* Mobile-first, responsive design with modern aesthetics
*/

:root {
  /* Color Palette - Using a purple-blue gradient theme */
  --primary-color: #7b68ee;
  --secondary-color: #4a59cf;
  --accent-color: #ff6b6b;
  --dark-bg: #1a1a2e;
  --light-bg: #f5f5f7;
  --text-light: #ffffff;
  --text-dark: #222222;
  --text-gray: #7c7c7c;
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.logo h1 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: 1px;
}

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

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

nav ul li a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--text-light);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(123, 104, 238, 0.4) 0%, rgba(26, 26, 46, 0) 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content h2 span {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--accent-color);
  color: var(--text-light);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ff5252;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
  color: var(--text-light);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: var(--accent-color);
  color: var(--text-light);
}

.cta-button.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

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

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

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  max-width: 800px;
  text-align: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 1000px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  text-align: center;
  color: var(--text-light);
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

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

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.footer-logo p {
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
}

.footer-icon {
  color: var(--accent-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-column {
  margin-right: 60px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }
  
  nav.active ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 12px 25px;
  }
  
  .cta-button.large {
    padding: 15px 30px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

/* Add Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');
