/* =============== DASHBOARD PUBLIC STYLES =============== */
.public-dashboard {
min-height: 100vh;
background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}
/* Hero Section - Style Dashboard Admin */
.dashboard-hero {
background: linear-gradient(145deg, #1a1f3a, #2d3561, #1e2749);
padding: 3rem 2rem 5rem;
position: relative;
overflow: hidden;
}
.dashboard-hero::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent 70%);
transform: rotate(25deg);
opacity: 1;
}
.dashboard-hero::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: repeating-linear-gradient(
135deg,
rgba(96, 165, 250, 0.1) 0px,
rgba(96, 165, 250, 0.1) 2px,
transparent 2px,
transparent 20px
    );
opacity: 0.3;
}
.shine {
position: absolute;
top: 0;
left: -150%;
width: 50%;
height: 100%;
background: linear-gradient(
135deg,
rgba(96, 165, 250, 0) 0%,
rgba(96, 165, 250, 0.4) 50%,
rgba(96, 165, 250, 0) 100%
    );
transform: skewX(-20deg);
animation: shine-move 5s infinite linear;
z-index: 1;
pointer-events: none;
}
@keyframes shine-move {
    0% { left: -150%; }
    100% { left: 150%; }
}
.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2rem;
}
.hero-text {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.hero-title {
font-size: 3rem;
font-weight: 800;
color: #ffffff;
margin-bottom: 1rem;
letter-spacing: -1px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
line-height: 1.2;
}
.hero-description {
font-size: 1.25rem;
color: #cbd5e1;
line-height: 1.8;
margin: 0 0 1.5rem 0;
max-width: 600px;
}
.hero-actions {
display: flex;
flex-direction: column;
gap: 1rem;
width: fit-content;
}
.btn-hero {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 14px 28px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
white-space: nowrap;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-hero.btn-primary {
background: linear-gradient(135deg, #1a1f3a, #2d3561);
color: white;
}
.btn-hero.btn-primary:hover {
background: linear-gradient(135deg, #0d1420, #1a1f3a);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(26, 31, 58, 0.4);
color: white;
}
.btn-hero.btn-secondary {
background: rgba(255, 255, 255, 0.15);
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}
.btn-hero.btn-secondary:hover {
background: rgba(255, 255, 255, 0.25);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
color: white;
}
/* Content Wrapper */
.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem 4rem;
}
/* Metrics Grid */
.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin: -3rem 0 3rem 0;
position: relative;
z-index: 3;
}
.metric-card {
background: white;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
display: flex;
align-items: center;
gap: 1.5rem;
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
}
.metric-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
border-color: #1a1f3a;
}
.metric-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #1a1f3a, #2d3561);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: white;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(26, 31, 58, 0.3);
}
.metric-content {
flex: 1;
}
.metric-value {
font-size: 2.75rem;
font-weight: 800;
color: #1a1f3a;
margin: 0;
line-height: 1;
}
.metric-label {
font-size: 0.9375rem;
color: #6b7280;
margin: 0.75rem 0 0 0;
font-weight: 500;
}
/* About Section */
.about-section {
margin: 4rem 0;
}
.about-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.about-card {
background: white;
border-radius: 16px;
padding: 2.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 2px solid transparent;
text-align: center;
}
.about-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
border-color: #1a1f3a;
}
.about-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #1a1f3a, #2d3561);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.25rem;
color: white;
margin: 0 auto 1.5rem;
box-shadow: 0 4px 12px rgba(26, 31, 58, 0.4);
}
.about-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1f3a;
margin-bottom: 1rem;
}
.about-text {
font-size: 1rem;
color: #6b7280;
line-height: 1.8;
margin: 0;
}
/* Events Section */
.events-section {
margin: 4rem 0;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
color: #1a1f3a;
margin-bottom: 0.75rem;
display: inline-flex;
align-items: center;
gap: 1rem;
}
.section-title i {
color: #1a1f3a;
}
.section-description {
font-size: 1.125rem;
color: #6b7280;
margin: 0;
}
.events-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 2rem;
}
.event-card {
background: white;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 2px solid #e5e7eb;
position: relative;
overflow: hidden;
}
.event-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #1a1f3a, #2d3561);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.event-card:hover::before {
transform: scaleX(1);
}
.event-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
border-color: #1a1f3a;
}
.event-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1.25rem;
gap: 1rem;
}
.event-title {
font-size: 1.375rem;
font-weight: 700;
color: #1a1f3a;
margin: 0;
flex: 1;
line-height: 1.3;
}
.event-badge {
background: linear-gradient(135deg, #1a1f3a, #2d3561);
color: white;
padding: 0.375rem 1rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 2px 6px rgba(26, 31, 58, 0.4);
}
.event-details {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1.25rem;
padding: 1rem;
background: #f9fafb;
border-radius: 12px;
}
.event-detail {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 0.9375rem;
color: #374151;
font-weight: 500;
}
.event-detail i {
color: #1a1f3a;
font-size: 1.125rem;
width: 20px;
text-align: center;
}
.event-description {
font-size: 0.9375rem;
color: #6b7280;
line-height: 1.7;
margin: 0;
}
/* Empty State */
.empty-state {
text-align: center;
padding: 4rem 2rem;
color: #6b7280;
}
.empty-state h3 {
font-size: 1.5rem;
color: #1a1f3a;
margin: 1rem 0 0.5rem 0;
}
.empty-state p {
font-size: 1rem;
margin: 0;
}
/* CTA Section */
.cta-section {
margin: 5rem 0 0 0;
}
.cta-card {
background: linear-gradient(135deg, #1a1f3a, #2d3561);
border-radius: 20px;
padding: 4rem 3rem;
text-align: center;
color: white;
box-shadow: 0 10px 40px rgba(26, 31, 58, 0.3);
position: relative;
overflow: hidden;
}
.cta-card::before {
content: "";
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(45, 53, 97, 0.2), transparent 70%);
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.cta-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, #1a1f3a, #2d3561);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: white;
margin: 0 auto 2rem;
box-shadow: 0 8px 20px rgba(26, 31, 58, 0.5);
position: relative;
z-index: 1;
}
.cta-title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1.25rem;
position: relative;
z-index: 1;
}
.cta-description {
font-size: 1.25rem;
color: #cbd5e1;
margin-bottom: 2.5rem;
line-height: 1.8;
max-width: 700px;
margin-left: auto;
margin-right: auto;
position: relative;
z-index: 1;
}
.cta-actions {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.btn-cta {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 16px 36px;
border-radius: 50px;
font-weight: 700;
font-size: 1.0625rem;
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn-cta.btn-primary {
background: linear-gradient(135deg, #1a1f3a, #2d3561);
color: white;
box-shadow: 0 6px 20px rgba(26, 31, 58, 0.4);
}
.btn-cta.btn-primary:hover {
background: linear-gradient(135deg, #0d1420, #1a1f3a);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(26, 31, 58, 0.5);
color: white;
}
.btn-cta.btn-secondary {
background: white;
color: #1a1f3a;
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.btn-cta.btn-secondary:hover {
background: #f3f4f6;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
color: #1a1f3a;
}
/* Responsive */
@media (max-width: 992px) {
.hero-content {
flex-direction: column;
align-items: flex-start;
text-align: left;
    }
.hero-text {
max-width: 100%;
    }
.hero-description {
max-width: 100%;
    }
.hero-actions {
width: 100%;
max-width: 400px;
margin-top: 1.5rem;
    }
}
@media (max-width: 768px) {
.dashboard-hero {
padding: 2rem 1.5rem 4rem;
    }
.hero-title {
font-size: 2.25rem;
    }
.hero-description {
font-size: 1.0625rem;
    }
.btn-hero {
width: 100%;
justify-content: center;
    }
.content-wrapper {
padding: 0 1.5rem 3rem;
    }
.metrics-grid {
grid-template-columns: 1fr;
margin-top: -2rem;
    }
.metric-card {
flex-direction: column;
text-align: center;
    }
.about-grid {
grid-template-columns: 1fr;
    }
.events-grid {
grid-template-columns: 1fr;
    }
.section-title {
font-size: 1.875rem;
flex-direction: column;
gap: 0.5rem;
    }
.cta-card {
padding: 3rem 2rem;
    }
.cta-title {
font-size: 1.875rem;
    }
.cta-description {
font-size: 1.0625rem;
    }
.cta-actions {
flex-direction: column;
width: 100%;
    }
.btn-cta {
width: 100%;
justify-content: center;
    }
}