/* ═════════ TODAY'S SPECIAL PAGE STYLES ═════════ */

/* Page Hero */
.special-hero {
    background: url('../images/innerbanner/today-spl.jpg');
    background-size: cover;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    top:70px;
}

.special-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(63, 7, 20, 0.3);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .eyebrow {
    color: var(--orange);
    display: block;
    margin-bottom: 16px;
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
}

.page-hero .sec-h {
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
}

/* Today's Highlight Section */
.today-highlight-section {
    padding: 60px 0;
    background: var(--cream);
}

.highlight-wrapper {
    background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
}

.highlight-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.highlight-wrapper:hover .highlight-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(63,7,20,0.3), transparent);
    z-index: 1;
}

.day-indicator {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.highlight-content {
    padding: 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-header {
    margin-bottom: 30px;
}

.dish-category {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--orange);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-content h2 {
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dish-price {
    display: inline-block;
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--orange);
    margin-top: 10px;
}

.dish-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.dish-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.meta-item i {
    color: var(--orange);
    font-size: 1.2rem;
    width: 24px;
}

.highlight-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Weekly Specials Section */
.weekly-specials-section {
    padding: 30px 0;
    background: var(--cream-2);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .eyebrow {
    color: var(--maroon);
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 16px;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.special-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.5s var(--ease);
    position: relative;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.special-card.is-today {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(60,125,46,0.15), var(--shadow-lg);
}

.special-card.is-today::before {
    content: 'TODAY';
    position: absolute;
    top: 16px;
    right: -35px;
    background: var(--green);
    color: var(--white);
    padding: 6px 40px;
    transform: rotate(45deg);
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}

.day-badge {
    background: var(--maroon);
    color: var(--white);
    padding: 16px;
    font-family: var(--ff-head);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.card-content {
    padding: 28px;
}

.dish-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.dish-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--cream-2);
}

.dish-item:last-child {
    border-bottom: none;
}

.dish-info h4 {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    color: var(--maroon);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight:300;
}

.dish-info p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.dish-price {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    color: var(--orange);
    flex-shrink: 0;
}

.card-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--cream-2);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--maroon);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.btn-enquire:hover {
    background: var(--orange);
    color: var(--maroon-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.4);
}

/* Special Note */
.special-note {
    background: var(--white);
    border-radius: var(--r);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.special-note p {
    margin: 8px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.special-note i {
    color: var(--orange);
    margin-right: 8px;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1199px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-image {
        height: 400px;
    }
    
    .highlight-content {
        padding: 40px;
    }
    
    .weekly-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .special-hero {
       padding: 34px 0 14px;
        top: 65px;
    }
    
    .today-highlight-section,
    .weekly-specials-section,
    .special-cta-section {
        padding: 60px 0;
    }
    
    .highlight-image {
        height: 350px;
    }
    
    .highlight-content {
        padding: 30px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .cta-content p {
        margin: 16px auto 0;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn-orange,
    .cta-actions .btn-outline {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-hero .sec-h {
        font-size: 2rem;
    }
    
    .highlight-content h2 {
        font-size: 2rem;
    }
    
    .dish-price {
        font-size: 1.5rem;
    }
    
    .weekly-grid {
        grid-template-columns: 1fr;
    }
    
    .day-indicator {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .highlight-actions {
        flex-direction: column;
    }
    
    .highlight-actions .btn-orange,
    .highlight-actions .btn-outline {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .highlight-image {
        height: 280px;
    }
    
    .dish-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .dish-price {
        align-self: flex-end;
    }
    
    .special-note {
        padding: 20px;
    }
    
    .special-note p {
        font-size: 0.85rem;
    }
}

.btn-outline {
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
    background: #e7dddd!important;
}
.btn-outline.dark:hover{color:#333;}

/* ═══ TODAY'S HIGHLIGHT CAROUSEL ═══ */
.today-highlight-section {
    padding: 60px 0;
    background: var(--cream);
}

.highlight-wrapper {
    background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding: 40px;
}

.highlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.highlight-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.carousel-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.carousel-slide:hover .carousel-image img {
    transform: scale(1.08);
}

.carousel-content {
    color: var(--white);
    padding: 20px 0;
}

.carousel-category {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--orange);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-content h2 {
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.carousel-price {
    display: inline-block;
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 25px;
}

.carousel-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

.carousel-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.meta-item i {
    color: var(--orange);
    font-size: 1.2rem;
    width: 24px;
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 4;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--maroon-deep);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.carousel-dot.active {
    background: var(--orange);
    width: 32px;
    border-radius: 6px;
}

.day-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ══ RESPONSIVE ═══ */
@media (max-width: 1199px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .carousel-image {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .today-highlight-section {
        padding: 70px 0;
    }
    
    .highlight-wrapper {
        padding: 30px;
    }
    
    .carousel-image {
        height: 350px;
    }
    
    .carousel-nav {
        bottom: 90px;
        right: 30px;
    }
    
    .day-indicator {
        bottom: 30px;
        padding: 12px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .carousel-image {
        height: 300px;
    }
    
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-price {
        font-size: 1.6rem;
    }
    
    .carousel-nav {
        bottom: 80px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .day-indicator {
        bottom: 20px;
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    .page-hero p{display:none;}
}

@media (max-width: 575px) {
    .carousel-image {
        height: 280px;
    }
    
    .carousel-content h2 {
        font-size: 1.8rem;
    }
    
    .carousel-desc {
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: 90px;
        left: 50%;
        transform: translateX(-50%);
		display: none;
    }
    
    .carousel-nav {
        display: none;
    }
    .page-hero p{display:none;}
}