/* 
 * DeepNude CC Website Styles
 * Color scheme: Purple (#7c4dff) and Green (#00e676) - Distinct from previous sites
 */

/* Reset and Base Styles */
:root {
    --primary: #7c4dff;
    --secondary: #00e676;
    --dark: #2f3542;
    --light: #f5f5f5;
    --gray: #a4b0be;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #7c4dff, #00e676);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

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

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

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

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

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

section {
    padding: 80px 0;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 1.1rem;
}

.highlight-text {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: white;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.logo {
    margin-right: 10px;
}

.brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

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

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

.main-nav ul li a {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.03), rgba(0, 230, 118, 0.03));
    overflow: hidden;
}

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

.hero-content {
    flex: 1 0 450px;
    padding-right: 30px;
}

.hero h1 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7c4dff, #00e676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-visual {
    flex: 1 0 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-container {
    position: relative;
    z-index: 2;
}

/* Features Section */
.features {
    background-color: white;
}

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

.feature-card {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
}

/* How To Use Section */
.how-to {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.05), rgba(0, 230, 118, 0.05));
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1 0 250px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    margin-right: 15px;
    box-shadow: var(--shadow);
}

.step-number span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.step-content p {
    color: var(--gray);
}

.step-arrow {
    margin: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Examples Section */
.examples {
    background-color: white;
}

.examples-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.example-card {
    flex: 0 0 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.example-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 50px;
}

.testimonial {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.quote-marks {
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
}

.quote-author {
    font-weight: 600;
    color: var(--primary);
    margin-top: 15px;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.05), rgba(0, 230, 118, 0.05));
}

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

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
}

.faq-item p {
    color: var(--gray);
    margin-bottom: 0;
}

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

.cta-section h2 {
    color: white;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary);
}

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

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-branding {
    flex: 0 0 300px;
    margin-bottom: 30px;
}

.footer-branding p {
    opacity: 0.7;
    margin-top: 20px;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-column ul li a {
    color: white;
    opacity: 0.7;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}

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

.feature-card, .step, .faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card.visible, .step.visible, .faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
    .hero {
        padding: 140px 0 60px;
    }
    .hero-content, .hero-visual {
        flex: 0 0 100%;
    }
    .hero-content {
        margin-bottom: 30px;
        padding-right: 0;
    }
    .steps-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-links {
        justify-content: flex-start;
        margin-top: 30px;
    }
    .feature-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        flex-direction: column;
        max-width: 200px;
    }
}
