/* ===================================================
   BOJONEGORO WASTRA BATIK FESTIVAL 2026
   THEME CSS
=================================================== */

:root{
    --primary: #083847;
    --secondary: #ff6b35;
    --cyan: #27d7e7;
    --pink: #ff4da6;
    --yellow: #ffbf3f;
    --cream: #fff6eb;
    --dark: #062631;
    --white: #ffffff;
}

/* ===================================================
   GLOBAL
=================================================== */

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: var(--primary);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Background motif batik */

body::before{
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: -1;
}

/* ===================================================
   NAVBAR
=================================================== */

.navbar{
    background: rgba(4, 27, 36, 0.8);
    backdrop-filter: blur(10px);
    transition: .3s;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.nav-link{
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    position: relative;
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: .3s;
}

.nav-link:hover::after{
    width: 100%;
}

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

.hero-section{
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.7)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Glow */

.hero-section::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #5591a8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.hero-section h1{
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.hero-section p{
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

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

.btn-warning{
    background: linear-gradient(
        135deg,
        var(--secondary),
        #ff925c
    );
    border: none;
    color: white;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255,107,53,0.35);
    transition: .3s;
}

.btn-warning:hover{
    transform: translateY(-4px);
    background: linear-gradient(
        135deg,
        #ff925c,
        var(--secondary)
    );
    color: white;
}

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

section{
    position: relative;
}

section h2{
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

section h2::after{
    content: '';
    width: 80px;
    height: 5px;
    background: var(--secondary);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

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

.bg-dark{
    background: linear-gradient(
        135deg,
        #0a3d55,
        #538fa5
    ) !important;
}

.about-image,
img{
    border-radius: 0px;
}

/* ===================================================
   EVENT CARD
=================================================== */

.card{
    border: none;
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

.card-body{
    padding: 30px;
}

.card h4{
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.card p{
    color: #555;
    line-height: 1.8;
}

/* ===================================================
   RUNDOWN
=================================================== */

.bg-light{
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.02)
        ) !important;
}

.schedule-box{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
}

.schedule-box h4{
    color: var(--yellow);
    font-weight: 800;
}

.schedule-box ul{
    margin-top: 15px;
}

.schedule-box li{
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
}

/* ===================================================
   GUEST STAR
=================================================== */

.guest-card{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.guest-card img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s;
}

.guest-card:hover img{
    transform: scale(1.05);
}

.guest-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.9),
            transparent
        );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.guest-overlay h4{
    font-weight: 800;
    margin-bottom: 5px;
}

.guest-overlay p{
    margin: 0;
    color: rgba(255,255,255,.8);
}

/* ===================================================
   VENUE
=================================================== */

.venue-box{
    background: rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(12px);
}

.venue-box h3{
    font-weight: 800;
    color: var(--yellow);
}

.venue-box p{
    line-height: 1.9;
    color: rgba(255,255,255,.85);
}

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

footer{
    background: #031a22;
    border-top: 1px solid rgba(255,255,255,.08);
}

footer h5{
    font-weight: 800;
}

footer p{
    color: rgba(255,255,255,.6);
}

/* ===================================================
   SCROLLBAR
=================================================== */

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background: #031a22;
}

::-webkit-scrollbar-thumb{
    background: var(--secondary);
    border-radius: 20px;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width: 992px){

    .hero-section h1{
        font-size: 3.5rem;
    }

    section h2{
        font-size: 2.2rem;
    }

}

@media(max-width: 768px){

    .hero-section{
        text-align: center;
        padding: 100px 20px;
    }

    .hero-section h1{
        font-size: 2.5rem;
    }

    .hero-section p{
        font-size: 1rem;
    }

    .card{
        margin-bottom: 20px;
    }

}


/* =========================================
   FESTIVAL CARD
========================================= */

.festival-card{
    overflow: hidden;
    border-radius: 30px;
    transition: .4s;
    position: relative;
}

.festival-card img{
    width: 100%;
    transition: .5s;
}

.festival-card:hover{
    transform: translateY(-10px);
}

.festival-card:hover img{
    transform: scale(1.03);
}

/* =========================================
   RUNDOWN PAGE
========================================= */

.rundown-item{
    background: rgba(255,255,255,.08);
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
}

.time-box{
    background: linear-gradient(
        135deg,
        #ff6b35,
        #ff935d
    );

    color: white;

    padding: 15px;

    border-radius: 20px;

    text-align: center;

    font-size: 1.3rem;

    font-weight: bold;
}

.content-box h4{
    color: white;
    font-weight: 700;
}

.content-box p{
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
}


/* =========================================
   TRAIN SECTION
========================================= */

.train-section{
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(4, 32, 45, .82),
            rgba(4, 32, 45, .9)
        ),
        url('../images/bg.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.train-title{
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.train-subtitle{
    color: rgba(255,255,255,.7);
}

.search-box{
    background: rgba(255,255,255,.08);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.train-card{
    background: rgba(255,255,255,.08);
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: .3s;
}

.train-card:hover{
    transform: translateY(-5px);
}

.train-name{
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
}

.train-time small{
    color: rgba(255,255,255,.6);
}

.train-time h4{
    color: #27d7e7;
    font-size: 2rem;
    font-weight: bold;
}

.destination-box{
    background: #ff6b35;
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
}

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

.hero-section{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #062f42;
    display: flex;
    align-items: center;
}

/* =========================================
BACKGROUND
========================================= */

.hero-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

/* =========================================
TOP LOGO
========================================= */

.hero-top-logo{
    position: absolute;
    top: 97px;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 900px;

    z-index: 5;

    animation: fadeDown 1.2s ease;
}

.hero-top-logo img{
    width: 100%;
}

/* =========================================
FESTIVAL LOGO
========================================= */

.hero-logo{
    position: absolute;
    right: 15%;
    top: 25%;
    z-index: 5;
    animation: fadeLeft 1.5s ease;
}

.hero-logo img{
    width: 460px;
    max-width: 100%;
}

/* =========================================
BUPATI
========================================= */

.hero-bupati{
    position: absolute;
    right: 8%;
    bottom: 0;

    z-index: 4;

    animation: fadeUp 1.5s ease;
}

.hero-bupati img{
    width: 480px;
    max-width: 100%;
}

/* =========================================
BOTTOM ORNAMENT
========================================= */

.hero-bottom{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 3;

    animation: fadeUp 1.5s ease;
}

.hero-bottom img{
    width: 100%;
}

/* =========================================
CONTENT
========================================= */

.hero-content{
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text{
    color: white;
    padding-top: 120px;
}

.festival-badge{
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.hero-title{
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 30px;

    animation: fadeRight 1.2s ease;
}

.hero-subtitle{
    margin-top: 25px;
    font-size: 1.2rem;
    color: rgba(255,255,255,.8);

    animation: fadeRight 1.5s ease;
}

.hero-button-group{
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.btn-warning{
    background: #ff6b35;
    border: none;
    color: white;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 50px;
}

.btn-warning:hover{
    background: #ff844f;
    color: white;
}

/* =========================================
ANIMATION
========================================= */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(60px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeDown{

    from{
        opacity: 0;
        transform: translate(-50%, -60px);
    }

    to{
        opacity: 1;
        transform: translate(-50%, 0);
    }

}

@keyframes fadeLeft{

    from{
        opacity: 0;
        transform: translateX(80px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeRight{

    from{
        opacity: 0;
        transform: translateX(-60px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 992px){

    .hero-section{
        padding-top: 120px;
        text-align: center;
    }

    .hero-title{
        font-size: 3rem;
    }

    .hero-subtitle{
        font-size: 1rem;
    }

    .hero-logo{
        position: relative;
        top: auto;
        right: auto;
        margin-top: 50px;
        text-align: center;
    }

    .hero-logo img{
        width: 250px;
    }

    .hero-bupati{
        position: relative;
        right: auto;
        bottom: auto;
        text-align: center;
        margin-top: 30px;
    }

    .hero-bupati img{
        width: 320px;
    }

    .hero-button-group{
        justify-content: center;
    }

}

@media(max-width: 768px){

    .hero-top-logo{
        top: 97px;
        max-width: 100%;
    }

    .hero-title{
        font-size: 2.3rem;
    }

    .hero-bupati img{
        width: 260px;
    }

    .hero-logo img{
        width: 200px;
    }

    .hero-bottom img{
        height: 160px;
        object-fit: cover;
    }

}

.hero-bupati-text{
    margin-top: -20px;
    animation: fadeRight 1.3s ease;
}

.hero-bupati-text img{
    width: 520px;
    max-width: 100%;
}

@media(max-width:768px){

        .hero-bupati-text{
            margin-top: -10px;
            animation: fadeRight 1.3s ease;
        }

        .hero-bupati-text img{
            width: 420px;
            max-width: 100%;
        }

    .hero-logo{
        position: absolute;
        right: 5%;
        top: 12%;
        z-index: 5;
        animation: fadeLeft 1.5s ease;
    }

    .hero-logo img{
        width: 280px;
        max-width: 100%;
    }

    

}

/* =========================================
FESTIVAL TITLE
========================================= */

.festival-title-wrap{
    margin-bottom: 25px;
    position: relative;
}


.festival-title{
    font-size: 1.5rem;
    font-weight: 900;

    color: white;
    padding-left: 10px;
    line-height: 1.1;
    margin-bottom: 10px;

    position: relative;

    display: inline-block;
}

/* gradient text */

.festival-title span{
    background: linear-gradient(
        135deg,
        #ffffff,
        #8adfff,
        #27d7e7
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* underline glow */

.festival-title::after{
    content: '';

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 90px;
    height: 5px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #ff6b35,
        #27d7e7
    );

    box-shadow: 0 0 20px rgba(39,215,231,.6);
}

/* =========================================
CARD SECTION
========================================= */

.festival-card{
    overflow: hidden;
    border-radius: 25px;

    position: relative;

    transition: .4s;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);
}

.festival-card:hover{
    transform: translateY(-8px);
}

.festival-card img{
    width: 100%;
    transition: .5s;
}

.festival-card:hover img{
    transform: scale(1.03);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .festival-title{
        font-size: 2rem;
    }

    .festival-date{
        font-size: .8rem;
        padding: 8px 14px;
    }

}

/* =========================================
LEAF OVERLAY
========================================= */

.leaf-overlay{
    position: fixed;
    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 1;
}

/* tiap daun */

.leaf{
    position: absolute;

    width: 120px;
    height: 120px;

    background:
        url('../images/daun_single.png');

    background-size: contain;
    background-repeat: no-repeat;

    opacity: .06;

    animation: floatingLeaf linear infinite;
}

/* =========================================
POSITION
========================================= */

.leaf-1{
    left: 5%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.leaf-2{
    left: 20%;
    width: 80px;
    height: 80px;

    animation-duration: 22s;
    animation-delay: 3s;
}

.leaf-3{
    left: 40%;

    width: 140px;
    height: 140px;

    animation-duration: 25s;
    animation-delay: 1s;
}

.leaf-4{
    left: 60%;

    width: 90px;
    height: 90px;

    animation-duration: 20s;
    animation-delay: 5s;
}

.leaf-5{
    left: 78%;

    width: 130px;
    height: 130px;

    animation-duration: 26s;
    animation-delay: 2s;
}

.leaf-6{
    left: 90%;

    width: 100px;
    height: 100px;

    animation-duration: 19s;
    animation-delay: 6s;
}

/* =========================================
ANIMATION
========================================= */

@keyframes floatingLeaf{

    0%{
        transform:
            translateY(-200px)
            rotate(0deg);

        opacity: 0;
    }

    10%{
        opacity: .05;
    }

    50%{
        transform:
            translateY(50vh)
            translateX(40px)
            rotate(180deg);

        opacity: .08;
    }

    100%{
        transform:
            translateY(120vh)
            translateX(-50px)
            rotate(360deg);

        opacity: 0;
    }

}


/* =========================================
ZONA SECTION
========================================= */

.zona-interactive-section{
    position: relative;
    overflow: hidden;
}

/* =========================================
MAP
========================================= */

.zona-map-wrapper{
    position: relative;

    border-radius: 35px;

    overflow: hidden;

    aspect-ratio: 16/10;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 25px 60px rgba(0,0,0,.3);
}

.zona-map{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: .5s ease;
}

.zona-map.active{
    opacity: 1;
}

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

.zona-menu{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================================
ITEM
========================================= */

.zona-item{
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 22px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.06);

    cursor: pointer;

    transition: .4s ease;
}

/* hover */

.zona-item:hover,
.zona-item.active{

    background:
        rgba(255,255,255,.08);

    transform:
        translateX(10px);

    border:
        1px solid rgba(39,215,231,.2);

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

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

.zona-number{
    min-width: 60px;
    height: 60px;

    border-radius: 18px;

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

    font-size: 1.2rem;
    font-weight: 800;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff6b35,
            #27d7e7
        );
}

/* =========================================
TEXT
========================================= */

.zona-item h3{
    color: white;

    font-size: 1.3rem;
    font-weight: 800;

    margin-bottom: 5px;
}

.zona-item p{
    color:
        rgba(255,255,255,.65);

    margin-bottom: 0;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px){

    .zona-map-wrapper{
        margin-top: 40px;
    }

}

@media(max-width:768px){

    .zona-item{
        padding: 18px;
    }

    .zona-number{
        min-width: 50px;
        height: 50px;

        font-size: 1rem;
    }

    .zona-item h3{
        font-size: 1.1rem;
    }

    .zona-item p{
        font-size: .85rem;
    }

}


.fashion-box{
    background: rgba(10, 31, 46, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.fashion-list li{
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 14px;
}

.fashion-box h3,
.fashion-box h4{
    font-weight: 700;
}

.form-control-lg{
    border-radius: 14px;
    padding: 15px 20px;
}