/* static/css/home/subscribe_info.css */

/* Stijlen voor deze pagina */
:root {
    --primary-color: #e84e7e;
    --secondary-color: #6c63ff;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Navigatiebalk Stijlen --- */
.navbar-custom {
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-custom.scrolled {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
}
.navbar-custom .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}
.navbar-custom .navbar-brand:hover {
    color: var(--primary-color);
}
.navbar-custom .navbar-toggler {
    border: none;
    outline: none;
}
.navbar-custom .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-custom .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--primary-color);
}
.navbar-custom .nav-link:hover::after, .navbar-custom .nav-link.active::after {
    width: 100%;
}
.navbar-custom .btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
    text-decoration: none;
}
.navbar-custom .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 78, 126, 0.4);
    background: #d41f6b;
}

/* --- Pagina Specifieke Stijlen --- */
.info-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}
.info-container {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}
.info-container .icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
}
.info-container h1 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2.5rem;
}
.info-container p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.early-bird-form {
    margin-top: 30px;
    text-align: left;
}
.early-bird-form h3 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}
.early-bird-form .form-control, .early-bird-form .form-select {
    margin-bottom: 15px;
}
.early-bird-form label {
    margin-bottom: 5px;
    font-weight: 500;
}
.early-bird-form .form-text {
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
}
/* Style for form paragraphs generated by as_p */
.early-bird-form form p {
    margin-bottom: 1rem;
}
.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}
.btn-submit:hover {
    background: #d41f6b;
    transform: translateY(-2px);
}

/* --- Footer Stijlen --- */
footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}
.footer-about p, .footer-links a, .footer-bottom p {
    color: rgba(255,255,255,0.7);
}
.social-links { display: flex; gap: 15px;
}
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%;
display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s ease; text-decoration: none;
}
.social-links a:hover { background: var(--primary-color); transform: translateY(-3px);
}
.footer-links h4 { font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; color: rgba(255,255,255,0.9);
}
.footer-links ul { list-style: none; padding: 0;
}
.footer-links li { padding: 8px 0;
}
.footer-links a { text-decoration: none; transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--primary-color);
}
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
}