/*
* aienhancedporn.site - Main Stylesheet
* Teal and Orange color scheme with clean, modern design
*/

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Properties */
:root {
  --primary: #009688;
  --primary-light: #4DB6AC;
  --primary-dark: #00796B;
  --secondary: #FF9800;
  --secondary-light: #FFB74D;
  --secondary-dark: #F57C00;
  --background: #F5F5F5;
  --text: #263238;
  --text-light: #607D8B;
  --white: #FFFFFF;
  --black: #000000;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

main {
  flex: 1;
}

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

h1 {
  font-size: 4.2rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 3.2rem;
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.4rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 0.2rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

section {
  padding: 8rem 0;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
  color: var(--text-light);
  font-size: 1.8rem;
}

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

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

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

ul {
  list-style-type: none;
}

.accent {
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 5rem;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 150, 136, 0.5);
  transform: translateY(-3px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Header */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text);
}

.logo-icon {
  margin-right: 1rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 1.6rem;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 3rem;
  height: 2.4rem;
  position: relative;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 0.3rem;
  background: var(--text);
  position: absolute;
  transition: var(--transition);
  border-radius: 0.2rem;
}

.menu-toggle span:first-child {
  top: 0;
}

.menu-toggle span:last-child {
  bottom: 0;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
  top: 50%;
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
  bottom: 40%;
}

/* Hero */
.hero {
  background-color: var(--white);
  padding: 6rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  margin-bottom: 2rem;
  position: relative;
}

.hero-content p {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
}

.hero-visual {
  text-align: right;
}

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

/* Enhance Section */
.enhance {
  background-color: var(--background);
}

.enhance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.enhance-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.enhance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.enhance-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
}

.enhance-icon svg {
  width: 100%;
  height: 100%;
}

.enhance-card h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.enhance-card p {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* Features */
.features {
  background-color: var(--white);
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* How It Works */
.how-it-works {
  background-color: var(--background);
}

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

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2.4rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 1rem;
}

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

/* Footer */
.site-footer {
  background-color: #263238;
  color: var(--white);
  padding: 6rem 0 3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-text h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.footer-nav-column h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.footer-nav-column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: var(--transition);
}

.footer-nav-column a:hover {
  color: var(--secondary);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* Media Queries */
@media screen and (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  section {
    padding: 6rem 0;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 100;
  }
  
  .main-nav ul.active {
    right: 0;
  }
  
  .hero .container,
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
    max-width: none;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-nav {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    margin-bottom: 1.5rem;
  }
  
  .footer-main {
    text-align: center;
  }
  
  .footer-logo {
    flex-direction: column;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 4rem;
  }
}
