/* Azurebrook Trail - Editorial Story Archetype */
/* Reset and Base Styles */

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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #1a1a1a;
    background: #fefefe;
    overflow-x: hidden;
}

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

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

/* Typography - Editorial Style */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #0f0f0f;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 1.875rem;
    letter-spacing: -0.02em;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    border-left: 4px solid #2c5282;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #333;
}

cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

em {
    font-style: italic;
    color: #444;
}

strong {
    font-weight: 700;
}

/* Navigation - Editorial Style */

.editorial-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-mark {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2c5282;
}

/* Main Article Container - Editorial Core */

.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

/* Story Header */

.story-header {
    margin-bottom: 3rem;
    text-align: left;
}

.story-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.story-lead {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
    margin-bottom: 0;
}

.legal-date {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Story Blocks - Core Content */

.story-block {
    margin-bottom: 3rem;
}

.story-block:last-child {
    margin-bottom: 2rem;
}

.accent-block {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 3px solid #2c5282;
    margin: 3rem -2rem;
}

.final-note {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    margin-top: 3rem;
    font-style: italic;
    color: #555;
}

/* Story Images - Inline with Captions */

.story-image {
    margin: 3rem 0;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
}

figcaption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

/* Inline CTAs - Editorial Style */

.inline-cta {
    margin: 2rem 0;
}

.cta-link, .inline-link {
    color: #2c5282;
    font-weight: 600;
    border-bottom: 2px solid #2c5282;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover, .inline-link:hover {
    color: #1a365d;
    border-bottom-color: #1a365d;
}

/* Service Cards - Story-Based Layout */

.service-story-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f0f0f;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1rem;
}

.select-service-btn {
    background: #2c5282;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background: #1a365d;
}

.select-service-btn.selected {
    background: #1a365d;
    position: relative;
}

.select-service-btn.selected::after {
    content: ' ✓';
}

/* Editorial Form */

.editorial-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #856404;
}

.form-notice.hidden {
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.submit-btn {
    background: #2c5282;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background: #1a365d;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Services Page Detailed View */

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-header h3 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    margin-left: 1rem;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
}

.service-detail h4 {
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-timeline {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-cta {
    display: inline-block;
    background: #2c5282;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: #1a365d;
    color: white;
}

.service-detail.highlighted {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #2c5282;
    position: relative;
}

.service-detail.highlighted::before {
    content: 'MEEST EXCLUSIEF';
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #2c5282;
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Contact Info Cards */

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #2c5282;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.75rem;
}

/* Testimonials */

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #2c5282;
    margin: 2.5rem 0;
    font-size: 1.125rem;
    line-height: 1.7;
}

.testimonial p {
    margin-bottom: 0.5rem;
}

/* Legal Pages Specific */

.legal-page ul {
    margin-left: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background: #2c5282;
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Footer - Editorial Style */

.editorial-footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #aaa;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Cookie Banner */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.cookie-content a {
    color: #88c0ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background: #2c5282;
    color: white;
}

.cookie-btn.reject {
    background: #555;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Thanks Page Specific */

.thanks-page .story-title {
    color: #2c5282;
}

/* Responsive Design - Mobile First */

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .story-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .editorial-main {
        padding: 2rem 1rem 3rem;
    }

    .accent-block {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 1.5rem;
    }

    .editorial-form {
        padding: 1.5rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .nav-content {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .service-detail.highlighted::before {
        left: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .editorial-main {
        max-width: 680px;
    }
}

@media (min-width: 1025px) {
    .editorial-main {
        max-width: 720px;
    }

    .story-header {
        margin-bottom: 4rem;
    }
}

/* Print Styles */

@media print {
    .editorial-nav,
    .cookie-banner,
    .editorial-footer,
    .select-service-btn,
    .service-cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.6;
    }

    .editorial-main {
        max-width: 100%;
        padding: 0;
    }
}
