/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #4fae6c;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 20%;
    right: 0;
    width: 90vh;
    height: 90vh;
    background: url('img/vuurpijl.png') no-repeat center center;
    background-size: contain;
    opacity: 1.0;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
    transform: translateY(-50%);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.5rem;
    z-index: 1000;
}

.logo-container {
    margin-bottom: 0;
}

.logo {
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Header styling */
.header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(79, 174, 108, 0.95);
    backdrop-filter: blur(10px);
}

.company-name {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.status-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main content styling */
.main-content {
    flex: 1;
    padding: 2.5rem;
}

.message-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.main-message {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    line-height: 1.7;
}

.closure-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #e74c3c;
}

.closure-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

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

.closure-info li {
    padding: 0.5rem 0;
    color: #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.closure-info li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-details {
    margin: 1rem 0;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #f0f0f0;
}

.note {
    font-style: italic;
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-message {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    color: #f0f0f0;
    font-style: italic;
}

/* Footer styling */
.footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
        margin-top: 120px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    body::before {
        width: 60vh;
        height: 60vh;
        opacity: 1.0;
    }
    
    .top-header {
        padding: 1rem;
    }
    
    .logo {
        max-height: 100px;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .status-badge {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .message-section h2 {
        font-size: 1.5rem;
    }
    
    .main-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        margin-top: 100px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    body::before {
        width: 40vh;
        height: 40vh;
        opacity: 1.0;
    }
    
    .logo {
        max-height: 80px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .status-badge {
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .header {
        padding: 1.5rem;
    }
    
    .closure-info,
    .contact-info {
        padding: 1rem;
    }
}

/* Hover effecten */
.status-badge {
    transition: transform 0.2s ease;
}

.status-badge:hover {
    transform: scale(1.05);
}

/* Animatie voor de pagina */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.container {
    animation: fadeIn 0.6s ease-out;
}
