/* ===== BACKGROUND IMAGE ===== */
body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* ===== NAVBAR ===== */
.custom-navbar{
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    padding: 20px 0;   /* tinggi navbar */
    transition: all 0.3s ease;
}

/* navbar shadow bila scroll */
.custom-navbar.scrolled{
    background: rgba(0,0,0,0.85);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* brand */
.navbar-brand{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* menu link */
.nav-link{
    font-size: 18px;
    margin-right: 18px;
    position: relative;
    transition: 0.3s;
}

/* hover glow effect */
.nav-link:hover{
    color: #ffc107 !important;
    transform: translateY(-2px);
}

/* underline animation */
.nav-link::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    bottom:-5px;
    left:0;
    background:#ffc107;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* ADMIN BUTTON */
.admin-btn{
    background:#ffc107;
    border-radius:30px;
    padding:8px 18px;
    font-weight:600;
    transition:0.3s;
}

.admin-btn:hover{
    background:white;
    color:black !important;
    transform:scale(1.05);
}

/* spacing supaya content tak tertutup navbar */
.page-content{
    padding-top:110px;
}

/* glass card */
.glass-box{
    background: rgba(255,255,255,0.9);
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    margin-bottom:30px;
}


/* BACKGROUND IMAGE */
body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 20px;
    border-radius: 16px;
    overflow: hidden;
}

/* BACKGROUND IMAGE HERO */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/2.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.5; /* adjust untuk nampak teks */
    z-index: 0;
    border-radius: 16px;
}

/* CONTENT ABOVE IMAGE */
.hero > * {
    position: relative;
    z-index: 1;
}

/* OPTIONAL: Button Styling */
.hero .btn {
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.hero .btn:hover {
    transform: translateY(-3px);
    background-color: #ffc107;
    color: black !important;
}



/* GLASS BOX WITH IMAGE */
.glass-box {
    position: relative;
    background: rgba(255,255,255,0.8);  /* base glass */
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    min-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* BACKGROUND IMAGE INSIDE BOX */
.glass-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../images/1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.25; /* adjust supaya tulisan jelas */
    z-index: 0;
    border-radius: 16px;
}

/* CONTENT ABOVE IMAGE */
.glass-box > * {
    position: relative;
    z-index: 1;
}

/* SCROLLABLE CONTENT */
.booking-content{
    overflow-y:auto;
    margin-top:10px;
}

/* NAVBAR */
.custom-navbar{
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled{
    background: rgba(0,0,0,0.85);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.navbar-brand{ font-size:28px; font-weight:700; letter-spacing:1px; }
.nav-link{ font-size:18px; margin-right:18px; transition:0.3s; }
.nav-link:hover{ color:#ffc107 !important; transform:translateY(-2px);}
.nav-link::after{
    content:""; position:absolute; width:0; height:2px; bottom:-5px; left:0;
    background:#ffc107; transition:0.3s;
}
.nav-link:hover::after{ width:100%; }
.admin-btn{
    background:#ffc107; border-radius:30px; padding:8px 18px; font-weight:600; transition:0.3s;
}
.admin-btn:hover{ background:white; color:black !important; transform:scale(1.05); }

/* SPACING UNTUK PAGE CONTENT */
.page-content{ padding-top:120px; }

/* MOBILE RESPONSIVE */
@media(max-width:768px){
    .booking-box{ min-height:250px; }
}

.hero h1 {
    color: #ffc107 !important; /* override semua rule lain */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    color: black !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}


/* ========================================================================================  ABOUT ============================================================================================================= */

/* TEAM CARD */
.team-card{
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
    height: 100%;
}

.team-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.team-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

@media(max-width:768px){
    .team-img{
        height: 180px;
    }
}

/* TEAM SECTION BACKGROUND */
.team-section-header{
    background: rgba(255,255,255,0.75);
    padding: 30px 20px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

/* TEAM TITLE */
.team-title{
    font-weight: 700;
    font-size: 32px;
    color: #222;
}

/* SUBTITLE */
.team-subtitle{
    color: #555;
    margin-top: 8px;
    font-size: 16px;
}

/* DECORATIVE LINE */
.title-divider{
    width: 70px;
    height: 4px;
    background: #ffc107;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* spacing improvement */
@media(min-width:992px){
    .team-section-header{
        margin-bottom: 35px;
    }
}

/* ======================================================================================== GALLERY ============================================================================================================= */
/* ===== USER GALLERY SPECIFIC ===== */
.gallery-box{
    max-width:1200px;
    margin:50px auto;
    padding:25px;
    background: rgba(255,255,255,0.9); /* kotak besar */
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.gallery-item{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.gallery-item img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}
.gallery-item:hover{
    transform: scale(1.03);
}
h1{
    text-align:center;
    margin-bottom:30px;
    color:#222;
}
@media(max-width:768px){
    .gallery-item img{
        height:180px;
    }
    .gallery-box{
        padding:15px;
    }
}

/* ===== GALLERY PAGE ===== */
.page-title{
    text-align:center;
    margin:30px 0 20px 0;
    color:#222;
}

.gallery-box{
    max-width:1200px;
    margin:0 auto 50px auto;
    padding:25px;
    background: rgba(255,255,255,0.9);
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.gallery-item:hover{
    transform: scale(1.03);
}

@media(max-width:768px){
    .gallery-item img{
        height:180px;
    }
    .gallery-box{
        padding:15px;
    }
}

/* ======================================================================================== GALLERY ============================================================================================================= */

/* ===== YOUR BOOKING PAGE ===== */

.booking-wrapper{
    max-width: 900px;
}

.booking-box{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.booking-card{
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    border-left: 5px solid #0d6efd;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.booking-title{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.booking-info{
    font-size: 14px;
    color: #444;
}

.search-btn{
    padding: 8px 28px;
}

/* mobile friendly */
@media (max-width: 768px){
    .booking-card{
        padding: 15px;
    }
}