/* Cafe Dedicated Styles */
.cafe-page {
    background: #0f0a07; /* Dark roast black */
    color: #f5e6cc; /* Cream text */
    font-family: 'Outfit', sans-serif;
}

.cafe-bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/Menu Rin Con Del Cafe.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
    filter: blur(5px);
}

.cafe-nav {
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(15, 10, 7, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(198, 147, 75, 0.2);
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--coffee);
    font-weight: 600;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--cream);
    transform: translateX(-5px);
}

.cafe-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cafe-logo img {
    height: 40px;
}

.cafe-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coffee);
    letter-spacing: 1px;
}

.cafe-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.cafe-badge {
    background: rgba(198, 147, 75, 0.1);
    color: var(--coffee);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(198, 147, 75, 0.3);
}

.cafe-hero h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.cafe-hero p {
    color: #a89a8e;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cafe-menu-section {
    padding: 60px 0;
}

.category-title {
    font-size: 1.8rem;
    color: var(--coffee);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(198, 147, 75, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(198, 147, 75, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(198, 147, 75, 0.08);
    border-color: var(--coffee);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.menu-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
}

.menu-item p {
    font-size: 0.9rem;
    color: #a89a8e;
    margin-bottom: 12px;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--coffee);
}

.order-btn {
    background: var(--coffee);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.menu-item:hover .order-btn {
    opacity: 1;
    transform: translateX(0);
}

.cafe-courtesy {
    background: linear-gradient(135deg, rgba(198, 147, 75, 0.1), rgba(0,0,0,0.4));
    border: 1px dashed var(--coffee);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.courtesy-icon {
    font-size: 3rem;
}

.courtesy-text h3 {
    font-size: 1.5rem;
    color: var(--coffee);
    margin-bottom: 8px;
}

.courtesy-text p {
    color: #a89a8e;
}

.cafe-footer {
    padding: 40px 0;
    text-align: center;
    color: #5d5048;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cafe-hero h1 { font-size: 2.5rem; }
    .cafe-courtesy { flex-direction: column; text-align: center; }
    .order-btn { opacity: 1; transform: none; margin-top: 10px; }
    .menu-item { flex-direction: column; text-align: center; gap: 16px; }
}
