/**
 * Hotel Darshan - Royal Ultra-Luxury Restaurant Stylesheet
 */

.darshan-restaurant-section {
    padding: 8rem 0 6rem 0;
    background: #0E0C0A;
    color: #F7F3EC;
    position: relative;
    overflow: hidden;
}

.restaurant-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.restaurant-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem auto;
}

.restaurant-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.badge-line {
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C79A3B, transparent);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #C79A3B;
    text-transform: uppercase;
}

.restaurant-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.title-line {
    display: block;
}

.italic-gold {
    font-style: italic;
    color: #C79A3B;
    background: linear-gradient(135deg, #E6CA85 0%, #C79A3B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.restaurant-description {
    font-size: 1rem;
    color: #A89F91;
    line-height: 1.7;
    font-weight: 300;
}

/* Filter Pills Bar */
.restaurant-filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(199, 154, 59, 0.25);
    color: #D4CDC3;
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-pill:hover,
.filter-pill.is-active {
    background: linear-gradient(135deg, #C79A3B 0%, #A67C2E 100%);
    color: #0E0C0A;
    border-color: #C79A3B;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(199, 154, 59, 0.35);
    transform: translateY(-2px);
}

/* Restaurant Food Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.25rem;
}

/* Food Card Design */
.food-card {
    background: #161310;
    border: 1px solid rgba(199, 154, 59, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.food-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 154, 59, 0.5);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(199, 154, 59, 0.1);
}

.food-card.is-hidden {
    display: none !important;
}

.food-card.is-unavailable {
    opacity: 0.55;
}

/* Media Wrap */
.food-media-wrap {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.food-card:hover .food-img {
    transform: scale(1.08);
}

.food-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 19, 16, 0.95) 0%, rgba(22, 19, 16, 0.2) 60%, transparent 100%);
}

/* Food Type Badge (Veg / Non-Veg) */
.food-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(14, 12, 10, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.food-type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.food-type-veg .food-type-dot { background: #27ae60; box-shadow: 0 0 8px #27ae60; }
.food-type-non-veg .food-type-dot { background: #e74c3c; box-shadow: 0 0 8px #e74c3c; }
.food-type-egg .food-type-dot { background: #f39c12; box-shadow: 0 0 8px #f39c12; }

.food-type-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F7F3EC;
}

.unavailable-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #c0392b;
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

/* Food Body Content */
.food-body {
    padding: 1.5rem 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.food-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFDF8;
    margin: 0;
    line-height: 1.3;
}

.food-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    white-space: nowrap;
}

.price-original {
    font-size: 0.85rem;
    color: #7A7267;
    text-decoration: line-through;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: #C79A3B;
}

.food-category-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #C79A3B;
    background: rgba(199, 154, 59, 0.08);
    border: 1px solid rgba(199, 154, 59, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.food-desc {
    font-size: 0.875rem;
    color: #AAA195;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.restaurant-empty-msg {
    text-align: center;
    padding: 4rem 1rem;
    color: #8C8377;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .darshan-restaurant-section { padding: 5rem 0 4rem 0; }
    .restaurant-grid { grid-template-columns: 1fr; }
}