/* 
 * aiclothingremoverNL.site 
 * Nederlandse AI Clothing Remover Styles 
 */

/* Custom Variables */
:root {
    --primary: #00b894;
    --secondary: #00cec9;
    --accent: #0984e3;
    --dark: #2d3436;
    --light: #ffffff;
    --background: #f5f6fa;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --card-shadow: 0 10px 30px rgba(0, 184, 148, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* Background */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 184, 148, 0.05), transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(9, 132, 227, 0.05), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: block;
    width: 220px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

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

nav ul li a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-button .bar {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    margin: 6px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 90%;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.button.primary {
    background: var(--gradient);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    color: var(--light);
}

.button.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
}

.button.outline:hover {
    background-color: rgba(0, 184, 148, 0.05);
    transform: translateY(-3px);
}

.button.large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

/* Features Section */
.features {
    background-color: var(--light);
    position: relative;
}

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

.feature-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
}

/* Process Section */
.process {
    background-color: rgba(0, 184, 148, 0.05);
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--light);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
}

.step h3 {
    margin-bottom: 15px;
}

.cta-block {
    background: var(--gradient);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--light);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.2);
}

.cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--light);
}

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

.cta-block .button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.faq-question {
    padding: 20px;
    background-color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background-color: rgba(0, 184, 148, 0.05);
}

.faq-item.active .faq-question {
    border-left-color: var(--primary);
}

.toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.toggle-icon::before, .toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: var(--transition);
}

.toggle-icon::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.toggle-icon::after {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.footer-brand p {
    margin-top: 20px;
    max-width: 300px;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.footer-icon {
    margin-bottom: 15px;
}

.footer-icon img {
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}

.footer-links h4 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient);
}

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

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

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.keywords {
    color: #666;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 30px;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand, .footer-links {
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .menu-button {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--light);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    section {
        padding: 70px 0;
    }
}
