/*
   freeaipornvideogenerator.love - Styles
   Mobile-first responsive design with teal/cyan color scheme
*/

:root {
    /* Color Palette - Teal/Cyan theme */
    --primary: #00BCD4;
    --primary-dark: #0097A7;
    --primary-light: #E0F7FA;
    --accent: #FFC107;
    --dark: #263238;
    --light: #FFFFFF;
    --gray: #607D8B;
    --light-gray: #ECEFF1;
    --text: #37474F;
    --gradient: linear-gradient(135deg, #00BCD4, #00838F);
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--primary);
}

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

section {
    padding: 3rem 0;
}

/* Header Styles */
header {
    background-color: var(--light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.site-logo {
    margin-right: 0.8rem;
}

.main-nav ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul.show {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 10;
}

.main-nav ul li {
    margin: 0.5rem 1rem;
    text-align: center;
}

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

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

.menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    color: var(--light);
    padding: 4rem 0 3rem;
    text-align: center;
}

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

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.hero-section h2 span {
    color: var(--accent);
    position: relative;
}

.hero-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.primary-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: var(--dark);
}

.secondary-button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--light);
}

.video-player {
    max-width: 400px;
    margin: 0 auto;
}

/* Generator Section */
.generator-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.generator-interface {
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.control-panel {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    resize: none;
    font-family: inherit;
}

.option-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.option select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
}

.generate-button {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--light);
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.generate-button:hover {
    background-color: var(--primary-dark);
    color: var(--light);
}

.preview-area {
    padding: 1.5rem;
    background: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-placeholder {
    max-width: 300px;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1rem;
}

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

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.action-center {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.action-center p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark);
    color: var(--light);
    padding: 4rem 0;
}

.testimonials-section h2 {
    color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.user {
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
}

.site-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h4 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.link-group h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.link-group ul {
    list-style: none;
}

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

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .menu-button {
        display: none;
    }
    
    .main-nav ul {
        display: flex;
        flex-direction: row;
    }
    
    .main-nav ul li {
        margin: 0 0 0 1.5rem;
    }
    
    .hero-section {
        text-align: left;
        padding: 5rem 0;
    }
    
    .hero-section .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-content {
        flex: 1;
        padding-right: 2rem;
        margin-bottom: 0;
    }
    
    .hero-visual {
        flex: 1;
    }
    
    .hero-section p {
        margin-left: 0;
    }
    
    .cta-buttons {
        flex-direction: row;
        margin: 0;
    }
    
    .generator-interface {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .control-panel {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        flex-direction: row;
    }
    
    .footer-branding {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-links {
        flex: 2;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-section h2 {
        font-size: 2.8rem;
    }
}
