/* ======================================================
   GARUDA4D PROMO
   style.css
   ====================================================== */

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial,Helvetica,sans-serif;
    background:#050b15;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;

}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#07121f;
}

::-webkit-scrollbar-thumb{

    background:#1487ff;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#49a7ff;

}

/* =========================
   LINK
========================= */

a{

    color:inherit;
    text-decoration:none;

}

img{

    max-width:140%;
    display:block;

}

/* =========================
   CONTAINER
========================= */

.container{

    width:92%;
    max-width:1300px;
    margin:auto;

}

/* =========================
   HEADER
========================= */

header{

    width:100%;

    background:#08111d;

    border-bottom:1px solid rgba(0,153,255,.3);

    position:sticky;
    top:0;

    z-index:999;

    backdrop-filter:blur(8px);

}

.header-area{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo{

    width:220px;

    transition:.3s;

}

.logo:hover{

    transform:scale(1.05);

}

/* =========================
   MENU
========================= */

nav ul{

    list-style:none;

    display:flex;

    gap:25px;

}

nav ul li a{

    color:#ffffff;

    font-size:15px;

    transition:.3s;

}

nav ul li a:hover{

    color:#23a2ff;

}

/* =========================
   HERO
========================= */

.hero{

    padding:60px 0;

    text-align:center;

}

.hero h1{

    color:#1398ff;

    font-size:42px;

    margin-top:20px;

    margin-bottom:25px;

    text-shadow:0 0 20px rgba(0,153,255,.5);

}

/* =========================
   BANNER
========================= */

.banner{

    margin-top:35px;

    border-radius:15px;

    overflow:hidden;

    border:2px solid #158cff;

    box-shadow:

    0 0 20px rgba(0,153,255,.35);

}

.banner img{

    width:80%;

    height:auto;

}

/* =========================
   MARQUEE
========================= */

.marquee{

    width:100%;

    overflow:hidden;

    background:#0a1525;

    border:1px solid rgba(0,153,255,.4);

    border-radius:40px;

    padding:14px 0;

    margin-top:25px;

    box-shadow:0 0 12px rgba(0,153,255,.25);

}

.marquee-content{

    display:inline-block;

    white-space:nowrap;

    padding-left:100%;

    font-size:18px;

    color:#ffffff;

    font-weight:bold;

}

/* =========================
   SECTION
========================= */

.promo-area{

    padding:70px 0;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:34px;

    color:#1493ff;

    margin-bottom:15px;

}

.section-title p{

    color:#b7c7da;

    font-size:17px;

}

/* =========================
   GRID
========================= */

.promo-grid{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:30px;

}

/* =========================
   CARD
========================= */

.promo-card{

    background:#111a26;
    border-radius:18px;
    overflow:hidden;

    border:2px solid rgba(0,153,255,.35);

    position:relative;

    transition:all .35s ease;

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);

    min-height:650px;

    display:flex;
    flex-direction:column;

}

.promo-card:hover{

    transform:translateY(-10px);

    border-color:#18a7ff;

    box-shadow:
        0 0 18px rgba(0,153,255,.45),
        0 0 35px rgba(0,153,255,.25);

}


/* =========================
   IMAGE
========================= */

.promo-image{

    width:100%;
    aspect-ratio:16/9;

    background:#000;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

.promo-image img{

    width:100%;
    height:100%;

    object-fit:contain;

    background:#000;

}

.promo-card:hover .promo-image img{

    transform:scale(1.08);

}


/* =========================
   CONTENT
========================= */

.promo-content{

    padding:25px;

    display:flex;
    flex-direction:column;
    flex:1;

}

.promo-content h3{

    font-size:25px;

    line-height:1.4;

    margin-bottom:15px;

    color:#0ea5ff;

}

.promo-content p{

    font-size:17px;

    line-height:1.8;

    color:#d8e7f5;

    margin-bottom:25px;

    flex:1;

}

.tanggal{

    font-size:15px;

    color:#9db8d4;

    margin-bottom:18px;

}

.btn-read{

    margin-top:auto;

}

/* =========================
   OVERLAY
========================= */

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.55);

    opacity:0;

    transition:.35s;

}

.promo-card:hover .overlay{

    opacity:1;

}

.overlay button{

    background:#0d8fff;

    color:#fff;

    border:none;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

}

.overlay button:hover{

    background:#0075e8;

}