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

body {
    font-family: 'Fredoka', cursive;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

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

/* Color Variables */
:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFF44F;
    --primary-green: #32CD32;
    --secondary-green: #90EE90;
    --dark-green: #228B22;
    --accent-orange: #FF8C00;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-green) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    pointer-events: all;
}

.header * {
    box-sizing: border-box;
}

/* Force navigation links to be clickable */
.nav-menu a {
    pointer-events: auto !important;
    display: inline-block !important;
    position: relative !important;
    z-index: 10000 !important;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 10001 !important;
    pointer-events: auto !important;
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 9998 !important;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.logo-text .subtitle {
    font-size: 0.9rem;
    color: var(--dark-green);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: relative;
    z-index: 9998 !important;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    z-index: 1002;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none !important;
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block !important;
    padding: 12px 8px;
    white-space: nowrap;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.nav-link:link,
.nav-link:visited,
.nav-link:hover,
.nav-link:active {
    color: var(--text-dark) !important;
    text-decoration: none !important;
}

.nav-link:hover {
    color: var(--dark-green) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--dark-green) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--dark-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '🐷🏍️';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    right: -5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-welcome {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.hero-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.card-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--text-light);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary-green);
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-secondary {
    background: var(--primary-green);
    color: var(--text-light);
}

.btn-accent {
    background: var(--accent-orange);
    color: var(--text-light);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.main-announcement {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.announcement-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.announcement-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2rem;
}

.announcement-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-btn.primary {
    background: var(--primary-green);
    color: var(--text-light);
}

.cta-btn.secondary {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Prinsenpaar Section */
.prinsenpaar-section {
    padding: 80px 0;
    background: var(--text-light);
}

.prinsenpaar-card {
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.prinsenpaar-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.prinsenpaar-info p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Nieuws Section */
.nieuws-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.nieuws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.nieuws-card {
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.nieuws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.nieuws-datum {
    color: var(--dark-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.nieuws-datum::before {
    content: '📅';
    margin-right: 8px;
    font-size: 1rem;
}

.nieuws-titel {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.nieuws-preview {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.nieuws-link {
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nieuws-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.nieuws-link:hover::after {
    transform: translateX(5px);
}

.nieuws-footer {
    text-align: center;
    margin-top: 40px;
}

.nieuws-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
    border: none;
    cursor: pointer;
}

.nieuws-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.4);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--text-light);
    scale: 1.05;
}

.nieuws-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.nieuws-btn:hover i {
    transform: scale(1.2);
}

.programma-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
    border: none;
    cursor: pointer;
}

.programma-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.4);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--text-light);
    scale: 1.05;
}

.programma-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.programma-btn:hover i {
    transform: scale(1.2);
}

/* Programma Preview Section */
.programma-preview {
    padding: 80px 0;
    background: var(--text-light);
}

.programma-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.day-card {
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.day-card h3 {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
    color: var(--text-dark);
    padding: 25px 30px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.day-events {
    padding: 30px;
    flex: 1;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.event-item:last-child {
    border-bottom: none;
}

.event-time {
    flex-shrink: 0;
    width: 80px;
    color: var(--primary-green);
    font-weight: 600;
}

.event-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.event-location,
.event-price {
    color: #666;
    font-size: 0.95rem;
    margin: 5px 0;
}

.event-location i,
.event-price i {
    color: var(--primary-green);
    margin-right: 8px;
}

.programma-link {
    text-align: center;
}

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background: var(--text-light);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.social-media-section {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
}

.social-media-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.social-media-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.social-card.facebook:hover {
    border-left: 4px solid #1877f2;
}

.social-card.instagram:hover {
    border-left: 4px solid #e4405f;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
}

.social-card.facebook .social-icon {
    background: #1877f2;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.social-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.social-media-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.social-link-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
}

.social-link-large i {
    font-size: 1.5rem;
}

/* Activities Section */
.activities {
    padding: 5rem 0;
    background: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.activity-card {
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.activity-date,
.activity-time,
.activity-location {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.activity-btn {
    background: var(--primary-green);
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.activity-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.agenda-link {
    text-align: center;
}

.agenda-btn {
    background: var(--accent-orange);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.agenda-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

/* Association Section */
.association {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--secondary-yellow) 100%);
}

.founding-year {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.association-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    text-align: center;
}

.association-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.info-btn {
    background: var(--primary-green);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.info-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* Page-specific Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-green) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--text-dark);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Nieuws Page Styles */
.nieuws-full {
    padding: 80px 0;
    background: #f8f9fa;
}

.nieuws-list {
    max-width: 800px;
    margin: 0 auto;
}

.nieuws-artikel {
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.nieuws-header {
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
}

.nieuws-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nieuws-datum-full,
.nieuws-tijd {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.nieuws-titel-full {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.nieuws-content {
    padding: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.nieuws-footer {
    padding: 30px 40px;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-share span {
    font-weight: 600;
    color: var(--text-dark);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.no-news {
    text-align: center;
    padding: 80px 20px;
}

.no-news-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.no-news h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-news p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Programma Page Styles */
.programma-full {
    padding: 80px 0;
    background: #f8f9fa;
}

.programma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.program-day {
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.day-header {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
    padding: 40px;
    color: var(--text-dark);
    text-align: center;
}

.day-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.day-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.day-timeline {
    padding: 40px;
    flex: 1;
}

.timeline-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 2px solid #eee;
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
}

.time {
    display: inline-block;
    background: var(--primary-green);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.event-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-green);
}

.event-actions {
    margin-top: 20px;
}

.ticket-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 205, 50, 0.4);
}

.program-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.note-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.note-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-card i {
    color: var(--primary-green);
}

.note-card ul {
    list-style: none;
    padding: 0;
}

.note-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.note-card li:last-child {
    border-bottom: none;
}

.note-card p {
    color: #666;
    line-height: 1.6;
}

.note-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.note-card a:hover {
    color: var(--dark-green);
}

/* Prinsenpaar Page Styles */
.prinsenpaar-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.prinsenpaar-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.prinsenpaar-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.profile-card {
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-image {
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.7;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
}

.profile-info {
    padding: 40px;
}

.profile-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.profile-title {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.profile-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.prinsenpaar-activities {
    padding: 80px 0;
    background: var(--text-light);
}

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

.activity-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-green) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.activity-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.activity-item p {
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.9;
}

/* Bustour Page Styles */
.bustour-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.bustour-highlight {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
    padding: 50px;
    border-radius: 20px;
    color: var(--text-dark);
}

.highlight-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.bustour-details {
    margin-bottom: 60px;
}

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

.detail-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detail-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.detail-card p {
    color: #666;
    line-height: 1.6;
}

.bustour-description {
    background: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.availability-info {
    background: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.availability-bar {
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    transition: width 0.3s ease;
}

.availability-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.urgency-message {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
}

.full-message {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-dark);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.contact-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--dark-green);
}

/* Form Styles */
.contact-form-section,
.aanmelding-form {
    padding: 80px 0;
    background: var(--text-light);
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.contact-form,
.bustour-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Fredoka', cursive;
    transition: all 0.3s ease;
    background: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(50, 205, 50, 0.4);
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

/* FAQ Styles */
.bustour-faq,
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-items,
.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.faq-item {
    background: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: var(--primary-green);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--text-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* No Data Messages */
.no-prinsenpaar,
.no-bustour {
    padding: 80px 0;
    background: #f8f9fa;
}

.no-data-message {
    text-align: center;
    background: var(--text-light);
    padding: 80px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.no-data-message i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    display: block;
}

.no-data-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.no-data-message p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 205, 50, 0.4);
}

/* Alert Messages */
.messages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.messages-container {
    position: relative;
    z-index: 1;
}

.messages-container:empty {
    display: none;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

.alert i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: var(--primary-yellow);
    width: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer .social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.copyright a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--secondary-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--text-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        padding: 15px 20px !important;
        display: block !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo a {
        gap: 10px;
    }
    
    .announcement-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .main-announcement {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .programma-days {
        grid-template-columns: 1fr;
    }
    
    .programma-grid {
        grid-template-columns: 1fr;
    }
    
    .nieuws-grid {
        grid-template-columns: 1fr;
    }
    
    .nieuws-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .announcement-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .announcement-content h2 {
        font-size: 1.8rem;
    }
    
    .closed-message h2 {
        font-size: 1.6rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-card {
        padding: 20px;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .announcement-title {
        font-size: 1.5rem;
    }
    
    .main-announcement {
        padding: 1.5rem;
    }
    
    .hero-btn,
    .cta-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-btn:hover,
.cta-btn:hover,
.activity-btn:hover,
.info-btn:hover,
.agenda-btn:hover {
    animation: bounce 0.6s ease;
}

/* Bustour Announcement Styles */
.bustour-announcement {
    padding: 60px 0;
    background: #f8f9fa;
}

.announcement-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-icon {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--text-dark);
}

.announcement-content h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.announcement-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.announcement-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: var(--primary-green);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.announcement-action {
    margin-top: 30px;
}

.announcement-action p {
    margin-bottom: 20px;
    color: #666;
}

/* Aanmeldingen Gesloten */
.aanmelding-closed {
    padding: 60px 0;
    background: var(--text-light);
}

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

.closed-icon {
    background: #dc3545;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--text-light);
}

.closed-message h2 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.closed-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.timeline-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.timeline-info h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.timeline-info h3 i {
    color: var(--primary-green);
    margin-right: 10px;
}

.timeline-info ul {
    list-style: none;
    padding: 0;
}

.timeline-info li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.timeline-info li:last-child {
    border-bottom: none;
}

.stay-updated {
    margin-top: 40px;
}

.stay-updated h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stay-updated h3 i {
    color: var(--primary-green);
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877f2;
    color: var(--text-light);
}

.social-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.social-btn.contact {
    background: var(--primary-green);
    color: var(--text-light);
}

.social-btn.contact:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}
