/* 
   pornaicreator.love - Main Stylesheet
   Rose/Pink Modern Design with Unique Styling
*/

:root {
  --primary: #f43f5e;
  --primary-light: #fda4af;
  --primary-dark: #e11d48;
  --secondary: #0ea5e9;
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary), #f97316);
  --radius: 12px;
}

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

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

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
}

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

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  transition: all 0.3s ease;
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.cta-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Button Styles */
.primary-button, .ghost-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.primary-button {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.ghost-button:hover {
  background-color: rgba(244, 63, 94, 0.1);
  transform: translateY(-3px);
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #ffe4e6, var(--light));
  overflow: hidden;
  position: relative;
}

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

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

.hero-content h1 {
  margin-bottom: 1.5rem;
}

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

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

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

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

.feature-card {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

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

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

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: #ffe4e6;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(244, 63, 94, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.testimonial-card {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(244, 63, 94, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 600;
  color: var(--primary);
}

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

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Footer Styles */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0 1.5rem;
  margin-top: auto;
}

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

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

.footer-brand .brand-name {
  color: var(--white);
}

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

.footer-column h4 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--gray-light);
}

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

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

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .button-group {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    max-width: 70%;
    margin: 0 auto;
  }
  
  .step {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .features-grid,
  .steps,
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .step,
  .testimonial-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
