html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* 🔥 Focus stilleri */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* 🌙 Gece arka plan */
body {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    color: white;
}

/* 🏮 Kandiller */
.lantern-img {
    position: fixed;
    top: 60px;
    width: 200px;
    animation: swing 3s ease-in-out infinite;
    z-index: 999;
    pointer-events: none; /* tıklamayı engellemez */
}

    .lantern-img.left {
        left: 40px;
    }

    .lantern-img.right {
        right: 40px;
    }

/* 📱 Mobilde küçült */
@media (max-width: 768px) {
    .lantern-img {
        width: 120px;
        top: 40px;
    }

        .lantern-img.left {
            left: 10px;
        }

        .lantern-img.right {
            right: 10px;
        }
}

/* 🏮 Sallanma animasyonu */
@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

/* 🪟 Cam kart (premium) */
.ramazan-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
}

/* 📱 mobil kart padding */
@media (max-width: 576px) {
    .ramazan-card {
        padding: 25px;
    }
}

/* ✨ Buton hover */
.btn-success {
    transition: all 0.25s ease;
}

    .btn-success:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(25, 135, 84, 0.6);
    }

/* 🔥 İftar glow efekti */
.iftar-glow {
    position: relative;
    animation: iftarPulse 2s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes iftarPulse {
    0% {
        box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
    }

    50% {
        box-shadow: 0 0 28px rgba(255, 193, 7, 0.95);
    }

    100% {
        box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
    }
}
