/* 
* Behoud50kmZandvoort.nl - Main Stylesheet
* A responsive, modern design for traffic activism website
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #2b2d42;
    --success-color: #2a9d8f;
    --warning-color: #e9c46a;
    --gray-color: #8d99ae;
    --light-gray: #edf2f4;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

/* Special styling for hero section buttons */
.hero .btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-color: var(--light-color);
}

.btn-success {
    background-color: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: white !important;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn i {
    margin-right: 8px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo i {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.logo-text {
    display: inline-block;
}

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

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-icon {
    display: none;
    margin-right: 5px;
    font-size: 1.1rem;
}

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

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.hero h2 {
    font-weight: 400;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.hero h2:after {
    display: none;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin: 0 10px;
}

.deadline-alert {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.deadline-alert i {
    color: var(--warning-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Countdown Timer */
.countdown-container {
    margin-top: 1.5rem;
}

.countdown-title {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0.8rem 1rem;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 5rem 0;
    background-color: white;
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.problem-text {
    flex: 1;
}

.problem-image {
    flex: 1;
    text-align: center;
}

.rounded-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ===== CONSEQUENCES SECTION ===== */
.consequences-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.consequence-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.consequence-card:hover {
    transform: translateY(-5px);
}

.consequence-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.consequence-card h3 {
    margin-bottom: 1rem;
}

.consequence-card p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* ===== PHASES SECTION ===== */
.phases-section {
    padding: 5rem 0;
    background-color: white;
}

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

.phase-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem;
}

.phase-header i {
    font-size: 2rem;
    color: var(--warning-color);
}

.phase-header h3 {
    margin-bottom: 0;
}

.phase-details {
    padding: 1.5rem;
}

.phase-details ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.phase-details li {
    margin-bottom: 0.8rem;
}

.phase-details p:last-child {
    margin-bottom: 0;
}

.alert-text {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.7rem;
    background-color: rgba(230, 57, 70, 0.1);
    border-left: 3px solid var(--primary-color);
    margin-top: 1rem;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

blockquote:before,
blockquote:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
}

blockquote:before {
    content: '\f10d'; /* Quote left */
    left: 0;
    top: 0;
}

blockquote:after {
    content: '\f10e'; /* Quote right */
    right: 0;
    bottom: 0;
}

/* ===== ACTION SECTION ===== */
.action-section {
    padding: 5rem 0;
    background-color: white;
}

.action-intro-big {
    text-align: center;
    margin: 2rem 0;
}

.action-intro-big h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.mobile-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    margin: 1rem auto 2rem;
    max-width: 400px;
    font-weight: 600;
    box-shadow: var(--box-shadow);
}

.mobile-alert i {
    font-size: 1.3rem;
    margin-right: 10px;
    color: var(--warning-color);
}

.step-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-container:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -30px;
    width: 3px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step-container:last-of-type:after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.copy-paste-container {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.send-form-container {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.send-form-container p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-action {
    background-color: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.btn-action:hover {
    background-color: transparent;
    color: var(--success-color);
}

.btn-extra-large {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mini-steps {
    margin-top: 1.5rem;
    background-color: white;
    padding: 1.2rem;
    border-radius: var(--border-radius);
}

.mini-steps ol {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.mini-steps li {
    margin-bottom: 0.7rem;
}

.extra-info-box {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.extra-info-box p {
    margin-bottom: 0;
}

.extra-info-box i {
    color: var(--accent-color);
    margin-right: 8px;
}

.copy-area {
    background-color: white;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    white-space: pre-wrap;
    line-height: 1.5;
}

#copyButton {
    display: block;
    margin: 0 auto 0.5rem;
    width: 100%;
    max-width: 100%;
    font-size: 1.1rem;
}

.copy-success {
    display: none;
    text-align: center;
    color: var(--success-color);
    margin-top: 1rem;
    font-weight: 600;
}

.copy-success i {
    margin-right: 5px;
}

.action-steps {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.action-steps h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.action-steps h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.action-steps ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.action-steps ol li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.action-steps ol li strong {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.highlight-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.highlight-link:hover {
    color: var(--primary-color);
}

.action-cta {
    text-align: center;
    margin-top: 2rem;
}

.form-cta-mobile {
    display: none;
    margin-top: 2rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===== DOCUMENTS SECTION ===== */
.documents-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.documents-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.document-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    color: var(--dark-color);
    text-decoration: none;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.document-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.document-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.document-card p {
    color: var(--gray-color);
    text-align: center;
    margin-bottom: 0;
}

.highlight-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.highlight-box i {
    font-size: 3rem;
    margin-right: 2rem;
    color: var(--warning-color);
}

.highlight-content h3 {
    margin-bottom: 0.5rem;
}

.highlight-content p {
    margin-bottom: 0;
}

/* ===== SHARE SECTION ===== */
.share-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    color: white;
    transition: var(--transition);
    min-width: 200px;
}

.share-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.whatsapp {
    background-color: #25d366;
}

.email {
    background-color: var(--accent-color);
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    color: white;
}

.social-text-container {
    margin-top: 3rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-text-container h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

#socialCopyText {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

#socialCopyButton {
    display: block;
    margin: 0 auto 0.5rem;
    width: 100%;
    max-width: 100%;
}

#socialCopySuccess {
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo i {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-text {
    margin-left: auto;
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .problem-content {
        flex-direction: column;
    }
    
    .problem-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    blockquote {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-text {
        margin-left: 0;
        text-align: center;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    /* Header en navigatie op tablets */
    header {
        padding: 0.5rem 0;
    }
    
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }
    
    .logo i {
        font-size: 1.4rem;
        margin-right: 5px;
    }
    
    nav {
        margin-top: 0;
        width: auto;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.4rem;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 0.3rem 0.5rem;
        font-weight: 600;
        color: var(--secondary-color);
    }
    
    .nav-icon {
        display: inline-block;
        margin-right: 5px;
    }
    
    nav ul li a:after {
        display: none;
    }
    
    /* Countdown en buttons */
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: calc(50% - 1rem);
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    /* Highlight box */
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Actiesectie */
    .action-steps, .copy-paste-container {
        padding: 1.5rem;
    }
    
    .copy-area {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .action-cta {
        display: none;
    }
    
    .form-cta-mobile {
        display: block;
    }
    
    #copyButton {
        width: 100%;
    }
    
    .action-intro {
        font-size: 1rem;
    }
    
    .step-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-container:after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-title {
        text-align: center;
    }
    
    .copy-paste-container, 
    .send-form-container {
        padding: 1.2rem;
    }
    
    .btn-extra-large {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .extra-info-box {
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0 !important;
    }
    
    /* Header en navigatie op mobiel */
    header {
        padding: 0.4rem 0;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo i {
        font-size: 1.5rem;
        margin-right: 0;
    }
    
    nav ul {
        justify-content: space-around;
        width: 100%;
        margin-top: 0.4rem;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        font-size: 0.75rem;
        padding: 0.3rem;
        white-space: nowrap;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nav-icon {
        display: block;
        margin-right: 0;
        margin-bottom: 0.2rem;
        font-size: 1.2rem;
    }
    
    /* Alert en stappen */
    .mobile-alert {
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .mobile-alert i {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1.5rem;
    }
    
    .action-steps h3, .copy-paste-container h3 {
        font-size: 1.2rem;
    }
    
    .btn-large {
        padding: 0.9rem;
        font-size: 1.1rem;
    }
    
    .action-steps ol {
        padding-left: 0;
    }
    
    .action-steps ol li {
        margin-bottom: 1.2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .copy-area {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .mini-steps {
        padding: 1rem;
    }
    
    .mini-steps li {
        margin-bottom: 1rem;
    }
    
    /* Grids en content */
    .consequences-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .share-btn {
        width: 100%;
    }
} 