/* CSS Variables & Global Styles */
:root {
    --primary-color: #f57862;
    --primary-dark: #e2624d;
    --text-dark: #111111;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #eaeaea;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-main);
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-white);
    /* overflow-x: hidden; removed to fix sticky header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Typography Utilities */
.subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

#common-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header {
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo.light h2 {
    color: var(--primary-color);
    font-size: 24px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.mobile-order-btn {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Main Hero Slider */
.main-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #2a2018;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-content {
    max-width: 800px;
    color: var(--bg-white);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slider-item.active .slider-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    color: #ffffff;
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ffffff;
}

.slider-nav-btns {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--bg-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--primary-color);
}

.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--bg-white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 35px;
    border-radius: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 5px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 10px 20px;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.menu-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    transition: opacity 0.4s ease;
}

.menu-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-title {
    color: var(--bg-white);
    font-size: 24px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
    opacity: 0;
}

.gallery-item[data-category="special"] .gallery-title {
    text-align: center;
}

.gallery-price {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
    opacity: 0;
}

.gallery-price small {
    font-size: 24px;
    font-weight: 400;
    color: #e0e0e0;
}

.gallery-btn {
    transform: translateY(20px);
    transition: transform 0.4s ease 0.3s, opacity 0.4s ease 0.3s;
    opacity: 0;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-price,
.gallery-item:hover .gallery-btn {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Secondary About */
.about-secondary {
    padding: 100px 0;
}

.about-sec-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-sec-image {
    flex: 1;
}

.about-sec-image img {
    border-radius: 50%;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-sec-content {
    flex: 1;
}

/* Reservation Section */
.reservation {
    padding: 120px 0;
    background-image: url('../images/menu_item_1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

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

.reservation-card {
    background: var(--bg-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.booking-form .btn-block {
    grid-column: span 2;
}

.booking-message {
    display: none;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    border-left: 5px solid;
    animation: fadeIn 0.4s ease;
}

.booking-message.success {
    display: block;
    background-color: rgba(46, 204, 113, 0.1);
    color: #1e7e34;
    border-color: #2ecc71;
}

.booking-message.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #bd2130;
    border-color: #e74c3c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    transition: color 0.3s ease;
}

.form-group:focus-within i {
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

select.form-control {
    appearance: none;
    -webkit-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='%23f57862' 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 18px center;
    background-size: 18px;
    cursor: pointer;
    padding-right: 45px;
}

select.form-control:hover {
    border-color: #d1d1d1;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(245, 120, 98, 0.15);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-dark);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
}

.newsletter-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.newsletter-image {
    flex: 1;
}

.newsletter-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.newsletter-content {
    flex: 1;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.subscribe-form .form-control {
    padding: 15px 20px;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.blog-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 20px;
    line-height: 1.4;
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: #999;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.widget-title {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-desc {
    margin-top: 20px;
    font-size: 14px;
}

.widget-links {
    list-style: none;
}

.widget-links li {
    margin-bottom: 12px;
}

.widget-links a {
    color: #999;
    font-size: 14px;
}

.widget-links a:hover {
    color: var(--primary-color);
}

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

.insta-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    font-size: 14px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    margin-right: 10px;
    color: var(--bg-white);
}

.social-links a {
    color: #999;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Detailed Menu Styles */
.detailed-menu {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.menu-header {
    margin-bottom: 60px;
}

.menu-header .cursive {
    font-family: 'Satisfy', cursive;
    color: var(--primary-color);
    font-size: 32px;
    display: block;
    margin-bottom: -10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item-detailed {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-img {
    flex: 0 0 80px;
    height: 80px;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.item-header h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.item-header .price {
    font-size: 17px;
    font-weight: 600;
    color: #ccc;
    /* As seen in image, price is subtle but clear */
}

.item-info p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.mt-50 {
    margin-top: 50px;
}

.btn-dark-large {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 0;
    /* Square button in image */
    transition: all 0.3s;
}

.btn-dark-large:hover {
    background-color: var(--primary-color);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .slider-controls {
        padding: 0 20px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .image-wrapper {
        max-width: 400px;
    }

    .about-sec-image img {
        max-width: 350px;
    }

    .booking-form {
        flex-wrap: wrap;
    }

    .booking-form .btn {
        width: 100%;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 15px);
        height: 350px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        gap: 15px;
        text-align: center;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a.mobile-order-btn {
        display: inline-block;
        color: var(--bg-white);
        background-color: var(--primary-color);
        margin-top: 10px;
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 15px;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links a.mobile-order-btn:hover {
        background-color: var(--primary-dark);
        color: var(--bg-white);
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-container,
    .about-container,
    .about-sec-container,
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .main-slider {
        height: 75vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 40px;
    }

    .slider-nav-btns {
        display: none;
    }

    .slider-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-btns {
        justify-content: center;
    }

    .image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .features-grid {
        text-align: left;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .reservation-card {
        padding: 30px;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-form .btn-block {
        grid-column: span 1;
    }

    .form-group {
        width: 100%;
        flex: none;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form .btn {
        width: 100%;
    }

    .footer-bottom .flex-between {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .image-wrapper {
        max-width: 250px;
    }

    .menu-tabs {
        justify-content: flex-start;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-btn {
        display: flex;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .menu-gallery {
        gap: 15px;
        padding: 10px 0;
    }

    .gallery-item {
        flex: 0 0 85%;
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-detailed {
        gap: 15px;
    }

    .item-img {
        flex: 0 0 60px;
        height: 60px;
    }
}

/* Event Slider Buttons */
.event-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f37963;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    transition: all 0.3s ease;
}

.event-prev {
    left: -70px;
}

.event-next {
    right: -70px;
}

@media (max-width: 1200px) {
    .event-prev {
        left: -20px;
    }

    .event-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .event-nav-btn {
        display: none !important;
    }
}

/* Sticky Order Now Button */
.sticky-order-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px 0 0 5px;
    transition: background-color 0.3s ease, padding 0.3s ease;
    text-transform: uppercase;
}

.sticky-order-btn:hover {
    background-color: var(--primary-dark);
    padding: 20px 15px;
    color: var(--bg-white);
}

/* Blog Single Post Styles */
.blog-header {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-single-title {
    font-size: 48px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-content p {
    margin-bottom: 30px;
}

.blog-post-content h2,
.blog-post-content h3 {
    margin: 50px 0 25px;
    color: var(--text-dark);
}

.blog-post-content blockquote {
    border-left: 5px solid var(--primary-color);
    padding: 20px 40px;
    margin: 40px 0;
    background-color: var(--bg-light);
    font-style: italic;
    font-size: 22px;
    border-radius: 0 8px 8px 0;
}

.blog-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.share-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.back-to-blog:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-single-title {
        font-size: 32px;
    }

    .blog-hero-img {
        height: 300px;
    }

    .blog-header {
        padding: 60px 0 40px;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* Promotional Popup Modal Styles */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    /* Higher than sticky order button and header */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background-color: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-modal.active .promo-modal-content {
    transform: scale(1);
}

.promo-modal-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}


.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10001;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-modal-close:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
    color: #fff;
}

/* Event Section Mobile Responsiveness */
@media (max-width: 768px) {
    .event-item {
        flex-direction: column !important;
    }

    .event-image {
        flex-direction: column;
    }

    .event-date-vertical {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        padding: 10px !important;
        text-align: center;
        width: 100%;
    }

    .event-content {
        padding: 30px 20px !important;
    }

    .countdown {
        gap: 15px !important;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Regular Menu Section Styles
   ========================================================================== */
.regular-menu-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.signature-card {
    grid-column: span 2;
}

.signature-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
}

.signature-item {
    display: flex;
    flex-direction: column;
}

.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.sig-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.sig-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
}

.sig-desc {
    font-size: 13.5px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.signature-item:last-child:nth-child(odd) {
    grid-column: span 2;
}

.menu-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.menu-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-card-title i {
    color: var(--primary-color);
    font-size: 18px;
}

.menu-sub-category {
    margin-bottom: 20px;
}

.menu-sub-category:last-child {
    margin-bottom: 0;
}

.sub-category-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.menu-sub-category:first-of-type .sub-category-title {
    margin-top: 0;
}

.menu-item-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

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

.item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.item-dots {
    flex: 1;
    border-bottom: 1.5px dotted #ddd;
    margin: 0 8px;
    position: relative;
    top: -4px;
}

.item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive Media Queries for Regular Menu */
@media (max-width: 1024px) {
    .regular-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .regular-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .signature-card {
        grid-column: span 1;
    }

    .signature-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .signature-item:last-child:nth-child(odd) {
        grid-column: span 1;
    }
}