/* 
* aipornmaker.guru - Main Stylesheet
* Modern, responsive design with orange/red gradient theme
*/

/* ===== Base Styles & Reset ===== */
:root {
  /* Color palette - orange/red theme (different from previous purple/blue theme) */
  --primary-color: #FF3366;
  --primary-dark: #E61E4D;
  --primary-light: #FF6B8B;
  --accent-color: #FF9933;
  --accent-dark: #FF7700;
  --text-color: #333333;
  --text-light: #ffffff;
  --bg-color: #ffffff;
  --bg-dark: #222222;
  --bg-light: #f7f7f7;
  --gradient: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  --card-bg: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

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

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

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

ul {
  list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 4.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

/* ===== Header & Navigation ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.site-logo {
  height: 48px;
  width: auto;
}

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

.nav-menu {
  display: flex;
  gap: 3rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

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

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

.nav-menu a:hover::after {
  width: 100%;
}

#menu-toggle, .menu-icon {
  display: none;
}

/* ===== Hero Section ===== */
.hero {
  background: var(--gradient);
  color: var(--text-light);
  padding: 17rem 0 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15rem;
  background: var(--bg-color);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
}

.hero p {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* ===== CTA Button ===== */
.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 153, 51, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.5);
  color: var(--text-light);
}

.cta-button.large {
  font-size: 2rem;
  padding: 1.8rem 3.6rem;
}

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

/* ===== Features Section ===== */
.features {
  padding: 10rem 0;
  background: var(--bg-light);
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

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

.icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}

/* ===== How It Works Section ===== */
.how-it-works {
  padding: 10rem 0;
  background: var(--bg-color);
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  opacity: 0.3;
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 6rem;
  height: 6rem;
  background: var(--gradient);
  color: var(--text-light);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

/* ===== Examples Section ===== */
.examples {
  padding: 10rem 0;
  background: linear-gradient(rgba(255, 51, 102, 0.05), rgba(255, 153, 51, 0.05));
}

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

.example-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.example-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 51, 102, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

/* ===== FAQ Section ===== */
.faq {
  padding: 10rem 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 10rem 0;
  background: var(--gradient);
  color: var(--text-light);
  text-align: center;
  position: relative;
}

.cta-section h2, .cta-section p {
  color: var(--text-light);
}

.cta-section h2::after {
  background: var(--text-light);
}

.cta-section p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

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

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-light);
}

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

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

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

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

.copyright p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  html {
    font-size: 56.25%; /* 9px = 1rem */
  }
  
  h1 {
    font-size: 4.2rem;
  }
  
  h2 {
    font-size: 3.2rem;
  }
  
  .steps {
    flex-direction: column;
    gap: 4rem;
  }
  
  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%; /* 8px = 1rem */
  }
  
  header {
    padding: 1.5rem 0;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-icon {
    display: block;
    font-size: 2.8rem;
    cursor: pointer;
    color: var(--text-color);
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  #menu-toggle:checked ~ .nav-menu {
    max-height: 300px;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    display: block;
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .feature-grid, .example-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 15rem 0 8rem;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  .cta-button {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 300px;
    text-align: center;
  }
}
