/* ===================== */
/* Reset & Body          */
/* ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff5f8;
    color: #3a2530;
    width: 100%;
    overflow-x: hidden;
}

/* Scroll lock while the modal is up */
body.locked {
    overflow: hidden;
    height: 100vh;
}

/* ===================== */
/* Hero (first 100vh)    */
/* ===================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#HeroBack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 245, 248, 0.25) 0%, rgba(255, 235, 242, 0.45) 100%);
    z-index: 1;
}

/* ===================== */
/* Navbar                */
/* ===================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    z-index: 50;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-heart {
    color: #d6296e;
    font-size: 1.3rem;
    margin-right: 5px;
}

.nav-my {
    color: #3a2530;
}

.nav-mature {
    color: #c9195b;
}

.nav-passion {
    color: #d6296e;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}

.nav-login {
    color: #c9195b;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 9px 22px;
    border: 2px solid #d6296e;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.nav-login:hover {
    background: #d6296e;
    color: #fff;
}

/* ===================== */
/* Hero CTA              */
/* ===================== */
.hero-cta {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 620px;
    text-align: center;
    z-index: 10;
    padding: 0 16px;
}

.hero-tagline {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    color: #c9195b;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #6b4a58;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ff5c93, #d6296e 55%, #c9195b);
    border-radius: 40px;
    box-shadow: 0 10px 28px rgba(214, 41, 110, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(214, 41, 110, 0.5);
}

.hero-btn .arrow {
    font-size: 1.25rem;
}

/* ===================== */
/* Blocking Modal        */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 37, 48, 0.45);
    backdrop-filter: blur(4px);
    z-index: 100;
    padding: 20px;
}

.disc-content {
    background: linear-gradient(165deg, #ffffff 0%, #fff0f5 55%, #ffe3ee 100%);
    border-radius: 20px;
    border: 1px solid rgba(214, 41, 110, 0.15);
    box-shadow:
        0 20px 60px rgba(201, 25, 91, 0.25),
        0 0 0 6px rgba(255, 255, 255, 0.35);
    padding: 44px 40px 38px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

.disc-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #d6296e, #c9195b);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.disc-lead {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c9195b;
    line-height: 1.25;
    margin-bottom: 14px;
}

.disc-text {
    font-size: 0.95rem;
    color: #6b5560;
    line-height: 1.6;
    margin-bottom: 26px;
}

.disc-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3a2530;
    margin-bottom: 22px;
}

.disc-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff5c93, #d6296e 55%, #c9195b);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 22px rgba(214, 41, 110, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.disc-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(214, 41, 110, 0.45);
}

.disc-confirm .arrow {
    font-size: 1.25rem;
}

.disc-leave {
    margin-top: 18px;
}

.disc-leave span {
    font-size: 0.85rem;
    color: #a08a94;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.disc-leave span:hover {
    color: #c9195b;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===================== */
/* Article Content       */
/* (visible below 100vh) */
/* ===================== */
.content {
    background: #fff5f8;
    padding: 60px 20px 80px;
}

article {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
    color: #4a3540;
}

article h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #c9195b;
}

article h2 {
    font-size: 1.55rem;
    margin: 38px 0 16px;
    color: #d6296e;
}

article h3 {
    font-size: 1.2rem;
    margin: 26px 0 12px;
    color: #c9195b;
}

article p {
    margin-bottom: 16px;
    color: #55414c;
}

article strong {
    color: #c9195b;
}

article ul, article ol {
    margin: 16px 0;
    padding-left: 24px;
}

article li {
    margin-bottom: 8px;
    color: #55414c;
}

article blockquote {
    border-left: 4px solid #d6296e;
    padding: 14px 22px;
    margin: 22px 0;
    background: rgba(214, 41, 110, 0.06);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #6b4a58;
}

article table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(201, 25, 91, 0.08);
}

article th, article td {
    padding: 13px 14px;
    border: 1px solid #f3d3e0;
    text-align: left;
}

article th {
    background: linear-gradient(135deg, #d6296e, #c9195b);
    color: #fff;
    font-weight: 700;
}

article td {
    color: #55414c;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .navbar {
        padding: 12px 16px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-login {
        padding: 7px 16px;
        font-size: 0.8rem;
    }

    .disc-content {
        padding: 34px 24px 30px;
    }

    .disc-lead {
        font-size: 1.25rem;
    }

    .disc-text {
        font-size: 0.88rem;
    }

    article h1 {
        font-size: 1.7rem;
    }

    article h2 {
        font-size: 1.35rem;
    }

    .hero-tagline {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 0.85rem;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
