/* ============================================
   Anı Bahçemiz — Ramazan Teması
   Melek & Yeşimsu'nun Mübarek Ayı 🌙
   ============================================ */

/* ── Ramazan Giriş Sayfası ─────────────────── */
.ramadan-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

/* Sol — Fotoğraf Paneli */
.ramadan-photo-panel {
    position: relative;
    overflow: hidden;
}
.ramadan-photo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.ramadan-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(74,158,147,0.25) 0%,
        rgba(123,64,89,0.55) 60%,
        rgba(20,10,35,0.75) 100%
    );
}
.ramadan-photo-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 36px;
    background: linear-gradient(transparent, rgba(10,5,20,0.85));
}
.ramadan-photo-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    line-height: 1.2;
    margin-bottom: 8px;
}
.ramadan-photo-names {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ramazan Hilali Dekorasyonu */
.ramadan-crescent {
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 3.5rem;
    filter: drop-shadow(0 0 16px rgba(201,168,76,0.7));
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(201,168,76,0.5)); transform: scale(1); }
    50%       { filter: drop-shadow(0 0 24px rgba(201,168,76,0.9)); transform: scale(1.08); }
}

/* Yıldızlar */
.ramadan-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.ramadan-star {
    position: absolute;
    color: rgba(255,255,255,0.7);
    animation: twinkle linear infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50%       { opacity: 1;   transform: scale(1.2); }
}

/* Sağ — Form Paneli */
.ramadan-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 48px;
    background: linear-gradient(160deg, #FBF4F7 0%, #F3FAFA 60%, #FBF5E6 100%);
    position: relative;
    overflow: hidden;
}
.ramadan-form-panel::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,112,144,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.ramadan-form-panel::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,158,147,0.07) 0%, transparent 70%);
    bottom: -80px; left: -80px;
}

.ramadan-form-inner {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

/* Ramazan Karşılama Başlığı */
.ramadan-welcome {
    text-align: center;
    margin-bottom: 36px;
}
.ramadan-moon-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
}
.ramadan-greeting {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--dr-dark), var(--vg-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.ramadan-subgreeting {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Site Logosu (Form içinde) */
.ramadan-site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    text-decoration: none;
}
.ramadan-site-logo .logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dr-dark), var(--dr), var(--vg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Dashboard Ramazan Banner ──────────────── */
.ramadan-dashboard-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    position: relative;
    box-shadow: 0 8px 32px rgba(123,64,89,0.15);
}
.ramadan-banner-bg {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1045 30%, #3d1a0a 70%, #0a1a2e 100%);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 200px;
    align-items: stretch;
}
.ramadan-banner-left {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Desen: nokta ızgara */
.ramadan-banner-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.ramadan-banner-moon {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative; z-index: 1;
    filter: drop-shadow(0 0 10px rgba(201,168,76,0.6));
}
.ramadan-banner-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    position: relative; z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ramadan-banner-title .gold-text {
    background: linear-gradient(135deg, #f0c040, #c9a84c, #f0c040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.ramadan-banner-text {
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative; z-index: 1;
    max-width: 400px;
}

/* Sağ — Anne Kız Fotoğrafı */
.ramadan-banner-photo {
    position: relative;
    overflow: hidden;
}
.ramadan-banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.ramadan-banner-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a0a2e 0%, transparent 40%);
    z-index: 1;
}

/* Yıldız animasyonu (banner içi) */
.ramadan-banner-star {
    position: absolute;
    color: rgba(240,192,64,0.6);
    font-size: 0.6rem;
    animation: twinkle linear infinite;
    z-index: 1;
}

/* ── Ramazan Dua Kartı ─────────────────────── */
.ramadan-dua-card {
    background: linear-gradient(135deg, #1a0a2e, #2d1045);
    border-radius: 16px;
    padding: 28px 32px;
    color: white;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 8px 24px rgba(20,10,45,0.25);
}
.ramadan-dua-icon { font-size: 2.5rem; margin-bottom: 12px; }
.ramadan-dua-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 8px;
}
.ramadan-dua-sub { font-size: 0.83rem; color: rgba(255,255,255,0.5); }

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
    .ramadan-login-page { grid-template-columns: 1fr; }
    .ramadan-photo-panel { height: 280px; }
    .ramadan-form-panel { padding: 32px 24px; }
    .ramadan-greeting { font-size: 1.6rem; }
    .ramadan-banner-bg { grid-template-columns: 1fr; }
    .ramadan-banner-photo { height: 160px; }
    .ramadan-banner-title { font-size: 1.6rem; }
    .ramadan-banner-left { padding: 24px; }
}
