.navbar {
    background-color: #CCE6FF;
    padding: 1.5rem 0;
    min-height: 80px;
}
.navbar-brand img {
    height: 60px;
}
.nav-link {
    color: #003366;
    font-weight: 500;
    margin: 0 15px;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}
.nav-link:hover {
    color: #003366;
}
.nav-link.active {
    font-weight: 700;
    color: #003366 !important;
}
.hero-section {
    background-image: url("../images/background_panel.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.vision-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #007bff;
    margin: 20px auto;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}
.card:hover {
    transform: translateY(-10px);
}
.card-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}
.card-title {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}
.card-text {
    color: #666;
    line-height: 1.8;
}
.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.contact-section {
    padding: 40px 0;
    background-color: #ffffff;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.form-control {
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.btn-submit {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 10px;
}
.footer-contact i {
    margin-right: 10px;
    color: #3498db;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #bdc3c7;
}
.social-links {
    margin-top: 20px;
}
.social-links a {
    color: #bdc3c7;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #fff;
}
.events-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.event-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}
.event-card:hover {
    transform: translateY(-10px);
}
.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}
.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}
.event-short-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.event-long-desc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.event-card:hover .event-long-desc {
    opacity: 1;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
/* === Etkinlik Detay Modalı (Keşfet uyumlu) === */
.event-modal {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.18);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.event-modal.active,
.event-modal[style*="block"] {
    display: flex !important;
}
.modal-content-modern {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 900px;
    width: 90vw;
    min-height: 350px;
    position: relative;
    padding: 0;
    overflow: hidden;
}
.modal-left-modern {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 20px 0 0 20px;
    padding: 32px 18px;
}
.modal-left-modern img {
    width: 100%;
    max-width: 340px;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.modal-right-modern {
    flex: 1;
    padding: 48px 40px 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-right-modern h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
}
.modal-community {
    font-size: 1.1rem;
    color: #1956a3;
    font-weight: 600;
    margin-bottom: 18px;
}
.modal-short {
    font-size: 1.1rem;
    color: #00509e;
    margin-bottom: 18px;
}
.modal-dates {
    font-size: 1rem;
    color: #666;
    margin-bottom: 18px;
    padding: 8px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.modal-long {
    font-size: 1rem;
    color: #444;
    margin-bottom: 28px;
    word-break: break-word;
    white-space: pre-line;
}
.apply-btn-modern {
    background: #00509e;
    color: #fff;
    border: none;
    padding: 18px 38px;
    font-size: 1.25rem;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 10px;
    transition: background 0.2s;
    align-self: flex-start;
}
.apply-btn-modern:hover {
    background: #003366;
}
.close-btn-modern {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    color: #003366;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.close-btn-modern:hover {
    color: #00509e;
}
@media (max-width: 900px) {
    .modal-content-modern {
        flex-direction: column;
        max-width: 98vw;
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .modal-left-modern {
        border-radius: 20px 20px 0 0;
        padding: 18px 8px;
        justify-content: center;
        flex-shrink: 0;
    }
    .modal-left-modern img {
        max-width: 95vw;
        height: 220px;
    }
    .modal-right-modern {
        padding: 24px 12px;
        overflow: visible;
        max-height: none;
        flex: 1;
    }
    .modal-right-modern h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .modal-community {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .modal-short {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .modal-dates {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .modal-long {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .apply-btn-modern {
        font-size: 1.1rem;
        padding: 14px 28px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .modal-content-modern {
        max-width: 95vw;
        max-height: 95vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .modal-left-modern {
        padding: 12px 6px;
    }
    .modal-left-modern img {
        height: 300px;
    }
    .modal-right-modern {
        padding: 16px 8px;
        max-height: none;
        overflow: visible;
    }
    .modal-right-modern h2 {
        font-size: 1.3rem;
    }
    .modal-community {
        font-size: 0.9rem;
    }
    .modal-short {
        font-size: 0.9rem;
    }
    .modal-dates {
        font-size: 0.8rem;
    }
    .modal-long {
        font-size: 0.8rem;
    }
    .apply-btn-modern {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .close-btn-modern {
        top: 12px;
        right: 16px;
        font-size: 1.5rem;
    }
}
/* === Mini Başvuru Modalı (Keşfet uyumlu) === */
.mini-modal {
    display: none;
    position: fixed;
    z-index: 12000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 48, 102, 0.18);
    align-items: center;
    justify-content: center;
}
.mini-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 28px 18px 20px 18px;
    min-width: 240px;
    max-width: 340px;
    box-shadow: 0 4px 24px rgba(0, 48, 102, 0.12);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    font-family: 'Poppins', Arial, sans-serif;
}
.mini-modal-content h4 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 18px;
    text-align: center;
}
.mini-modal-content label {
    color: #003366;
    font-size: 15px;
    margin-bottom: 4px;
    font-family: 'Poppins', Arial, sans-serif;
}
.mini-modal-content input[type="text"],
.mini-modal-content input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 7px;
    border: 1px solid #aee4f6;
    font-size: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f8fbff;
    transition: border 0.2s;
}
.mini-modal-content input[type="text"]:focus,
.mini-modal-content input[type="password"]:focus {
    border: 1px solid #00509e;
    outline: none;
}
.mini-modal-content button[type="submit"] {
    background: #00509e;
    color: #fff;
    border: none;
    padding: 12px 0;
    display: block;
    width: 100%;
    margin: 16px auto 0 auto;
    font-size: 16px;
    border-radius: 18px;
    cursor: pointer;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    transition: background 0.2s;
}
.mini-modal-content button[type="submit"]:hover {
    background: #003366;
}
.mini-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    color: #00509e;
    cursor: pointer;
    transition: color 0.2s;
}
.mini-close:hover {
    color: #003366;
}
@media (max-width: 991.98px) {
  .navbar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    position: relative;
    z-index: 1050;
    background: #CCE6FF;
    padding: 10px 0 10px 0;
  }
  .navbar-logos .navbar-brand img {
    height: 48px;
    max-height: 48px;
    width: auto;
    margin-top: 13px;
  }
  .neu-logo-mobile img {
    height: 48px;
    max-height: 48px;
    width: auto;
  }
  .navbar {
    padding-top: 0 !important;
    min-height: 0 !important;
  }
  .navbar .container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .navbar-toggler {
    margin-top:10px;
    margin-left: 10px !important;
    margin-right: auto !important;
    left: 0;
    right: auto;
    position: relative;
  }
}
