/* /public/templates/steakhouse.css */
/* Steakhouse Luxury Theme — charcoal, gold, deep red, premium restaurant ambiance */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;800&family=Inter:wght@300;500;700&display=swap');

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0f0f0f;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ───────────────────────────────────────────
   HERO — Dark luxury with gold accents
────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 3rem 1rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Keep your actual media visible */
.hero-video,
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* Warm vignette + gold glows */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 40% 25%, rgba(255,200,120,0.25), transparent 60%),
        radial-gradient(circle at 70% 75%, rgba(255,200,120,0.18), transparent 65%),
        linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
    z-index: -2;
}

/* Subtle noise texture for richness */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/public/assets/theme/noise.png');
    background-size: cover;
    opacity: 0.18;
    mix-blend-mode: overlay;
    z-index: -1;
}

/* ───────────────────────────────────────────
   LOGO
────────────────────────────────────────────── */

.brand-logo {
    max-height: 140px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.6));
}

/* ───────────────────────────────────────────
   TITLES — Elegant serif
────────────────────────────────────────────── */

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    color: #fdf7ef;
    text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.brand-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2.3rem);
    font-weight: 400;
    color: #f2e7d8;
    opacity: 0.9;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

/* ───────────────────────────────────────────
   ORDER BUTTON — Gold gradient
────────────────────────────────────────────── */

.order-btn {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 1.2rem 3.2rem !important;
    border-radius: 70px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #d4a556, #a17632) !important;
    color: #1c1406 !important;
    border: none;
    box-shadow: 0 15px 40px rgba(212,165,86,0.45);
    transition: all 0.35s ease;
}

.order-btn:not(.disabled):hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 22px 55px rgba(212,165,86,0.6);
}

.order-btn.disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ───────────────────────────────────────────
   ANNOUNCEMENT BAR — Burgundy leather
────────────────────────────────────────────── */

.announcement {
    background: linear-gradient(90deg, #450a0a, #641414);
    color: #fbe9e7;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    border-radius: 14px;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 12px 35px rgba(100,20,20,0.45);
}

/* ───────────────────────────────────────────
   INFO CARDS — Dark wood & gold trim
────────────────────────────────────────────── */

.info-section { margin-bottom: 3.5rem; }

.info-card {
    background: #1a1a1aee;
    backdrop-filter: blur(6px);
    border-radius: 26px;
    padding: 2.1rem;
    color: #f5f5f5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
    border: 1px solid rgba(212,165,86,0.25);
    transition: transform 0.25s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #d4a556;
    border-left: 6px solid #a17632;
    padding-left: 12px;
    margin-bottom: 1.3rem;
}

.info-card ul li {
    font-size: 1.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #2a2a2a;
}
.info-card ul li:last-child { border-bottom: none; }

/* ───────────────────────────────────────────
   MAP
────────────────────────────────────────────── */

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 14px rgba(212,165,86,0.4),
        0 0 28px rgba(0,0,0,0.35);
}

/* ───────────────────────────────────────────
   FOOTER — Premium woodtone
────────────────────────────────────────────── */

.site-footer {
    background: #1a120a;
    color: #e7d7c0;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    border-top: 4px solid #a17632;
}

/* ───────────────────────────────────────────
   FLOATING BUTTONS — Gold accent
────────────────────────────────────────────── */

.floating-action-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* OPEN/CLOSED pill */
.floating-status-btn {
    padding: 14px 26px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a120a;
    background: #d4a556;
    box-shadow: 0 15px 40px rgba(212,165,86,0.5);
    animation: steakFloat 4s ease-in-out infinite;
}

.status-closed {
    background: #7c7c7c !important;
    color: #1a1a1a !important;
    box-shadow: 0 15px 40px rgba(124,124,124,0.45) !important;
}

@keyframes steakFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* CALL button */
.floating-call-btn {
    background: #641414;
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fbe9e7 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(100,20,20,0.55);
}

.floating-call-btn:hover {
    background: #450a0a;
    transform: scale(1.1);
}

/* ───────────────────────────────────────────
   MOBILE
────────────────────────────────────────────── */

@media (max-width: 768px) {
    .brand-logo { max-height: 100px; }
    .order-btn { font-size: 1.3rem; padding: 1rem 2.4rem !important; }
    .floating-action-group { bottom: 20px; right: 20px; }
    .floating-call-btn,
    .floating-status-btn { padding: 12px 20px; font-size: 0.95rem; }
}
