/*  RESET & BASE  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9; 
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.hero-container,
.venue-section,
.features-section,
.cta-section {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
}

/*  HERO SECTION (BANNER HIJAU)  */
.hero-section {
    background-color: #1a8c43;
    padding: 120px 0; 
    width: 100%;
    position: relative; 
    overflow: hidden; 
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 650px; 
    color: #ffffff;
    position: relative; 
    z-index: 2; 
}

.hero-title {
    font-size: 3.5rem; 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem; 
    line-height: 1.5;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Search Bar */
.search-bar {
    display: flex;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 8px 8px 8px 30px;
    width: 100%;
    max-width: 500px; 
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.search-input::placeholder {
    color: #999999;
}

.search-btn {
    background-color: transparent;
    border: none;
    padding: 12px 20px;
    color: #000000;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50%;
}

/*  HERO ILLUSTRATION (GAMBAR & GRADASI)  */
.hero-illustration {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%; 
    z-index: 1; 
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
    mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

/*  RESPONSIVE HERO  */
@media (max-width: 768px) {
    .hero-illustration {
        width: 100%; 
    }
    .hero-illustration img {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
    }
    .hero-content {
        padding: 20px;
    }
}

/*  SECTION VENUE GRID  */
.venue-section {
    padding-top: 60px;
    padding-bottom: 20px;
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.2rem; 
    font-weight: 800;
    color: #000000;
}

.see-all {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.see-all:hover {
    opacity: 0.7;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
}

/* Venue Card */
.venue-card {
    background-color: #ffffff; 
    border-radius: 12px;
    padding: 20px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.venue-image {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 8px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.venue-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.venue-name {
    font-size: 1.25rem; 
    font-weight: 700;
    color: #000000;
    max-width: 65%;
    line-height: 1.3;
}

.venue-price-container {
    text-align: right;
}

.venue-price {
    font-size: 1.2rem; 
    font-weight: 700;
    color: #2b8449; 
}

.venue-price-unit {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 2px;
    font-weight: 500;
}

.venue-specs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    margin-top: auto; 
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem; 
    color: #666666;
    font-weight: 500;
}

.spec-item i {
    color: #000000;
    font-size: 1.1rem;
}

.btn-view {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #2b8449;
    border-radius: 8px;
    background-color: transparent;
    color: #2b8449;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view:hover {
    background-color: #2b8449;
    color: #ffffff;
}

/*  SECTION FITUR  */
.features-section {
    margin-top: 20px; 
    margin-bottom: 30px; 
}

.features-container {
    background-color: #ffffff; 
    border: 1px solid #eaeaea;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 50px 40px;
    gap: 40px;
    text-align: center;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 3rem; 
    color: #38a159; 
    margin-bottom: 5px;
}

.feature-title {
    font-size: 1.3rem; 
    font-weight: 700;
    color: #000000;
}

.feature-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    max-width: 300px;
}

/*  SECTION CTA & STATS  */
.cta-section {
    margin-bottom: 80px;
}

.cta-container {
    background-color: #f2fcf5; 
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
    gap: 50px;
}

.cta-content {
    flex: 1;
    max-width: 550px; 
}

.cta-title {
    font-size: 2.6rem; 
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.05rem; 
    color: #666666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-reservasi {
    background-color: #38a159;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-reservasi:hover {
    background-color: #2b8449;
}

.cta-stats {
    display: flex;
    gap: 25px;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 25px;
    width: 220px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stat-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    background-color: #eaf5ee; 
    color: #38a159;
    width: 50px; 
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.stat-text h4 {
    font-size: 1.6rem; 
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    margin: 0;
}

.stat-bottom-text {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.4;
    margin-top: 5px;
}

/*  RESPONSIVE  */
@media (max-width: 1400px) {
    .venue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container,
    .venue-section,
    .features-section,
    .cta-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-container {
        flex-direction: column;
        gap: 40px;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    .cta-content {
        max-width: 100%;
    }
    .cta-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-container,
    .venue-section,
    .features-section,
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .venue-grid {
        grid-template-columns: 1fr;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/*  PAGE VENUE (HALAMAN PILIH VENUE)  */
.venue-page-section {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 80px;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
}

.venue-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 30px; 
    background-color: #ececec; 
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Efek hover pada tombol kategori */
.filter-btn:hover {
    background-color: #e5e5e5;
}

/* Tombol kategori yang sedang dipilih (Active) */
.filter-btn.active {
    background-color: #3b82f6; 
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/*  PAGE VENUE DETAILS  */
.venue-detail-section,
.booking-section {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
}

/* Layout Split Atas */
.detail-split-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start; 
    position: relative; 
}

.detail-left {
    flex: 6; 
}

.detail-right {
    flex: 4;
    margin-top: 0; 
}

/* Tipografi Header */
.detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 5px;
    line-height: 1.1; 
}

.detail-price-box {
    margin-bottom: 25px;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b8449; 
}

.detail-unit {
    font-size: 1rem;
    color: #888888;
    font-weight: 500;
}

/* Galeri Gambar */
.detail-gallery .main-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumb-image {
    width: 135px; 
    height: 85px;  
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.thumb-image:hover {
    opacity: 0.8;
}

.desc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    
    /* Deskripsi */
    margin-top: 40px; 
    
    margin-bottom: 40px; 
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; 
    margin-bottom: 0; 
}

.info-card {
    background-color: #ffffff;
    padding: 20px 25px;
    box-shadow: none; 
    border-radius: 0; 
    border: 1px solid #eaeaea; 
    
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Kotak 1:(Kiri Atas) */
.info-cards-grid .info-card:nth-child(1) {
    border-radius: 10px 0 0 0; 
}

/* Kotak 2:(Tengah Atas) */
.info-cards-grid .info-card:nth-child(2) {
    border-left: none; 
}

/* Kotak 3:(Kanan Atas) */
.info-cards-grid .info-card:nth-child(3) {
    border-left: none; 
    border-radius: 0 10px 0 0; 
}

/* Kotak Fasilitas (Bawah) */
.info-card.full-width {
    border-top: none; 
    border-radius: 0 0 10px 10px; 
}

.info-label {
    font-size: 0.85rem;
    color: #666666;
}

.info-value, .info-value-text {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

/* Layout Split Booking (Kalender & Sewa) */
.booking-split-layout {
    display: flex;
    gap: 60px;
    margin-top: 20px;
    align-items: flex-start;
}

/* Kalender UI */
.calendar-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    border: 1px solid #eaeaea;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.calendar-nav i {
    cursor: pointer;
    margin-left: 15px;
    color: #888888;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
}

.calendar-grid.days div {
    font-weight: 600;
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 15px;
}

.calendar-grid.dates div {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.calendar-grid.dates div:hover:not(.disabled) {
    background-color: #f2f2f2;
}

.calendar-grid.dates div.disabled {
    color: #cccccc;
    cursor: not-allowed;
    background-color: #fafafa;
}

.calendar-grid.dates div.selected {
    background-color: #3b82f6; 
    color: #ffffff;
    border-color: #3b82f6;
}

/* Booking Info Box */
.booking-info-box {
    flex: 1;
    background-color: #fafafa;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.time-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-price i {
    font-size: 1.5rem;
    color: #000000;
}

.time-price h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.time-price p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.booking-instruction {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
    margin-top: 0px;
}

.btn-sewa {
    background-color: #3b82f6; 
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    width: max-content;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 10px;
}

.btn-sewa:hover {
    background-color: #2563eb;
}

/* PAGE CHECKOUT  */
.checkout-section {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 30px;
    padding-bottom: 80px;
    background-color: #f9f9f9; 
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 25px;
}
.breadcrumb a {
    color: #888888;
    text-decoration: none;
}
.breadcrumb span {
    color: #000000;
}

/* Login Alert */
.login-alert {
    background-color: #f2fcf5;
    border: 1px solid #e2f5e9;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.alert-icon {
    background-color: #d1f0db;
    color: #38a159;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-link {
    color: #ef4444; /* Warna merah */
    text-decoration: underline;
    font-weight: 500;
}

/* Layout Split Checkout */
.checkout-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.checkout-left {
    flex: 6;
}
.checkout-right {
    flex: 5;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Base Card Style */
.checkout-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.02);
}

/* Form Styles */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: #38a159;
}
.card-header h3 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}
.checkout-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}
.req { color: #ef4444; }
.opt { color: #aaaaaa; font-weight: 400; font-size: 0.85rem; }

.form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    background-color: #ffffff;
}
.form-control:focus {
    border-color: #38a159;
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.additional-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 30px 0 15px;
}

/* Order Summary Styles */
.summary-title, .payment-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
}
.summary-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.summary-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}
.product-info {
    display: flex;
    gap: 15px;
    align-items: center;
}
.product-info img {
    width: 60px;          
    height: 60px;         
    object-fit: cover;    
    border-radius: 4px;   
    flex-shrink: 0;       
    border: 1px solid #eaeaea; 
}
.product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.product-info p {
    font-size: 0.85rem;
    color: #888888;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}
.total-row {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0;
}
.text-red { color: #ef4444; }
.text-green { color: #38a159; font-size: 1.3rem; }

/* Payment Methods Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.payment-option input[type="radio"] {
    display: none; 
}
.option-content {
    background-color: #f4f4f4;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.option-header h4 {
    font-size: 1rem;
    font-weight: 700;
}
.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-radio i {
    font-size: 0.7rem;
    color: #ffffff;
    display: none;
}
.option-desc {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
    padding-left: 32px;
}

.payment-option input[type="radio"]:checked + .option-content {
    background-color: #e2e3e5; 
}
.payment-option input[type="radio"]:checked + .option-content .custom-radio {
    background-color: #38a159;
    border-color: #38a159;
}
.payment-option input[type="radio"]:checked + .option-content .custom-radio i {
    display: block;
}

/* Action Buttons */
.checkout-actions {
    display: flex;
    gap: 15px;
}
.btn-cart, .btn-order {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-cart {
    background-color: #f5a623; 
}
.btn-order {
    background-color: #38a159; 
}
.btn-cart:hover, .btn-order:hover {
    opacity: 0.9;
}

/*  LIVE SCHEDULE & MODAL  */

.calendar-grid.dates div.booked {
    background-color: #fef3c7; 
    color: #d97706; 
    border-color: #fde68a;
    font-weight: 700;
}

.calendar-grid.dates div.booked:hover {
    background-color: #fef3c7; 
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

/* Kotak Popup Putih */
.modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #888888;
    line-height: 1;
}

.close-modal:hover {
    color: #ef4444; /* Merah saat dihover */
}

/* Item Jadwal dalam Modal */
.schedule-item {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #f5a623; 
}

.schedule-date {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
    font-size: 0.95rem;
}

.schedule-details p {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 6px;
}
.schedule-details p:last-child {
    margin-bottom: 0;
}

.calendar-legend {
    margin: 0 0 15px 0;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #555555;
    font-weight: 500;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

/* Warna Kotak Keterangan */
.color-yellow {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
}
.color-red {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
}

.calendar-grid.dates div.full {
    background-color: #fee2e2; 
    color: #ef4444; 
    border: 1px solid #fca5a5;
    font-weight: 700;
    cursor: not-allowed;
}

.calendar-grid.dates div.full:hover {
    background-color: #fee2e2; 
}

/*  IMAGE OVERLAY (LIGHTBOX) */
.main-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.main-image:hover {
    opacity: 0.85; 
}

.image-overlay {
    display: none; 
    position: fixed;
    z-index: 100000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(2px); 
    
    justify-content: center;
    align-items: center;
}

.image-overlay.active {
    display: flex; 
}

.modal-image-content {
    max-width: 90%;
    max-height: 90vh; 
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.5);
    object-fit: contain; 
    animation: zoomIn 0.3s ease; 
}

@keyframes zoomIn {
    from {
        transform: scale(0.8); 
        opacity: 0;
    }
    to {
        transform: scale(1); 
        opacity: 1;
    }
}

.close-image-modal {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 100001; 
    line-height: 1;
}

.close-image-modal:hover {
    color: #38a159; 
}