/* 
    Mulge.in - iOS PREMIUM FROST EDITION (v3.0)
    Theme: Apple Style Glassmorphism + High Contrast
*/

@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;600;700&family=Plus+Jakarta+Sans:wght@300;400;700&display=swap');

:root {
    --bg: #000000;
    --ios-glass: rgba(255, 255, 255, 0.08); /* Frosty effect */
    --ios-border: rgba(255, 255, 255, 0.15); /* Thin glass edge */
    --gold: #FFD700;
    --text-white: #FFFFFF; /* Main Heading */
    --text-silver: #E0E0E0; /* Description Text - Yeh ab saaf dikhega */
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFFACD 50%, #B8860B 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg);
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* --- iOS NAVIGATION --- */
.navbar {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--ios-border);
    padding: 18px 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 1.5rem;
    color: var(--text-white) !important;
}

/* --- TEXT VISIBILITY FIX (BAHUT ZAROORI) --- */
h1, h2, h3, h4, h5, .text-white {
    color: var(--text-white) !important;
}

p, .text-muted, .lead {
    color: var(--text-silver) !important; /* Ab text black nahi dikhega */
    font-weight: 400;
    opacity: 1 !important;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- iOS FROSTY GLASS CARD --- */
.glass-card {
    background: var(--ios-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--ios-border);
    border-radius: 28px;
    padding: 35px 25px;
    margin-bottom: 25px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:active {
    transform: scale(0.97); /* Click effect like iOS */
}

/* --- BUTTONS --- */
.btn-gold {
    background: var(--gold-gradient);
    color: #000 !important;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 18px; /* Slightly rounded like iOS */
    border: none;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
}

.btn-outline-white {
    background: rgba(255,255,255,0.05);
    color: #fff !important;
    border: 1px solid var(--ios-border);
    padding: 18px 30px;
    border-radius: 18px;
    width: 100%;
    backdrop-filter: blur(10px);
}

/* --- FOOTER FIX --- */
footer {
    background: #080808;
    border-top: 1px solid var(--ios-border);
    padding: 60px 0 30px;
}

footer h5, footer h3 {
    color: var(--gold) !important;
    margin-bottom: 20px;
}

footer a {
    color: var(--text-silver) !important;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

/* Newsletter Input Fix */
.newsletter-box {
    background: var(--ios-glass);
    border: 1px solid var(--ios-border);
    border-radius: 15px;
    padding: 10px;
    display: flex;
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: white;
    padding-left: 10px;
    flex: 1;
}

.newsletter-box input:focus {
    outline: none;
}

/* --- MOBILE LAYOUT --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 15px 40px;
        text-align: center;
    }
    .display-1 {
        font-size: 3rem;
        font-weight: 800;
    }
}