/**
 * StormSEO.nl Template Styles
 * Kleurenschema geïnspireerd op Stormseo.nl
 */

/* Color Variables - Stormseo.nl Inspired */
:root {
    --stormseo-primary: #6366f1;      /* Indigo - Primary brand color */
    --stormseo-secondary: #8b5cf6;    /* Violet - Secondary/CTA */
    --stormseo-accent: #3b82f6;       /* Blue - Accent */
    --stormseo-success: #10b981;      /* Green - Success/Positive */
    --stormseo-dark: #1f2937;         /* Dark gray - Text/Dark sections */
    --stormseo-light: #f9fafb;        /* Light gray - Backgrounds */
    --stormseo-white: #ffffff;        /* White */
}

/* Main Template Container */
.stormseo-template {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--stormseo-dark);
}

/* Hero Section */
.stormseo-hero {
    background: linear-gradient(135deg, var(--stormseo-primary) 0%, var(--stormseo-secondary) 100%);
    color: var(--stormseo-white);
    text-align: center;
    padding: 80px 20px;
    margin: 0;
    width: 100%;
}

.stormseo-hero.hero-with-form {
    text-align: left;
}

.stormseo-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stormseo-hero .hero-content {
    flex: 1;
}

.stormseo-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--stormseo-white);
    line-height: 1.2;
}

.stormseo-hero .hero-subtitle {
    font-size: 1.3em;
    margin: 0;
    opacity: 0.95;
    max-width: 100%;
}

.stormseo-hero .hero-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stormseo-hero .hero-form .programmatic-stormseo-contact-form {
    background: transparent;
    padding: 0;
}

.stormseo-hero .hero-form .programmatic-stormseo-contact-form h3 {
    color: var(--stormseo-white);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.stormseo-hero .hero-form .programmatic-stormseo-lead-form label {
    color: var(--stormseo-white);
}

.stormseo-hero .hero-form .programmatic-stormseo-lead-form input,
.stormseo-hero .hero-form .programmatic-stormseo-lead-form textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--stormseo-dark);
}

.stormseo-hero .hero-form .programmatic-stormseo-lead-form input:focus,
.stormseo-hero .hero-form .programmatic-stormseo-lead-form textarea:focus {
    background: var(--stormseo-white);
    border-color: var(--stormseo-white);
    outline: none;
}

.stormseo-hero .hero-form .programmatic-stormseo-lead-form .submit-button {
    background: var(--stormseo-success);
    color: var(--stormseo-white);
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.stormseo-hero .hero-form .programmatic-stormseo-lead-form .submit-button:hover {
    background: #059669;
}

/* Quick Answer Section */
.quick-answer-section {
    background: var(--stormseo-light);
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.quick-answer-section h2 {
    color: var(--stormseo-primary);
    font-size: 2em;
    margin-top: 0;
}

/* Services Grid */
.stormseo-services {
    background: var(--stormseo-white);
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.stormseo-services h2 {
    color: var(--stormseo-primary);
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--stormseo-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: var(--stormseo-primary);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--stormseo-primary);
    font-size: 1.3em;
    margin: 0 0 15px 0;
}

.service-card p {
    color: var(--stormseo-dark);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.stormseo-cta {
    background: linear-gradient(135deg, var(--stormseo-secondary) 0%, var(--stormseo-primary) 100%);
    color: var(--stormseo-white);
    text-align: center;
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.stormseo-cta h2 {
    color: var(--stormseo-white);
    font-size: 2.2em;
    margin: 0 0 20px 0;
}

.stormseo-cta p {
    font-size: 1.2em;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

/* Contact Section */
.stormseo-contact {
    background: var(--stormseo-dark);
    color: var(--stormseo-white);
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.stormseo-contact h2 {
    color: var(--stormseo-white);
    font-size: 2em;
    margin-top: 0;
}

.stormseo-contact a {
    color: var(--stormseo-accent);
    text-decoration: none;
    font-weight: 500;
}

.stormseo-contact a:hover {
    text-decoration: underline;
}

/* Key Takeaways */
.key-takeaways {
    background: #f0f9ff;
    border-left: 4px solid var(--stormseo-primary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.key-takeaways h3 {
    color: var(--stormseo-primary);
    margin-top: 0;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
}

.key-takeaways li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.key-takeaways li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--stormseo-success);
    font-weight: bold;
    font-size: 1.2em;
}

/* Step by Step */
.step-by-step {
    background: var(--stormseo-white);
    padding: 40px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-by-step h3 {
    color: var(--stormseo-primary);
    margin-top: 0;
}

.step-by-step ol {
    padding-left: 30px;
}

.step-by-step li {
    padding: 15px 0;
    font-size: 1.1em;
    color: var(--stormseo-dark);
}

/* FAQ Section */
.faq-section {
    background: var(--stormseo-white);
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.faq-section h2 {
    color: var(--stormseo-primary);
    font-size: 2em;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--stormseo-light);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-question {
    background: var(--stormseo-primary);
    color: var(--stormseo-white);
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--stormseo-secondary);
}

.faq-answer {
    padding: 20px;
    display: none;
    color: var(--stormseo-dark);
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--stormseo-success);
    color: var(--stormseo-white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stormseo-hero h1 {
        font-size: 2em;
    }
    
    .stormseo-hero .hero-subtitle {
        font-size: 1.1em;
    }
    
    .stormseo-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stormseo-hero .hero-form {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stormseo-cta h2,
    .stormseo-contact h2 {
        font-size: 1.5em;
    }
    
    .stormseo-hero,
    .quick-answer-section,
    .stormseo-services,
    .stormseo-cta,
    .stormseo-contact {
        padding: 40px 15px;
    }
}

/* Full Width Sections */
.stormseo-template section,
.stormseo-template .quick-answer-section,
.stormseo-template .stormseo-services,
.stormseo-template .stormseo-cta,
.stormseo-template .stormseo-contact {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Content Container */
.stormseo-template > *:not(section):not(.stormseo-hero):not(.quick-answer-section):not(.stormseo-services):not(.stormseo-cta):not(.stormseo-contact) {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


