:root {
    --primary: #e8591c;
    --secondary: #ffc107;
    --dark-red: #7f0000;
    --overlay-dark: rgba(0, 0, 0, 0.55);
    --text-shadow: rgba(0, 0, 0, 0.6);
    --accent-orange: #f86f2d;
}

/* ===============================
   Hero Section
================================= */
.hero-telomoyo {
    min-height: 95vh;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: white;
    z-index: 1;
}

/* Overlay dengan gradient */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), var(--overlay-dark));
    z-index: 0;
}

.hero-telomoyo .container {
    z-index: 1;
    position: relative;
}

/* ===============================
   Teks Hero
================================= */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px var(--text-shadow);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 4px var(--text-shadow);
}

/* ===============================
   Tombol Hero (jika ada)
================================= */
.hero-btn {
    background-color: var(--secondary);
    color: black;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #e0a800;
    color: white;
}

/* ===============================
   Content Section
================================= */
.card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 230px;
    object-fit: cover;
    border-bottom: 4px solid #dc3545;
}

.card-title {
    font-size: 1.25rem;
    color: #333;
}

.card-text i {
    font-size: 1rem;
    vertical-align: middle;
}

.btn-outline-danger, .btn-danger {
    transition: all 0.3s ease-in-out;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #bb2d3b;
}

.btn-outline-success:hover {
    background-color: #198754;
    color: white;
    border-color: #198754;
}

/* ===============================
   Promo Booking Section
================================= */
.promo-booking-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.promo-booking-section {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    color: #fff;
    padding: 5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.promo-text {
    font-size: 1.05rem;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Glassmorphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Include Box */
.include-box {
    border-left: 5px solid var(--secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.include-box h6 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Image Styling */
.promo-image {
    max-height: 380px;
    object-fit: cover;
    border-radius: 1.25rem;
    border: 4px solid white;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
