/* =========================================================
   RAJAPOMPA138 - MAIN STYLESHEET
   Responsive Desktop + Android + iPhone
   FINAL: Desktop 2-column cards / Mobile 1-column cards
========================================================= */


/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --gold: #ff0000;
    --gold-light: #ff9900;

    --dark: #ffffff;
    --dark-2: #1b0b0c;
    --dark-3: #291011;

    --cream: #0D0C0C;
    --white: #ffffff;

    --text: #ff9d00;
    --muted: #ffffff;

    --border: #e8dfd1;

    --shadow:
        0 18px 45px rgba(35, 25, 15, 0.12);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 78px 0 0;

    background: var(--cream);
    color: var(--text);

    font-family: "Poppins", Arial, sans-serif;

    overflow-x: hidden;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
label {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    background: rgba(15, 6, 6, 1);

    border-bottom:
        1px solid rgb(255 0 0);

}


/* =========================================================
   NAV WRAPPER
========================================================= */

.nav-wrap {
    width: min(1120px, 92%);
    height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {
    width: 240px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.brand-logo {
    width: 240px;
    height: 60px;

    display: block;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAVIGATION CONTAINER
========================================================= */

.nav-menu {
    position: relative;

    margin-left: auto;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 25px;

    color: #eeeeee;

    font-size: 12px;
    font-weight: 600;
}

.desktop-nav a {
    display: inline-block;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}


/* =========================================================
   HAMBURGER CHECKBOX
   WAJIB TERSEMBUNYI
========================================================= */

.menu-toggle {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid rgba(255, 0, 0, 0.5);

    border-radius: 8px;

    background: var(--dark);

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.menu-button span {
    display: block;

    width: 20px;
    height: 2px;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--gold);

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 570px;

    overflow: hidden;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255, 0, 0, 0.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #000000,
            #120606 50%,
            #4d0000
        );

    color: var(--white);
}


/* =========================================================
   HERO GRID EFFECT
========================================================= */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   HERO INNER
========================================================= */

.hero-inner {
    position: relative;

    z-index: 2;

    width: min(900px, 92%);
    max-width: 900px;

    padding: 80px 0;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.eyebrow {
    margin: 0 0 10px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
    line-height: 1.5;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    width: 100%;
    max-width: 100%;

    margin: 0;

    font-family:
        "Poppins",
        Arial,
        sans-serif !important;

    font-size:
        clamp(44px, 10vw, 70px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2.5px;

    color: var(--white);

    overflow-wrap: normal;
    word-break: normal;
}

.hero h1 span {
    color: #ff1a1a;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-text {
    width: 100%;
    max-width: 610px;

    margin: 24px auto 0;

    color: #d8d1c9;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.scroll-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 32px;

    padding: 12px 18px;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.scroll-link:hover {
    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-2px);
}


/* =========================================================
   HERO GLOW
========================================================= */

.hero-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(255, 0, 0, 0.08);

    filter: blur(20px);

    pointer-events: none;
}

.glow-one {
    top: -130px;
    left: -100px;
}

.glow-two {
    right: -100px;
    bottom: -130px;
}


/* =========================================================
   CHOICES SECTION
========================================================= */

.choices {
    width: min(1120px, 92%);

    margin: 0 auto;

    padding: 90px 0 70px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    width: 100%;
    max-width: 650px;

    margin: 0 auto 40px;

    text-align: center;
}

.section-heading h2,
.about h2,
.contact h2,
.articles-link h2 {
    margin: 0;

    font-family: "Poppins", Arial, sans-serif;
}

.section-heading h2 {
    font-size:
        clamp(34px, 5vw, 48px);

    line-height: 1.15;
}

.section-heading p:not(.eyebrow) {
    margin: 10px auto 0;

    color: #d9d1c7;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CHOICE GRID
========================================================= */

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}


/* =========================================================
   CHOICE CARD
========================================================= */


.choice-card {
    position: relative;

    width: 100%;
    min-height: 380px;

    overflow: hidden;

    padding: 36px;

    border-radius: 20px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 0, 0, 0.28),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #1b1510,
            #291011
        );

    box-shadow: var(--shadow);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.card-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color:
        rgba(255, 255, 255, 0.18);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 45px;

    font-weight: 800;
}


/* =========================================================
   CHOICE ICON
========================================================= */

.choice-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        2px solid var(--gold);

    border-radius: 50%;

    overflow: hidden;

    background: var(--dark);
}

.choice-icon img {
    width: 100%;
    height: 100%;

    padding: 5px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   CARD LABEL
========================================================= */

.card-label {
    margin: 0 0 3px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.choice-card h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(38px, 5vw, 55px);

    line-height: 1.1;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.choice-description {
    width: 100%;
    max-width: 430px;

    margin: 14px 0 25px;

    color: #d9d1c7;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.choice-button,
.article-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 12px 17px;

    border-radius: 8px;

    background: #a81103;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.choice-button:hover,
.article-button:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}


/* =========================================================
   ARTICLES SECTION
========================================================= */

.articles-link {
    width: min(1120px, 92%);

    margin: 0 auto 90px;
}

.articles-link-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 42px;

    border-radius: 18px;

    background: #1b1510;

    color: #ffffff;

    box-shadow: var(--shadow);
}

.articles-link h2 {
    font-size: 38px;

    font-family: "Playfair Display", Georgia, serif;

    line-height: 1.15;
}

.articles-link p:not(.eyebrow) {
    width: 100%;
    max-width: 600px;

    margin: 10px 0 0;

    color: #e8dfd1;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    width: 100%;

    padding: 0 0 90px;
}

.about-box {
    width: min(820px, 92%);

    margin: 0 auto;

    padding: 55px;

    border:
        1px solid #ffffff;

    border-radius: 18px;

    background: #1b1510;

    text-align: center;
}

.about-box p:last-child {
    width: 100%;
    max-width: 620px;

    margin: 14px auto 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    width: 100%;

    padding: 80px 20px;

    background: #0a0a0a;

    color: #ffffff;

    text-align: center;
}

.contact p:not(.eyebrow) {
    color: #c9c0b6;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    min-height: 75px;

    padding: 20px 5%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: #000000;

    color: #ffffff;

    font-size: 14px;
}

.site-footer strong {
    color: var(--gold);

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;
}


/* =========================================================
   DESKTOP ONLY
========================================================= */

@media (min-width: 701px) {

    .menu-button {
        display: none !important;
    }

    .desktop-nav {
        position: static;

        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: none;
    }
}


/* =========================================================
   DESKTOP CHOICE GRID
========================================================= */

@media (min-width: 701px) {

    .choice-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px !important;
        width: 100% !important;
    }

    .choice-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* HEADER */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 99999 !important;

        width: 100% ;
        height: 78px ;
        min-height: 62px ;

        background: #0F0303 ;

        border-bottom: 1px solid rgba(255, 0, 0, 0.8) ;
    }


    /* WRAPPER */
    .nav-wrap {
        width: 100% ;
        height: 78px ;

        padding: 0 15px ;
        margin: 0 ;

        display: flex ;
        align-items: center ;
        justify-content: space-between ;
    }


    /* LOGO */
    .brand {
        width: 180px ;
        height: 42px ;

        min-width: 180px ;
        max-height: 125px;

        display: flex !important;
        align-items: center !important;

        overflow: hidden !important;
    }

    .brand-logo {
        width: 180px !important;
        height: 42px !important;

        max-width: 180px !important;
        max-height: 42px !important;

        object-fit: contain !important;
        object-position: left center !important;
    }


    /* MENU CONTAINER */
    .nav-menu {
        position: static !important;

        margin-left: auto !important;

        display: flex !important;
        align-items: center !important;
    }



    /* =================================================
       CHOICE CARDS - MOBILE 1 COLUMN
    ================================================= */

    .choice-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 18px !important;
        
    }

    .choice-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        min-height: 350px !important;
        padding: 30px !important;
    }

    .choice-card h3 {
        font-size: 42px !important;
        line-height: 1.1 !important;
        white-space: normal !important;
    }

    .choice-description {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    /* =================================================
       HAMBURGER
    ================================================= */

    .menu-button {
        display: flex !important;

        width: 38px !important;
        height: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        align-items: center !important;
        justify-content: center !important;

        flex-direction: column !important;

        gap: 5px !important;

        border: 2px solid rgba(255, 0, 0, 0.5) !important;
        

        background: #0a0202 !important;


        cursor: pointer !important;
    }

    .menu-button span {
        display: block !important;

        width: 18px !important;
        height: 2px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #e9ad19 !important;

        border-radius: 5px !important;

        transition: .25s ease !important;
    }


    /* =================================================
       DROPDOWN FULL WIDTH
    ================================================= */

    .desktop-nav {
        position: absolute !important;

        top: 62px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 10px 8px 18px !important;

        display: flex !important;

        flex-direction: column !important;
        align-items: stretch !important;

        gap: 2px !important;

        background:
            linear-gradient(
                180deg,
                #0a0202 20%,
                #3d1010 100%
            ) !important;

        border-top:
            1px solid rgba(255, 0, 0, .14) !important;

        border-bottom:
            1px solid rgba(255, 0, 0, .10) !important;

        border-left: 0 !important;
        border-right: 0 !important;

        border-radius: 0 !important;

        box-shadow:
            0 15px 30px rgba(0, 0, 0, .35) !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform: translateY(-5px) !important;

        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease !important;
    }


    /* =================================================
       MENU LINKS
    ================================================= */

    .desktop-nav a {
        display: block !important;

        width: 100% !important;

        padding: 12px 20px !important;
        margin: 0 !important;

        border-radius: 6px !important;

        background: transparent !important;

        color: #eee5da !important;

        font-size: 13px !important;
        font-weight: 600 !important;

        line-height: 1.4 !important;

        white-space: nowrap !important;

        transition:
            background .2s ease,
            color .2s ease !important;
    }


    /* HOVER */
    .desktop-nav a:hover {
        background:
            rgba(255, 0, 0, .08) !important;

        color: #ff3333 !important;
    }


    /* =================================================
       MENU AKTIF
       EMAS, BUKAN HIJAU
    ================================================= */

    .desktop-nav a.active {
        background:
            linear-gradient(
                90deg,
                rgba(255, 0, 0, .18),
                rgba(255, 0, 0, .08)
            ) !important;

        color: #ff3333 !important;

        border-left:
            3px solid #e9ad19 !important;

        font-weight: 700 !important;
    }


    /* =================================================
       MENU TERBUKA
    ================================================= */

    .menu-toggle:checked ~ .desktop-nav {
        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto !important;

        transform: translateY(0) !important;
    }


    /* =================================================
       HAMBURGER → X
    ================================================= */

    .menu-toggle:checked + .menu-button span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg) !important;
    }

    .menu-toggle:checked + .menu-button span:nth-child(2) {
        opacity: 0 !important;
    }

    .menu-toggle:checked + .menu-button span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg) !important;
    }
}