/* Navbar Styles - CSS Dosyası Çalışıyor! */
.navbar {
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.95) 0%, rgba(233, 30, 99, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-brand img {
    background-color: white;
    border: 2px solid white;
    border-radius: 50%;
    padding: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 55px !important;
    width: auto !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 20px !important;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Content */
main {
    min-height: calc(100vh - 80px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-pink) 0%, var(--primary-pink) 100%);
    color: white;
    padding: 50px 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
}
