﻿/* --- ISKELET VE MODALLAR --- */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

    body.modal-open {
        overflow: hidden;
    }

.modal-backdrop {
    z-index: 100000 !important;
}

.modal {
    z-index: 100001 !important;
}

/* --- NAVBAR (HEADER) --- */
header {
    position: relative;
    z-index: 1000 !important;
    overflow: visible !important;
}

.navbar {
    position: relative;
    z-index: 1010 !important;
}

.dropdown-menu {
    z-index: 1020 !important;
}

/* --- FOOTER --- */
footer {
    margin-top: auto;
    padding-top: 60px;
    position: relative;
    overflow: hidden !important;
}

.footer-link {
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
    font-size: 0.95rem;
}

    .footer-link:hover {
        opacity: 1;
        transform: translateX(5px);
    }

.footer-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 30px;
        height: 2px;
    }

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: white !important;
        transform: translateY(-3px);
    }

.bottom-bar {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.weather-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    clip-path: inset(0 0 0 0);
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.btn-action {
    color: white !important;
    border-radius: 50px;
    padding: 8px 24px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .btn-action:hover i {
        transform: scale(1.2) rotate(10deg);
        transition: transform 0.3s ease;
    }

.navbar-toggler {
    border: 2px solid #000000 !important;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(0deg) brightness(1000%) contrast(100%) !important;
}
