* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
}

/* =========================
BACKGROUND FIXED
========================= */
.bg-fixed {
    position: fixed;
    inset: 0;
    background: url('../img/food-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.page-wrapper {
    background:
        linear-gradient(
            rgba(255,248,235,0.96),
            rgba(255,248,235,0.96)
        ),
        url('../img/bg-pattern.png') center/cover no-repeat;
    padding: 40px 20px;
}

/* =========================
HERO
========================= */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero h2 {
    font-size: 2rem;
    color: #b8962e;
}

.subtitle {
    margin-top: 10px;
}

/* =========================
POSTER
========================= */
.poster-section img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
}

/* =========================
VIDEO
========================= */
.video-section iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
}

/* =========================
INFO
========================= */
.info-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    padding: 8px 0;
}

.time {
    margin-top: 15px;
    font-weight: bold;
}

/* =========================
KALENDAR - CALENDAR STYLE
========================= */

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 hari seminggu */
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.day {
    min-height: 110px;              /* paksa kotak sama tinggi */
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    background: #eee;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: all 0.25s ease;
    user-select: none;
}

/* Remove font-size override — biar class control sendiri */
.day span {
    font-weight: 700;
}

/* DATE (23 Feb) */
.day .day-date {
    display: block;
    font-size: 17px;
    font-weight: 700;
}

/* HARI (Isnin) */
.day .day-name {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
    opacity: 0.75;
    letter-spacing: 0.3px;
}

/* Available */
.day.available {
    background: #f3d98b;
    color: #000;
}

.day.available:hover {
    background: #e1be55;
    transform: translateY(-2px);
}

/* Full */
.day.full {
    background: #b5b5b5;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Selected */
.day.selected {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    transform: scale(1.03);
}

/* =========================
Maklumat Earlybird
========================= */
.early-bird {
    background: linear-gradient(135deg, #d4af37, #f5e08c);
    color: #000;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(212,175,55,0.6);
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    border-bottom: 1px dashed #ddd;
}

.extra-info {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #555;
}

.extra-info li {
    margin: 6px 0;
}


/* =========================
Booking Section
========================= */
.booking-section {
    max-width: 950px;
    margin: 60px auto;
    padding: 35px 30px;
    background: linear-gradient(
        135deg,
        #fff6da,
        #ffffff
    );
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    border: 2px solid #d4af37;
}

.booking-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2f2f2f;
}

.booking-instruction {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
}

.step-badge {
    width: fit-content;
    margin: 0 auto 12px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
    background: #d4af37;
    border-radius: 20px;
}

.cta-btn {
    display: inline-block;
    min-width: 280px;
    padding: 18px 36px;

    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #000;
    background: linear-gradient(135deg, #f5d76e, #d4af37);

    border: none;
    border-radius: 40px;

    cursor: pointer;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
    transition: all 0.25s ease;
}

.cta-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.65);
}

.cta-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
}

.cta-btn:disabled {
    background: #ccc;
    color: #777;
    cursor: not-allowed;
    box-shadow: none;
}

.cta-wrapper {
    text-align: center;
    margin: 50px 0 20px;
}

.day.manual-disabled {
    position: relative;
    background: #ffe5e5;          /* merah lembut */
    color: #a10000;
    border: 2px solid #ff4d4d;
    cursor: not-allowed;
    opacity: 1;                   /* jangan blur */
}

/* Garisan silang */
.day.manual-disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #ff0000;
    transform: rotate(-20deg);
}

/* Label kecil */
.day.manual-disabled::before {
    content: "TUTUP";
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-size: 10px;
    font-weight: bold;
    color: #ff0000;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
    .calendar {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .calendar {
        grid-template-columns: repeat(2, 1fr);
    }
}

.early-bird {
    background: linear-gradient(135deg, #d4af37, #f6e27a);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    box-shadow: 0 20px 40px rgba(212,175,55,0.4);
    margin: 20px 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(255, 82, 47, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 82, 47, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(255, 82, 47, 0.6);
    }
}

/* iOS Support */
@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(1); }
    50% { -webkit-transform: scale(1.02); }
    100% { -webkit-transform: scale(1); }
}



