html, body {
    background: #5a1a1a !important;
    margin: 0;
    padding: 0;
    height: 100%;
    color-scheme: only dark;
}

body {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}


/* HERO SECTION */
.hero {
    height: 100vh;
    background-image: url('hero-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* GOLD FRAME */
.hero-frame {
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(255,215,140,0.5);
    border-radius: 20px;
    z-index: 3;
    pointer-events: none;
}

/* MANDALA */
.mandala-bg {
    position: absolute;
    width: 380px;
    opacity: 0.13;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* PARTICLES */
.particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,220,150,0.2) 1px, transparent 1px);
    background-size: 4px 4px;
    animation: sparkle 6s infinite linear;
    z-index: 1;
}
@keyframes sparkle {
    from { opacity: 0.7; transform: translateY(0px); }
    to   { opacity: 0.9; transform: translateY(-20px); }
}

/* GLASS CARD */
.glass-card {
    position: relative;
    z-index: 5;
    width: 95%;
    max-width: 550px;
    padding: 35px 30px;
    text-align: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,140,0.6);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* GOLD SOFT GLOW */
.glass-card:before {
    content: "";
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255,210,140,0.12), transparent 60%);
    border-radius: 20px;
    z-index: -1;
}

/* DIVIDERS */
.gold-divider {
    width: 140px;
    height: 2px;
    margin: 18px auto;
    background: linear-gradient(90deg, transparent, #ffd98a, transparent);
    border-radius: 5px;
}

/* TEXTS */
.hero-title {
    font-size: 42px;
    color: #fff5e5;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255,180,140,0.7);
}

.hero-subtitle {
    color: #ffeedd;
    margin-bottom: 18px;
    opacity: 0.9;
}

.hero-contact p {
    margin: 6px 0;
    color: #ffeedd;
    display: flex;
    justify-content: center;
    gap: 7px;
}
.hero-contact i {
    color: #ff89a4;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #ff4d88, #ff2f6a);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255,50,90,0.4);
}

/* FOOTER */
.footer {
    background: #1c1c1c;
    color: #fff;
    padding: 18px 0;
    text-align: center;
}
.footer-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-container span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-container i {
    color: #ff89a4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .glass-card { padding: 25px 20px; }
    .footer-container { flex-direction: column; gap: 10px; }
}

/* MOBILE FIXES */
@media (max-width: 768px) {

    .hero {
        padding-top: 60px;     /* add space on top */
        padding-bottom: 40px;
        height: auto;          /* allow full scroll */
        min-height: 100vh;
    }

    .glass-card {
        padding: 20px 18px;
        width: 92%;
        margin: auto;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .hero-contact p {
        font-size: 14px;
    }

    .gold-divider {
        width: 100px;
        margin: 14px auto;
    }

    .mandala-bg {
        width: 260px;      /* reduce mandala for mobile */
        bottom: 20px;
    }

    .hero-frame {
        inset: 15px;       /* shrink frame for mobile */
    }
}

.hero-contact i {
    font-size: 16px;
    color: #ffccdd; /* softer pink for mobile */
}

@media (max-width: 768px) {
    .glass-card {
        box-shadow: 0 10px 35px rgba(0,0,0,0.45);
    }
}
