Implement MonacoUSA Portal redesign foundations
Some checks failed
Build And Push Image / docker (push) Failing after 1m11s

- Added VueUse Motion for animations with custom presets
- Created base UI component library with glass morphism effects:
  * GlassCard - Flexible card component with 4 variants
  * MonacoButton - Multi-variant button system
  * FloatingInput - Modern input with floating labels
  * StatsCard - Dashboard statistics display
  * AnimatedNumber - Smooth number animations
  * Icon system - Modular icon components
- Created comprehensive page mockups:
  * Dashboard mockup with stats, activity feed, and widgets
  * Events page with filtering, search, and calendar
- Established Monaco brand design system (red #dc2626)
- Configured spring animations and glass effects

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-08-30 18:25:21 +02:00
parent de75d2d764
commit c39936984b
29 changed files with 7278 additions and 1 deletions

613
pages/dashboard/mockup.vue Normal file
View File

@@ -0,0 +1,613 @@
<template>
<div class="dashboard-mockup">
<!-- Header -->
<header class="dashboard-header">
<div class="dashboard-header__content">
<h1
v-motion
:initial="{ opacity: 0, x: -20 }"
:enter="{ opacity: 1, x: 0 }"
class="dashboard-header__title"
>
Welcome back, {{ userName }}
</h1>
<p
v-motion
:initial="{ opacity: 0, x: -20 }"
:enter="{ opacity: 1, x: 0, transition: { delay: 100 } }"
class="dashboard-header__subtitle"
>
Here's what's happening with MonacoUSA today
</p>
</div>
<div class="dashboard-header__actions">
<MonacoButton variant="glass" icon="bell">
Notifications
</MonacoButton>
<MonacoButton variant="primary" icon="plus">
New Event
</MonacoButton>
</div>
</header>
<!-- Stats Grid -->
<section class="dashboard-stats">
<StatsCard
v-for="(stat, index) in stats"
:key="stat.label"
:label="stat.label"
:value="stat.value"
:icon="stat.icon"
:prefix="stat.prefix"
:suffix="stat.suffix"
:trend="stat.trend"
:progress="stat.progress"
:sparkline="stat.sparkline"
:delay="index"
variant="glass"
/>
</section>
<!-- Main Content Grid -->
<div class="dashboard-grid">
<!-- Recent Activity -->
<GlassCard
title="Recent Activity"
variant="glass"
:delay="400"
class="dashboard-activity"
>
<div class="activity-list">
<div
v-for="(activity, index) in recentActivities"
:key="index"
v-motion
:initial="{ opacity: 0, x: -20 }"
:enter="{
opacity: 1,
x: 0,
transition: { delay: 500 + (index * 50) }
}"
class="activity-item"
>
<div class="activity-item__icon">
<span :class="`activity-icon activity-icon--${activity.type}`">
{{ activity.icon }}
</span>
</div>
<div class="activity-item__content">
<p class="activity-item__text">{{ activity.text }}</p>
<span class="activity-item__time">{{ activity.time }}</span>
</div>
</div>
</div>
</GlassCard>
<!-- Upcoming Events -->
<GlassCard
title="Upcoming Events"
variant="glass"
:delay="450"
class="dashboard-events"
>
<div class="events-list">
<div
v-for="(event, index) in upcomingEvents"
:key="index"
v-motion
:initial="{ opacity: 0, y: 20 }"
:enter="{
opacity: 1,
y: 0,
transition: { delay: 550 + (index * 50) }
}"
class="event-card"
>
<div class="event-card__date">
<span class="event-card__day">{{ event.day }}</span>
<span class="event-card__month">{{ event.month }}</span>
</div>
<div class="event-card__content">
<h4 class="event-card__title">{{ event.title }}</h4>
<p class="event-card__location">{{ event.location }}</p>
<div class="event-card__attendees">
<span class="event-card__count">{{ event.attendees }} attending</span>
<MonacoButton variant="ghost" size="sm">
View Details
</MonacoButton>
</div>
</div>
</div>
</div>
</GlassCard>
<!-- Member Status -->
<GlassCard
title="Member Status"
variant="gradient"
:delay="500"
class="dashboard-member-status"
>
<div class="member-status">
<div class="member-status__badge">
<span class="badge badge--active">Active Member</span>
</div>
<div class="member-status__info">
<div class="status-item">
<span class="status-item__label">Dues Status</span>
<span class="status-item__value status-item__value--success">Paid</span>
</div>
<div class="status-item">
<span class="status-item__label">Next Payment</span>
<span class="status-item__value">January 2025</span>
</div>
<div class="status-item">
<span class="status-item__label">Member Since</span>
<span class="status-item__value">March 2023</span>
</div>
</div>
<MonacoButton variant="primary" block>
Manage Membership
</MonacoButton>
</div>
</GlassCard>
<!-- Quick Actions -->
<GlassCard
title="Quick Actions"
variant="glass"
:delay="550"
class="dashboard-actions"
>
<div class="quick-actions">
<button
v-for="(action, index) in quickActions"
:key="action.label"
v-motion
:initial="{ opacity: 0, scale: 0.8 }"
:enter="{
opacity: 1,
scale: 1,
transition: { delay: 600 + (index * 50) }
}"
class="action-button"
>
<span class="action-button__icon">{{ action.icon }}</span>
<span class="action-button__label">{{ action.label }}</span>
</button>
</div>
</GlassCard>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import GlassCard from '~/components/ui/GlassCard.vue'
import MonacoButton from '~/components/ui/MonacoButton.vue'
import StatsCard from '~/components/ui/StatsCard.vue'
const userName = ref('John')
const stats = ref([
{
label: 'Total Members',
value: 1234,
icon: 'users',
trend: { type: 'up', value: 12 },
sparkline: [30, 40, 35, 50, 49, 60, 70, 91, 95]
},
{
label: 'Events This Month',
value: 8,
icon: 'calendar',
suffix: ' events',
trend: { type: 'up', value: 33 }
},
{
label: 'Dues Collected',
value: 45670,
icon: 'dollar',
prefix: '$',
trend: { type: 'up', value: 5 },
progress: 78
},
{
label: 'Active Projects',
value: 12,
icon: 'briefcase',
trend: { type: 'neutral', value: 0 }
}
])
const recentActivities = ref([
{
icon: '👤',
type: 'member',
text: 'New member John Doe joined',
time: '2 hours ago'
},
{
icon: '📅',
type: 'event',
text: 'Summer Gala event created',
time: '5 hours ago'
},
{
icon: '💳',
type: 'payment',
text: 'Sarah Smith paid dues',
time: '1 day ago'
},
{
icon: '📝',
type: 'update',
text: 'Board meeting minutes posted',
time: '2 days ago'
}
])
const upcomingEvents = ref([
{
day: '15',
month: 'DEC',
title: 'Monaco Winter Gala',
location: 'Grand Ballroom',
attendees: 120
},
{
day: '22',
month: 'DEC',
title: 'Board Meeting',
location: 'Conference Room A',
attendees: 15
},
{
day: '31',
month: 'DEC',
title: 'New Year Celebration',
location: 'Monaco Club',
attendees: 200
}
])
const quickActions = ref([
{ icon: '📝', label: 'Register for Event' },
{ icon: '💳', label: 'Pay Dues' },
{ icon: '📊', label: 'View Reports' },
{ icon: '👥', label: 'Member Directory' },
{ icon: '📧', label: 'Send Newsletter' },
{ icon: '⚙️', label: 'Settings' }
])
</script>
<style scoped lang="scss">
.dashboard-mockup {
padding: 2rem;
max-width: 1400px;
margin: 0 auto;
background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
min-height: 100vh;
}
.dashboard-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
&__content {
flex: 1;
}
&__title {
font-size: 2rem;
font-weight: 700;
color: #27272a;
margin: 0 0 0.5rem;
}
&__subtitle {
font-size: 1rem;
color: #6b7280;
margin: 0;
}
&__actions {
display: flex;
gap: 1rem;
}
}
.dashboard-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 1.5rem;
.dashboard-activity {
grid-column: span 8;
}
.dashboard-events {
grid-column: span 4;
}
.dashboard-member-status {
grid-column: span 4;
}
.dashboard-actions {
grid-column: span 8;
}
}
.activity-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.activity-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 0.75rem;
border-radius: 8px;
transition: background 0.2s;
&:hover {
background: rgba(220, 38, 38, 0.05);
}
&__icon {
flex-shrink: 0;
}
&__content {
flex: 1;
}
&__text {
margin: 0 0 0.25rem;
color: #27272a;
font-size: 0.875rem;
}
&__time {
font-size: 0.75rem;
color: #6b7280;
}
}
.activity-icon {
display: flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
border-radius: 8px;
font-size: 1rem;
&--member {
background: rgba(59, 130, 246, 0.1);
}
&--event {
background: rgba(168, 85, 247, 0.1);
}
&--payment {
background: rgba(16, 185, 129, 0.1);
}
&--update {
background: rgba(251, 146, 60, 0.1);
}
}
.events-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.event-card {
display: flex;
gap: 1rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.5);
border-radius: 12px;
transition: all 0.2s;
&:hover {
background: rgba(255, 255, 255, 0.7);
transform: translateX(4px);
}
&__date {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 3.5rem;
height: 3.5rem;
background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
color: white;
border-radius: 10px;
flex-shrink: 0;
}
&__day {
font-size: 1.25rem;
font-weight: 700;
line-height: 1;
}
&__month {
font-size: 0.75rem;
text-transform: uppercase;
}
&__content {
flex: 1;
}
&__title {
margin: 0 0 0.25rem;
font-size: 1rem;
font-weight: 600;
color: #27272a;
}
&__location {
margin: 0 0 0.5rem;
font-size: 0.875rem;
color: #6b7280;
}
&__attendees {
display: flex;
align-items: center;
justify-content: space-between;
}
&__count {
font-size: 0.75rem;
color: #dc2626;
font-weight: 500;
}
}
.member-status {
display: flex;
flex-direction: column;
gap: 1.5rem;
&__badge {
text-align: center;
}
&__info {
display: flex;
flex-direction: column;
gap: 1rem;
}
}
.badge {
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
&--active {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
}
}
.status-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.5);
border-radius: 8px;
&__label {
font-size: 0.875rem;
color: #6b7280;
}
&__value {
font-size: 0.875rem;
font-weight: 600;
color: #27272a;
&--success {
color: #10b981;
}
}
}
.quick-actions {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.action-button {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1.5rem 1rem;
background: rgba(255, 255, 255, 0.5);
border: 2px solid transparent;
border-radius: 12px;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: rgba(255, 255, 255, 0.8);
border-color: rgba(220, 38, 38, 0.2);
transform: translateY(-2px);
}
&__icon {
font-size: 1.5rem;
}
&__label {
font-size: 0.875rem;
font-weight: 500;
color: #27272a;
}
}
// Responsive
@media (max-width: 1024px) {
.dashboard-grid {
.dashboard-activity,
.dashboard-events,
.dashboard-member-status,
.dashboard-actions {
grid-column: span 12;
}
}
.quick-actions {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.dashboard-header {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
&__actions {
width: 100%;
button {
flex: 1;
}
}
}
.dashboard-stats {
grid-template-columns: 1fr;
}
}
</style>

710
pages/events/mockup.vue Normal file
View File

@@ -0,0 +1,710 @@
<template>
<div class="events-mockup">
<!-- Header -->
<header class="events-header">
<div
v-motion
:initial="{ opacity: 0, y: -20 }"
:enter="{ opacity: 1, y: 0 }"
class="events-header__content"
>
<h1 class="events-header__title">Events</h1>
<p class="events-header__subtitle">Discover and join MonacoUSA events</p>
</div>
<div
v-motion
:initial="{ opacity: 0, y: -20 }"
:enter="{ opacity: 1, y: 0, transition: { delay: 100 } }"
class="events-header__actions"
>
<FloatingInput
v-model="searchQuery"
label="Search events..."
leftIcon="search"
variant="glass"
clearable
/>
<MonacoButton variant="primary" icon="plus">
Create Event
</MonacoButton>
</div>
</header>
<!-- Filter Bar -->
<div
v-motion
:initial="{ opacity: 0, y: 20 }"
:enter="{ opacity: 1, y: 0, transition: { delay: 200 } }"
class="events-filters"
>
<div class="filter-chips">
<button
v-for="filter in filters"
:key="filter.value"
class="filter-chip"
:class="{ 'filter-chip--active': selectedFilter === filter.value }"
@click="selectedFilter = filter.value"
>
{{ filter.label }}
<span v-if="filter.count" class="filter-chip__count">{{ filter.count }}</span>
</button>
</div>
<div class="view-toggles">
<button
class="view-toggle"
:class="{ 'view-toggle--active': viewMode === 'grid' }"
@click="viewMode = 'grid'"
>
<span></span> Grid
</button>
<button
class="view-toggle"
:class="{ 'view-toggle--active': viewMode === 'list' }"
@click="viewMode = 'list'"
>
<span></span> List
</button>
</div>
</div>
<!-- Events Grid/List -->
<div
class="events-container"
:class="`events-container--${viewMode}`"
>
<div
v-for="(event, index) in events"
:key="event.id"
v-motion
:initial="{ opacity: 0, y: 30 }"
:enter="{
opacity: 1,
y: 0,
transition: {
delay: 300 + (index * 50),
type: 'spring',
stiffness: 200,
damping: 20
}
}"
class="event-card-full"
:class="{ 'event-card-full--featured': event.featured }"
>
<div class="event-card-full__image">
<img :src="event.image" :alt="event.title" />
<div v-if="event.featured" class="event-card-full__badge">Featured</div>
<div class="event-card-full__date-overlay">
<span class="date-day">{{ event.date.day }}</span>
<span class="date-month">{{ event.date.month }}</span>
</div>
</div>
<div class="event-card-full__content">
<div class="event-card-full__header">
<h3 class="event-card-full__title">{{ event.title }}</h3>
<span class="event-card-full__category">{{ event.category }}</span>
</div>
<p class="event-card-full__description">{{ event.description }}</p>
<div class="event-card-full__meta">
<div class="meta-item">
<span class="meta-icon">📍</span>
<span class="meta-text">{{ event.location }}</span>
</div>
<div class="meta-item">
<span class="meta-icon">🕐</span>
<span class="meta-text">{{ event.time }}</span>
</div>
<div class="meta-item">
<span class="meta-icon">👥</span>
<span class="meta-text">{{ event.attendees }} attending</span>
</div>
</div>
<div class="event-card-full__footer">
<div class="event-card-full__price">
<span v-if="event.price === 0" class="price-free">Free</span>
<span v-else class="price-amount">${{ event.price }}</span>
</div>
<div class="event-card-full__actions">
<MonacoButton variant="ghost" size="sm" icon="heart">
Save
</MonacoButton>
<MonacoButton variant="primary" size="sm">
Register
</MonacoButton>
</div>
</div>
</div>
</div>
</div>
<!-- Load More -->
<div
v-motion
:initial="{ opacity: 0 }"
:enter="{ opacity: 1, transition: { delay: 800 } }"
class="load-more"
>
<MonacoButton variant="glass" icon="refresh" block>
Load More Events
</MonacoButton>
</div>
<!-- Floating Calendar Widget -->
<GlassCard
variant="glass"
class="calendar-widget"
:animated="true"
:delay="900"
>
<h4 class="calendar-widget__title">Quick Calendar</h4>
<div class="calendar-mini">
<div class="calendar-mini__header">
<button class="calendar-nav"></button>
<span class="calendar-month">December 2024</span>
<button class="calendar-nav"></button>
</div>
<div class="calendar-mini__grid">
<div
v-for="day in 31"
:key="day"
class="calendar-day"
:class="{
'calendar-day--event': [5, 12, 15, 22, 31].includes(day),
'calendar-day--today': day === 10
}"
>
{{ day }}
</div>
</div>
</div>
</GlassCard>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import GlassCard from '~/components/ui/GlassCard.vue'
import MonacoButton from '~/components/ui/MonacoButton.vue'
import FloatingInput from '~/components/ui/FloatingInput.vue'
const searchQuery = ref('')
const selectedFilter = ref('all')
const viewMode = ref('grid')
const filters = ref([
{ label: 'All Events', value: 'all', count: 24 },
{ label: 'Upcoming', value: 'upcoming', count: 12 },
{ label: 'This Week', value: 'week', count: 5 },
{ label: 'This Month', value: 'month', count: 8 },
{ label: 'Free', value: 'free', count: 7 },
{ label: 'Members Only', value: 'members', count: 10 }
])
const events = ref([
{
id: 1,
title: 'Monaco Winter Gala 2024',
category: 'Social',
description: 'Join us for an elegant evening celebrating the Monaco-US friendship with fine dining, live entertainment, and networking.',
image: '/api/placeholder/400/250',
date: { day: '15', month: 'DEC' },
time: '7:00 PM - 11:00 PM',
location: 'Grand Ballroom, Downtown',
attendees: 120,
price: 150,
featured: true
},
{
id: 2,
title: 'Business Networking Lunch',
category: 'Networking',
description: 'Connect with fellow Monaco-US business professionals over lunch and expand your network.',
image: '/api/placeholder/400/250',
date: { day: '18', month: 'DEC' },
time: '12:00 PM - 2:00 PM',
location: 'Monaco Club',
attendees: 45,
price: 35,
featured: false
},
{
id: 3,
title: 'Cultural Exchange Workshop',
category: 'Education',
description: 'Learn about Monaco culture, history, and traditions in this interactive workshop.',
image: '/api/placeholder/400/250',
date: { day: '20', month: 'DEC' },
time: '3:00 PM - 5:00 PM',
location: 'Community Center',
attendees: 30,
price: 0,
featured: false
},
{
id: 4,
title: 'New Year Celebration',
category: 'Social',
description: 'Ring in the new year with the MonacoUSA community! Champagne toast, live music, and dancing.',
image: '/api/placeholder/400/250',
date: { day: '31', month: 'DEC' },
time: '9:00 PM - 2:00 AM',
location: 'Monaco Club Rooftop',
attendees: 200,
price: 200,
featured: true
},
{
id: 5,
title: 'Wine Tasting Evening',
category: 'Social',
description: 'Discover exceptional wines from Monaco and France guided by our sommelier.',
image: '/api/placeholder/400/250',
date: { day: '22', month: 'DEC' },
time: '6:00 PM - 9:00 PM',
location: 'Wine Gallery',
attendees: 60,
price: 75,
featured: false
},
{
id: 6,
title: 'Board Meeting',
category: 'Meeting',
description: 'Monthly board meeting to discuss club activities and initiatives.',
image: '/api/placeholder/400/250',
date: { day: '28', month: 'DEC' },
time: '5:00 PM - 7:00 PM',
location: 'Conference Room A',
attendees: 15,
price: 0,
featured: false
}
])
</script>
<style scoped lang="scss">
.events-mockup {
padding: 2rem;
max-width: 1400px;
margin: 0 auto;
background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
min-height: 100vh;
position: relative;
}
.events-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
flex-wrap: wrap;
gap: 1.5rem;
&__content {
flex: 1;
}
&__title {
font-size: 2.5rem;
font-weight: 700;
color: #27272a;
margin: 0 0 0.5rem;
}
&__subtitle {
font-size: 1.125rem;
color: #6b7280;
margin: 0;
}
&__actions {
display: flex;
gap: 1rem;
align-items: center;
.floating-input {
width: 300px;
}
}
}
.events-filters {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(20px);
border-radius: 16px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
flex-wrap: wrap;
gap: 1rem;
}
.filter-chips {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.filter-chip {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.8);
border: 2px solid transparent;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
color: #6b7280;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: rgba(220, 38, 38, 0.05);
border-color: rgba(220, 38, 38, 0.2);
}
&--active {
background: #dc2626;
color: white;
border-color: #dc2626;
.filter-chip__count {
background: rgba(255, 255, 255, 0.2);
}
}
&__count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 1.25rem;
height: 1.25rem;
padding: 0 0.25rem;
background: rgba(220, 38, 38, 0.1);
border-radius: 10px;
font-size: 0.75rem;
font-weight: 600;
}
}
.view-toggles {
display: flex;
gap: 0.5rem;
}
.view-toggle {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.8);
border: 2px solid transparent;
border-radius: 10px;
font-size: 0.875rem;
font-weight: 500;
color: #6b7280;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: rgba(220, 38, 38, 0.05);
border-color: rgba(220, 38, 38, 0.2);
}
&--active {
background: white;
color: #dc2626;
border-color: #dc2626;
}
}
.events-container {
display: grid;
gap: 1.5rem;
margin-bottom: 2rem;
&--grid {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
&--list {
grid-template-columns: 1fr;
}
}
.event-card-full {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
&:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
&--featured {
border: 2px solid #dc2626;
box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}
&__image {
position: relative;
height: 200px;
overflow: hidden;
background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
&__badge {
position: absolute;
top: 1rem;
left: 1rem;
padding: 0.25rem 0.75rem;
background: #dc2626;
color: white;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
}
&__date-overlay {
position: absolute;
top: 1rem;
right: 1rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 3.5rem;
height: 3.5rem;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
.date-day {
font-size: 1.25rem;
font-weight: 700;
color: #dc2626;
line-height: 1;
}
.date-month {
font-size: 0.75rem;
color: #6b7280;
text-transform: uppercase;
}
}
&__content {
padding: 1.5rem;
}
&__header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 0.75rem;
}
&__title {
flex: 1;
margin: 0;
font-size: 1.25rem;
font-weight: 600;
color: #27272a;
}
&__category {
padding: 0.25rem 0.75rem;
background: rgba(220, 38, 38, 0.1);
color: #dc2626;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 500;
}
&__description {
margin: 0 0 1rem;
font-size: 0.875rem;
color: #6b7280;
line-height: 1.5;
}
&__meta {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1rem;
}
&__footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1rem;
border-top: 1px solid rgba(220, 38, 38, 0.1);
}
&__price {
.price-free {
padding: 0.25rem 0.75rem;
background: rgba(16, 185, 129, 0.1);
color: #10b981;
border-radius: 8px;
font-size: 0.875rem;
font-weight: 600;
}
.price-amount {
font-size: 1.25rem;
font-weight: 700;
color: #dc2626;
}
}
&__actions {
display: flex;
gap: 0.5rem;
}
}
.meta-item {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: #6b7280;
.meta-icon {
font-size: 1rem;
}
}
.load-more {
max-width: 400px;
margin: 2rem auto;
}
.calendar-widget {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 280px;
z-index: 10;
&__title {
margin: 0 0 1rem;
font-size: 1rem;
font-weight: 600;
color: #dc2626;
}
}
.calendar-mini {
&__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
&__grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 0.25rem;
}
}
.calendar-nav {
width: 1.5rem;
height: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
color: #dc2626;
cursor: pointer;
border-radius: 4px;
transition: background 0.2s;
&:hover {
background: rgba(220, 38, 38, 0.1);
}
}
.calendar-month {
font-size: 0.875rem;
font-weight: 600;
color: #27272a;
}
.calendar-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
color: #6b7280;
border-radius: 4px;
cursor: pointer;
transition: all 0.2s;
&:hover {
background: rgba(220, 38, 38, 0.05);
}
&--event {
background: rgba(220, 38, 38, 0.1);
color: #dc2626;
font-weight: 600;
}
&--today {
background: #dc2626;
color: white;
font-weight: 600;
}
}
// Responsive
@media (max-width: 768px) {
.events-header {
&__actions {
width: 100%;
.floating-input {
flex: 1;
}
}
}
.events-container--grid {
grid-template-columns: 1fr;
}
.calendar-widget {
display: none;
}
}
</style>