/* Styles for ainudeNO.pw - Norwegian AI Nude Generator */

:root {
    /* Main colors - Scandinavian inspired palette */
    --primary: #018374; /* Teal green */
    --secondary: #F79824; /* Orange */
    --accent: #2D3047; /* Dark blue/gray */
    --background: #FFFFFF;
    --light-bg: #F5F9FA;
    --text: #2D3047;
    --text-light: #596680;
    --border: #E0E7EB;
    
    /* Font sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text);
    font-weight: 700;
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-3xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-lg);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    height: 6px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(1, 131, 116, 0.1);
    z-index: -1;
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: var(--space-lg);
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

/* Buttons */
.cta-button, .secondary-button {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.cta-button {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(1, 131, 116, 0.2);
}

.cta-button:hover {
    background-color: #006d61;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(1, 131, 116, 0.25);
    color: white;
}

.cta-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

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

.secondary-button:hover {
    background-color: rgba(1, 131, 116, 0.05);
    color: var(--primary);
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    height: 70px;
}

.logo {
    z-index: 2;
}

.logo-svg {
    width: 150px;
    height: auto;
}

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

.nav-list {
    display: flex;
    gap: var(--space-xl);
}

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

.nav-list a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

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

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

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

/* Hero Section */
.hero-section {
    padding-top: 130px;
    padding-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
}

.hero-visual {
    position: absolute;
    right: -100px;
    top: 50px;
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0.7;
}

.hero-shape {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features-section {
    padding: var(--space-3xl) 0;
    background-color: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-md);
    border-radius: 50%;
    background-color: rgba(1, 131, 116, 0.1);
}

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

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* How it Works Section */
.how-works-section {
    padding: var(--space-3xl) 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.how-works-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(1, 131, 116, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: bold;
    margin-right: var(--space-lg);
    flex-shrink: 0;
}

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

.step-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

.action-center {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background-color: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: var(--space-lg);
    background-color: var(--light-bg);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: rgba(1, 131, 116, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    margin-bottom: var(--space-md);
    font-style: italic;
}

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

/* FAQ Section */
.faq-section {
    padding: var(--space-3xl) 0;
    background-color: var(--light-bg);
}

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

.faq-item {
    margin-bottom: var(--space-md);
    border-radius: 16px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: var(--space-lg);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: var(--text-2xl);
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: var(--text-lg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 300px;
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background-color: var(--primary);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-content .cta-button {
    background-color: white;
    color: var(--primary);
}

.cta-content .cta-button:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background-color: var(--accent);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    opacity: 0.8;
    max-width: 300px;
}

.footer h3 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-keywords p {
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: var(--text-4xl);
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        opacity: 0.3;
        right: -200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: var(--text-3xl);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        flex-direction: column;
        justify-content: center;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-list li {
        margin: var(--space-sm) 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
    }
    
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-brand, .footer-links {
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}
