:root {
    --primary-red: #A81818;
    /* Deep red from logo */
    --primary-yellow: #FFD700;
    /* Yellow from logo */
    --dark-bg: #121212;
    --card-bg: rgba(30, 30, 30, 0.8);
    --text-light: #ffffff;
    --text-dim: #cccccc;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background Overlay with subtle image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('assets/food1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(5px);
    transform: scale(1.1);
    /* Prevent blur edges */
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    padding-bottom: 40px;
}

/* Header & Logo */
.main-header {
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1s ease-out;
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 20px 0 40px;
    animation: fadeIn 1.2s ease-out;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--text-light), var(--primary-yellow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* Order Buttons */
.order-links {
    margin-bottom: 40px;
}

.order-links h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
}

.buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.order-btn:hover::before {
    transform: translateX(100%);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-yellow);
}

.btn-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.btn-text {
    flex: 1;
}

.btn-arrow {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    transition: transform var(--transition-speed);
}

.order-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Platform specific highlights (optional) */
.foodhub {
    border-left: 4px solid #D6002A;
    /* Foodhub color approx */
}

.ubereats {
    border-left: 4px solid #06C167;
}

.doordash {
    border-left: 4px solid #FF3008;
}

.menulog {
    border-left: 4px solid #FF8000;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.9);
}

.info-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.text-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.text-link:hover {
    color: #ff4d4d;
    text-decoration: underline;
}

.status-text {
    font-weight: bold;
    color: #4CAF50;
    /* Default open green */
}

/* Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    height: 150px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

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

/* Footer */
.main-footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: auto;
}

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

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

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

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

/* Reviews Section */
.reviews-section {
    margin-bottom: 40px;
    overflow: hidden;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    min-width: 250px;
    max-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.author {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8 - 20px * 8));
    }

    /* 8 unique cards */
}

.leave-review-container {
    text-align: center;
    margin-top: 30px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .gallery-preview {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }
}