:root {
    --primary-bg-nufest: #0a5479;
    --primary-bg: #fff;
    --main-color: #120d37;
    --main-color-dark: #0c0925;
    --aqua-color: #00ccd3;
    --nff-primary-color: #3498db;
    --nff-secondary-color: #2c3e50;
    --nff-accent-color: #e74c3c;
    --nff-success-color: #2ecc71;
    --nff-light-color: #f5f7fa;
    --nff-dark-color: #333;
    --nff-gray-color: #7f8c8d;
    --nff-white: #fff;
    --nff-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --nff-border-radius: 10px;

}

* {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /* Agar bisa discroll */
}

section {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
}

section .header {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--main-color);
    height: 80px;
    width: 100%;
    opacity: 90%;
    transition: 0.5s ease;
    z-index: 5;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.137);
}

.nav-link.active {
    color: #00ccd3 !important;
}

.header.show {
    top: 0;
    transition: 0.5s ease;
}

section .header .up {
    display: flex;
    height: 100%;
}

section .header .left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100%;
}

section .header .left .logo {
    display: flex;
    justify-content: center;
}

section .header .left img {
    width: 30%;
}

section .header .centers,
section .header .right {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: space-between;
    color: var(--primary-bg);
    margin-left: 50px;
    height: 100%;
}

section .header .right {
    margin-left: 10px;
}

section .header .centers a {
    text-decoration: none;
    color: var(--primary-bg);
    font-weight: bold;
}

section .header .centers a:hover {
    color: var(--aqua-color);
}

section .header .centers .opsi,
section .header .right .opsi {
    display: flex;
}

section .header .centers .opsi .list {
    display: flex;
    justify-content: center;
    margin: 0 15px 0 15px;
    width: 70px;
}

section .header .right .opsi .lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 15px 0 15px;
    font-weight: bold;
}

section .header #active {
    color: var(--aqua-color);
}

.mobile-menu {
    display: none;
}

#send {
    border-radius: 10px;
    font-weight: bold;
    background-color: var(--main-color);
    transition: 0.3s ease;
    color: #fff;
}

#send:hover {
    background-color: var(--aqua-color);
    transition: 0.3s ease;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    section .header {
        height: 60px;
        padding: 0 10px;
    }

    /* Atur posisi container header */
    section .header .up {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    /* Logo lebih besar di tengah */
    section .header .left {
        width: auto;
        margin-left: 10px;
    }

    section .header .left img {
        width: 20px;
    }

    /* Sembunyikan menu utama */
    section .header .centers {
        display: none;
    }

    /* Tampilkan hamburger */
    section .header .right {
        margin-left: 0;
    }

    section .header .right .opsi {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Buat hamburger */
    .hamburger {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        height: 3px;
        background: var(--primary-bg);
        border-radius: 5px;
    }

    /* SIDEBAR MENU */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -500px;
        width: 250px;
        height: 100vh;
        background: var(--main-color);
        padding: 80px 20px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        transition: 0.35s ease;
        display: flex;
        flex-direction: column;
        z-index: 999;
    }

    .mobile-menu.show {
        left: 0;
    }

    .mobile-menu a {
        color: var(--primary-bg);
        text-decoration: none;
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: bold;
    }

}

section .gradient {
    height: 30px;
    background: linear-gradient(#120d37b6, #120d37);
}

section .info {
    background-color: var(--main-color);
}

section .info .leaf {
    width: 100%;
    min-height: 100vh;
    background-image: url(/assets/mainbg.png);
    background-position-x: -30px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* SECTION ACARA */
section .acara {
    display: flex;
    align-items: center;
    min-height: 500px;
    justify-content: center;
    padding: 70px 0 30px 0;
    width: 100%;
}

section .acara .acara-item {
    width: 100%;
    box-sizing: border-box;
    padding-left: 25px;
    left: 10px;
}

section .acara .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    max-width: 1000px;
    padding: 0 25px;
    background-size: 35%;
    background-position: center;
    background-image: url(/assets/butterfx.png);
}

/* Header image */
section .acara .content .head {
    display: flex;
    margin-bottom: 20px;
}

section .acara .content .head img {
    width: 320px;
    max-width: 100%;
}

/* Deskripsi text */
section .acara .deskripsi {
    color: #fff;
    margin-top: 10px;

    font-size: 1.2em;
    width: 100%;
    /* Full width, biar teks tidak terjepit */
    max-width: 700px;

    line-height: 1.8em;
    /* ⬅️ Lebih rapi dan mudah dibaca */
    text-align: center;
    padding: 0 10px;
    /* ⬅️ Tambahan padding agar lebih lega */
}

/* ===================== */
/*   RESPONSIVE DESIGN   */
/* ===================== */

/* Tablet */
@media (max-width: 992px) {
    section .acara .content {
        width: 85%;
        background-size: 45%;
        padding: 0 20px;
    }

    section .acara .deskripsi {
        font-size: 1.1em;
        line-height: 1.7em;
    }
}

/* HP Lebar / Tablet Mini */
@media (max-width: 768px) {
    section .acara .content {
        background-size: 55%;
        width: 90%;
        padding: 0 18px;
    }

    section .acara .deskripsi {
        font-size: 1em;
    }
}

/* HP Kecil */
@media (max-width: 480px) {
    section .acara {
        min-height: auto;
        padding: 40px 0;
    }

    section .acara .content {
        width: 100%;
        background-size: 70%;
        padding: 0 16px;
    }

    section .acara .content .head img {
        width: 250px;
    }

    section .acara .deskripsi {
        font-size: 0.95em;
        line-height: 1.6em;
        padding: 0 12px;
    }
}

/* SECTION CIMOL */
section .cimol {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 70px 0 30px 0;
    width: 100%;
    background-image: url(/assets/butterfx.png);
    background-size: 40%;
    background-position: center;
}

section .cimol .content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 1200px;

    color: #fff;
    gap: 40px;
    /* Jarak antar left-right */
    padding: 0 25px;
    /* Biar nggak mepet */
}

/* LEFT IMAGE */
section .cimol .left img {
    width: 500px;
    max-width: 100%;
}

/* RIGHT TEXT */
section .cimol .right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section .cimol .right .title h1 {
    font-size: 2em;
}

section .cimol .right .title h2 {
    font-size: 1.3em;
    margin-top: 5px;
}

section .cimol .right .deskripsi {
    font-size: 1.1em;
    line-height: 1.7em;
    text-align: justify;
}

/* SPONSOR NUFEST */
.sponsor-wrapper {
    width: 100%;
    overflow: hidden;
    background: #0000001f;
    padding: 20px 0;
}

.sponsor-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.sponsor-track img {
    height: 60px;
    object-fit: contain;
    padding: 0 30px 0 30px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.sponsor-track img:hover {
    filter: grayscale(0);
    transform: scale(1.08);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ====================== */
/* RESPONSIVE BREAKPOINTS */
/* ====================== */

/* Tablet */
@media (max-width: 992px) {

    section .info .leaf {
        background-image: none;
    }

    section .cimol .content {
        width: 90%;
        gap: 30px;
    }

    section .cimol {
        background-size: 55%;
    }

    section .cimol .right {
        width: 50%;
    }
}

/* Tablet Mini & HP Lebar */
@media (max-width: 768px) {

    section .info .leaf {
        background-image: none;
    }

    section .cimol .content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    section .cimol .right {
        width: 100%;
    }

    section .cimol .right .deskripsi {
        text-align: center;
        font-size: 1em;
    }

    section .cimol {
        background-size: 65%;
    }
}

/* HP Kecil */
@media (max-width: 480px) {

    section .info .leaf {
        background-image: none;
    }

    section .cimol {
        padding: 40px 0;
        background-size: 75%;
    }

    section .cimol .content {
        width: 95%;
        padding: 0 16px;
        gap: 20px;
    }

    section .cimol .left img {
        width: 280px;
    }

    section .cimol .right .title h1 {
        font-size: 1.6em;
    }

    section .cimol .right .title h2 {
        font-size: 1.1em;
    }

    section .cimol .right .deskripsi {
        font-size: 0.95em;
        line-height: 1.6em;
    }
}

.deskripsi p,
.deskripsi b {
    margin: 10px;
}

/* SECTION TAMU */
section .tamu {
    display: flex;
    align-items: center;
    min-height: 500px;
    justify-content: center;
    padding: 70px 0 30px 0;
    width: 100%;
}

section .tamu .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    max-width: 1000px;
    padding: 0 25px;
    /* Padding agar tidak mepet */
    margin-top: 20px;
}

section .tamu .content .head img {
    width: 300px;
    max-width: 100%;
}

/* TITLE */
section .tamu .content .description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

section .tamu .content .description .title {
    font-size: 1.2em;
    color: var(--nff-light-color);
    margin-bottom: 20px;
}

section .tamu .content .description .title .nama span {
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
}

/* VIDEO WRAPPER: bikin YouTube responsive */
section .tamu .content .description .deskripsi {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;

    /* Rahasia YouTube responsive */
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}


/* ====================== */
/*     RESPONSIVE CSS     */
/* ====================== */

/* Tablet */
@media (max-width: 992px) {
    section .tamu .content {
        width: 85%;
        padding: 0 20px;
    }

    section .tamu .content .description .title {
        font-size: 1.1em;
    }

    section .tamu .content .description .deskripsi iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

/* HP Lebar / Tablet Mini */
@media (max-width: 768px) {
    section .tamu .content {
        width: 90%;
        padding: 0 18px;
    }

    section .tamu .content .description .title .nama span {
        font-size: 1.4em;
    }

    section .tamu .content .description .deskripsi iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

/* HP Kecil */
@media (max-width: 480px) {
    section .tamu {
        padding: 40px 0;
    }

    section .tamu .content {
        width: 95%;
        padding: 0 16px;
    }

    section .tamu .content .head img {
        width: 230px;
    }

    section .tamu .content .description .title {
        font-size: 1em;
    }

    section .tamu .content .description .title .nama span {
        font-size: 1.3em;
    }

    section .tamu .content .description .deskripsi iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}


section .timestamp {
    background-color: var(--main-color);
}

/*FOOTER*/
.nufest-content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

#nufest-footer {
    background: var(--main-color-dark);
    color: white;
    padding: 40px 20px 20px;
    margin-top: auto;
}

#nufest-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nufest-footer-section {
    margin-bottom: 20px;
}

.nufest-footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.nufest-footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--aqua-color);
}

.nufest-footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.nufest-footer-links {
    list-style: none;
    padding: 0;
}

.nufest-footer-links li {
    margin-bottom: 10px;
}

.nufest-footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nufest-footer-links a:hover {
    color: var(--aqua-color);
    transform: translateX(5px);
}

.nufest-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.nufest-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.nufest-social-links a:hover {
    background-color: var(--aqua-color);
    transform: translateY(-5px);
}

.nufest-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ddd;
}

.nufest-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.nufest-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fdbb2d;
}

@media (max-width: 768px) {
    #nufest-footer-container {
        grid-template-columns: 1fr;
    }

    .nufest-footer-section h3 {
        font-size: 1.2rem;
    }
}

/* Reset dan gaya dasar */
.konser-lokasi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Container utama */
.konser-lokasi-container {
    padding: 40px 20px;
}

/* Header */
.konser-lokasi-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.konser-lokasi-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.konser-lokasi-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Layout utama kiri–kanan */
.konser-lokasi-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* ========================= */
/* BAGIAN KIRI (DETAIL) */
/* ========================= */

.konser-lokasi-details {
    flex: 1;
    min-width: 300px;
    max-width: 580px;

    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border-radius: 15px;

    padding: 25px;
    color: #fff;
}

.konser-lokasi-venue-name {
    font-size: 1.7rem;
    margin-bottom: 18px;
    border-bottom: 2px solid #00ccd3;
    padding-bottom: 10px;
}

.konser-lokasi-info-section {
    margin-bottom: 25px;
}

.konser-lokasi-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.konser-lokasi-info-text {
    opacity: 0.9;
    line-height: 1.6;
}

/* Fasilitas */
.konser-lokasi-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.konser-lokasi-amenity {
    background-color: #00ccd3;
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
}



/* ========================= */
/* BAGIAN KANAN (MAP + GALERI) */
/* ========================= */

.konser-lokasi-visuals {
    flex: 1;
    min-width: 300px;
    max-width: 580px;
}

/* MAP */
.konser-lokasi-map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.konser-lokasi-map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}


/* GALERI */
.konser-lokasi-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.konser-lokasi-gallery-item {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.konser-lokasi-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.konser-lokasi-gallery-item:hover img {
    transform: scale(1.05);
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .konser-lokasi-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .konser-lokasi-content {
        flex-direction: column;
        align-items: center;
    }

    .konser-lokasi-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
}

@media (max-width: 480px) {
    .konser-lokasi-title {
        font-size: 1.8rem;
    }

    .konser-lokasi-details {
        padding: 20px;
    }

    .konser-lokasi-map-container iframe {
        height: 240px;
    }

    .konser-lokasi-gallery-item {
        height: 130px;
    }
}