/* 
   Porn AI Video Generator Website Styles
   Modern, dark-themed design with neon accents
*/

/* Base styles and CSS variables */
:root {
    --bg-color: #0a0a12;
    --bg-secondary: #15151E;
    --bg-card: #1D1D2B;
    --primary: #FF3366;
    --primary-dark: #E61E4D;
    --text-light: #FFFFFF;
    --text-secondary: #BBBBCC;
    --text-muted: #8888AA;
    --gradient: linear-gradient(135deg, #FF3366, #FF6B98);
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

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

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

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--text-light);
}

/* Header styles */
header {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 40px;
    width: auto;
}

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

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

.cta-nav-button {
    background-color: var(--primary);
    color: var(--bg-secondary) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-nav-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.3);
}

/* Hero section */
.hero {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 51, 102, 0.15), transparent 70%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 0 2rem;
    z-index: 1;
    max-width: 600px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 2rem;
}

.video-frame {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}

/* How it works section */
.how-it-works {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
    max-width: 1200px;
    margin: 0 auto;
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0.5rem auto 1.5rem;
}

/* Features section */
.features {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

/* Testimonials section */
.testimonials {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 600;
    color: var(--text-light);
    text-align: right;
}

/* FAQ section */
.faq {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Final CTA section */
.final-cta {
    padding: 5rem 2rem;
    background: var(--gradient);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2,
.final-cta p {
    color: white;
}

.final-cta .cta-button {
    background-color: var(--bg-secondary);
    color: var(--primary) !important;
    margin-top: 1.5rem;
}

.final-cta .cta-button:hover {
    background-color: white;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 4rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.footer-icon {
    width: auto;
    height: 40px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
}

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

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

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

.footer-column ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.85rem;
    }

    .footer-links {
        justify-content: space-around;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }

    .header-content {
        flex-direction: column;
    }
    
    .brand {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .process-step,
    .feature-card,
    .testimonial {
        min-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}
