/* 
* AIpornGeneratorUS.love Styles
* American-themed color scheme and unique design
*/

:root {
    --primary: #3C3B6E; /* American flag navy blue */
    --secondary: #B22234; /* American flag red */
    --light: #FFFFFF;
    --dark: #1A1A1A;
    --accent: #FFC72C; /* Golden accent color */
    --text: #333333;
    --background: #F6F6F6;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1 {
    font-size: 2rem;
    font-weight: 900;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

p {
    margin-bottom: 1rem;
}

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

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

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    color: var(--dark);
    font-weight: 800;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient);
    color: var(--light);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

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

.cta-button-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.nav-button {
    padding: 8px 16px;
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
}

.nav-button:hover {
    background: var(--primary);
    color: white;
}

/* Header */
header {
    background-color: var(--light);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-container svg {
    margin-right: 12px;
}

.logo-container h1 {
    margin: 0;
}

.highlight-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.us-text {
    color: var(--secondary);
    font-weight: 900;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--secondary);
}

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

.hamburger {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    top: 10px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    position: relative;
    overflow: hidden;
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#3C3B6E 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(60, 59, 110, 0.1);
    color: var(--primary);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.cta-button-wrapper {
    margin-top: 2.5rem;
}

.no-credit-card {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.device-mockup {
    width: 100%;
    max-width: 380px;
}

.device-frame {
    background: var(--dark);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.device-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--primary);
    color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.app-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.05), rgba(178, 34, 52, 0.05));
    border-radius: 10px;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: #888;
    font-size: 14px;
}

.controls-placeholder {
    margin-top: 20px;
}

.control-button {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.control-options {
    display: flex;
    justify-content: space-between;
}

.option {
    width: 30%;
    height: 25px;
    background: #f1f1f1;
    border-radius: 5px;
}

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

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

.feature-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Numbers Section */
.numbers-section {
    padding: 70px 0;
    background: var(--gradient);
    color: var(--light);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.number-card {
    padding: 20px;
}

.number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--background);
}

.steps-container {
    margin: 50px 0;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 20px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

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

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

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.quote-mark {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

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

.stars {
    color: var(--accent);
    margin-top: 10px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--background);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: var(--light);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--light);
    text-align: center;
}

.final-cta h2 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.final-cta p {
    margin-bottom: 30px;
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    background: white;
    color: var(--secondary);
    font-weight: 800;
}

.final-cta .cta-button:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-name {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links h3, 
.footer-keywords h3 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links h3::after,
.footer-keywords h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    margin-top: 10px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.footer-keywords p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: 40px;
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--light);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        max-height: 300px;
        padding: 20px 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 12px 0;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonials-section,
    .faq-section {
        padding: 70px 0;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
