/* /public/templates/christmas.css */
/* Premium Christmas Theme – High-End Visual Style, Subtle Animations, Zero JS */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&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: #0a1c14;
    color: #e8f5e9;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ───────────────────────────────────────────
   HERO SECTION – Frosted Glass + Snow Glow
────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* --- Background image / video --- */
.hero-video,
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* --- Gradient overlay for readability --- */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85)),
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.25), transparent 60%),
        radial-gradient(circle at 80% -5%, rgba(255,255,255,0.2), transparent 60%);
    z-index: -2;
}

/* --- Soft snow shimmer overlay (static texture + animation) --- */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 30% 20%, rgba(255,255,255,0.55), transparent),
        radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,0.35), transparent),
        radial-gradient(2px 2px at 50% 80%, rgba(255,255,255,0.45), transparent);
    background-size: 300px 300px;
    opacity: 0.22;
    animation: snowGlow 14s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes snowGlow {
    0% { opacity: 0.15; transform: translateY(0px); }
    100% { opacity: 0.3; transform: translateY(6px); }
}

/* ───────────────────────────────────────────
   LOGO
────────────────────────────────────────────── */

.brand-logo {
    max-height: 140px;
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.4);
    background: white;
    padding: 8px;
    margin-bottom: 1.8rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.55);
    animation: logoFloat 4.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* ───────────────────────────────────────────
   TITLE + TAGLINE
────────────────────────────────────────────── */

.brand-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 6px 20px rgba(0,0,0,0.7);
    letter-spacing: -1.5px;
    animation: fadeSlideDown 1.2s ease-out forwards;
}

.brand-tagline {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    opacity: 0;
    color: rgba(255,255,255,0.88);
    max-width: 900px;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1.3s ease-out 0.35s forwards;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────────────────
   ORDER BUTTON
────────────────────────────────────────────── */

.order-btn {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 1.2rem 3rem !important;
    border-radius: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #d62828 !important; /* Christmas red */
    color: white !important;
    box-shadow: 0 18px 40px rgba(214,40,40,0.55);
    transition: all 0.35s ease;
    animation: buttonPulse 3.2s ease-in-out infinite;
}

.order-btn:not(.disabled):hover {
    background: #b71c1c !important;
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(214,40,40,0.55) !important;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.order-btn.disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ───────────────────────────────────────────
   ANNOUNCEMENT BAR
────────────────────────────────────────────── */

.announcement {
    background: #16a34a;
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem auto;
    box-shadow: 0 12px 30px rgba(22,163,74,0.35);
}

/* ───────────────────────────────────────────
   INFO CARDS
────────────────────────────────────────────── */

.info-section { margin-bottom: 3rem; }

.info-card {
    background: rgba(255,255,255,0.96);
    color: #1e293b;
    padding: 2rem;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.2);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #14532d;
    border-left: 6px solid #22c55e;
    padding-left: 0.75rem;
}

.info-card ul li {
    font-size: 1.15rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-card ul li:last-child { border-bottom: none; }

/* ───────────────────────────────────────────
   MAP
────────────────────────────────────────────── */

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ───────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */

.site-footer {
    background: #06100c;
    color: #b7cfc0;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

/* ───────────────────────────────────────────
   FLOATING BUTTON GROUP
────────────────────────────────────────────── */

.floating-action-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10000;
}

/* OPEN/CLOSED pill */
.floating-status-btn {
    background: #22c55e;
    padding: 14px 26px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 15px 40px rgba(34,197,94,0.45);
    animation: floatPulse 4s ease-in-out infinite;
}

.status-closed {
    background: #6b7280 !important;
    box-shadow: 0 15px 40px rgba(107,114,128,0.35) !important;
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* CALL button */
.floating-call-btn {
    background: #d62828;
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(214,40,40,0.5);
}

.floating-call-btn:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

/* ───────────────────────────────────────────
   MOBILE RESPONSIVE
────────────────────────────────────────────── */

@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; }
}
