/* 
 * aipornvideomaker.pw - Main Stylesheet
 * Blue gradient design with clean modern layout
 */

:root {
  /* Color scheme - Blue gradient theme */
  --primary: #00c6ff;
  --secondary: #0072ff;
  --accent: #36d1dc;
  --dark: #181818;
  --light: #f8f9fa;
  --text: #333333;
  --gray: #6c757d;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  /* Shadows and effects */
  --shadow-sm: 0 2px 10px rgba(0, 114, 255, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 114, 255, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 114, 255, 0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

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

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

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h1 span, h2 span {
  color: var(--secondary);
}

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

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

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

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

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

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

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

.cta-btn {
  background: var(--gradient);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.secondary-btn {
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

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

.hero-visual {
  position: absolute;
  right: -5%;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.waves {
  width: 100%;
  height: 100%;
}

/* Videos Section */
.videos {
  padding: 6rem 0;
  background-color: var(--light);
}

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

.video-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

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

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--dark);
}

.video-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.video-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: white;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-text h3 {
  margin-bottom: 0.5rem;
}

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

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

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

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}

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

.step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  height: calc(100% - 50px);
  width: 2px;
  background-color: var(--accent);
  z-index: 1;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 2;
}

.cta-box {
  background: var(--gradient);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-md);
}

.cta-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.cta-box .btn {
  background: white;
  color: var(--secondary);
}

.cta-box .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

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

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

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

.footer-brand h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: space-around;
}

.link-group h5 {
  color: var(--primary);
  margin-bottom: 1.25rem;
}

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

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

.link-group ul li a:hover {
  color: white;
}

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

.keywords {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    background-color: white;
    padding: 6rem 2rem;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }
  
  .menu.active {
    right: 0;
  }
  
  .hero-visual {
    opacity: 0.3;
    width: 100%;
    right: 0;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    text-align: center;
    align-items: center;
  }
  
  .footer-links {
    justify-content: space-between;
    width: 100%;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .step::after {
    display: none;
  }
  
  .step-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 8rem;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
