/* Common Page Styles */
body {
    padding-top: 76px; /* Account for fixed navbar */
}

/* Menu Page */
.menu-nav {
    position: sticky;
    top: 80px;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.menu-nav .nav-link {
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-nav .nav-link:hover,
.menu-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.item-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Coupons Page */
.coupon-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px dashed var(--primary-color);
    margin-bottom: 2rem;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.coupon-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coupon-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.coupon-description {
    color: #666;
    margin-bottom: 1rem;
}

.disclaimer-section {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.disclaimer-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-title i {
    color: var(--primary-color);
}

.disclaimer-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Location Page */
.location-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-nav {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .coupon-title {
        font-size: 1.3rem;
    }

    .coupon-price {
        font-size: 1.8rem;
    }
} 