/* Demos shared CSS */
.demo-badge {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    background-color: var(--text-primary);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: transform 0.2s ease;
}

.demo-badge:hover {
    transform: translateY(-2px);
}

/* Demo Specific Overrides */
/* Architect Demo */
.architect-theme {
    --bg-color: #fcfcfc;
    --text-primary: #000000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.architect-theme .h1 {
    font-weight: 400;
    letter-spacing: -0.04em;
    font-size: clamp(3rem, 7vw, 6rem);
}

/* Restaurant Demo */
.restaurant-theme {
    --bg-color: #0f1115;
    --bg-secondary: #1a1d24;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #272a30;
    --accent-color: #c9a263; /* Gold accent */
    --accent-hover: #b08d55;
    font-family: 'Playfair Display', serif; /* Would need to import */
}

/* Builder Demo */
.builder-theme {
    --accent-color: #f97316; /* Orange accent */
    --accent-hover: #ea580c;
}
