/* 
   freenudeai.guru Styles
   Main color scheme: Purple (#9C27B0) to Orange (#FF9800) gradient
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Base Styles & CSS Variables */
:root {
    --purple: #9C27B0;
    --orange: #FF9800;
    --dark: #222;
    --light: #fff;
    --gray: #f8f8f8;
    --text: #333;
    --text-light: #777;
    --gradient: linear-gradient(135deg, var(--purple), var(--orange));
    --shadow: 0 10px 20px rgba(156, 39, 176, 0.15);
    --border-radius: 10px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.button.primary {
    background: var(--gradient);
    color: var(--light);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4);
}

.button.secondary {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

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

.button.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.try-now a {
    background: var(--gradient);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.try-now a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.try-now a::after {
    display: none;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
    z-index: 101;
}

.nav-toggle-label span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--purple);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.nav-toggle-label span:nth-child(1) {
    top: 0;
}

.nav-toggle-label span:nth-child(2) {
    top: 9px;
}

.nav-toggle-label span:nth-child(3) {
    top: 18px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.05;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.05;
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--dark);
}

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

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

.benefit-card {
    background: var(--gray);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--purple);
    box-shadow: var(--shadow);
}

.benefit-icon {
    margin: 0 auto 20px;
}

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

.benefit-card p {
    color: var(--text-light);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

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

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

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

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--gray);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--purple);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--purple);
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-group h4 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-group ul li {
    margin-bottom: 10px;
}

.footer-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-group ul li a:hover {
    color: var(--orange);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.adult-notice {
    margin-top: 10px;
    color: var(--orange);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        background: var(--light);
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        gap: 20px;
        align-items: flex-start;
        z-index: 100;
    }
    
    #nav-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    #nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }
    
    #nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    #nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin: 0 0 15px 0;
    }
    
    .benefit-card {
        padding: 20px;
    }
}
