/* 
* Main Stylesheet for aichatbot-porn.love
* Mobile-first responsive design
*/

/* Base styles and CSS variables */
:root {
    --primary-color: #9C27B0;
    --secondary-color: #673AB7;
    --accent-color: #FF4081;
    --light-color: #F3E5F5;
    --dark-color: #311B92;
    --text-color: #212121;
    --text-light: #FFFFFF;
    --text-muted: #757575;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --max-width: 1200px;
    --spacing: 1rem;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FAFAFA;
    overflow-x: hidden;
}

/* Container for content centering */
.container {
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

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

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius);
}

/* Button styles */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

/* Header styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

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

.logo h1 {
    font-size: 1.4rem;
    margin: 0;
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

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

nav ul.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

nav ul li {
    margin: 0.5rem 0;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
}

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

.mobile-menu-btn {
    display: block;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero section */
.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(156,39,176,0.05) 0%, rgba(103,58,183,0.1) 100%);
}

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

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content h2 span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: rgba(156,39,176,0.2);
    z-index: -1;
}

.hero-image {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
}

/* Features section */
.features {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #FAFAFA;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

/* About section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(156,39,176,0.05) 0%, rgba(103,58,183,0.1) 100%);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content .cta-button {
    margin-top: 1.5rem;
}

/* FAQ section */
.faq {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

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

.faq-item {
    padding: 1.5rem;
    background-color: #FAFAFA;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

/* CTA section */
.cta {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .cta-button {
    background: var(--text-light);
    color: var(--primary-color);
}

.cta .cta-button:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}

/* Footer styles */
footer {
    background-color: #212121;
    color: var(--text-light);
    padding: 4rem 0 1rem;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

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

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

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

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

/* Responsive styles */
@media (min-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
    
    .footer-logo {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
    
    nav ul {
        display: flex;
        align-items: center;
    }
    
    nav ul li {
        margin: 0 0.2rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        width: 90%;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .features, .about, .faq, .cta {
    animation: fadeIn 1s ease-out;
}

/* Accessibility improvements */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Print styles */
@media print {
    header, footer, .cta {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
}
