/* ======== GLOBAL ======== */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
}

/* ======== NAVBAR ======== */
.navbar {
    background: linear-gradient(90deg, #0d47a1, #1565c0);
}

/* ======== HERO ======== */
.hero-slide {
    height: 100vh;
    background: linear-gradient(rgba(13,71,161,0.8), rgba(13,71,161,0.8)),
                url('https://images.unsplash.com/photo-1508032722335-c8d3b5f8a10d') center/cover no-repeat;
}

.hero-slide-2 {
    height: 100vh;
    background: linear-gradient(rgba(25,118,210,0.8), rgba(25,118,210,0.8)),
                url('https://images.unsplash.com/photo-1506126613408-eca07ce68773') center/cover no-repeat;
}

.hero-content {
    padding-top: 30vh;
    animation: fadeUp 2s ease-in-out;
}

@keyframes fadeUp {
    from {opacity: 0; transform: translateY(50px);}
    to {opacity: 1; transform: translateY(0);}
}

/* ======== MENU CARD ======== */
.menu-card {
    border: none;
    border-radius: 20px;
    transition: 0.4s;
    transform-style: preserve-3d;
}

.menu-card:hover {
    transform: rotateY(8deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.icon-box {
    font-size: 40px;
    color: #ffc107;
    transition: 0.4s;
}

.menu-card:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
}

/* ======== BUTTON GOLD ======== */
.btn-gold {
    background: linear-gradient(45deg, #fbc02d, #ffca28);
    color: #000;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #ffca28, #fbc02d);
    color: #000;
}

/* ======== FOOTER ======== */
footer {
    background: linear-gradient(90deg, #0d47a1, #1565c0);
}

/* ======== SLIDER KECIL ======== */
/* ======== SLIDER KECIL ======== */
.slider-small {
    height: 420px;
    position: relative;
}

.slider-img {
    height: 420px;
    object-fit: cover;
    filter: brightness(65%);
}

.carousel-caption {
    bottom: 20%;
    animation: fadeUp 1.5s ease-in-out;
}

.carousel-caption h3 {
    font-size: 26px;
}

.carousel-caption p {
    font-size: 15px;
}
