/* Base styles */
* { 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: #0a0a0a;
    color: #ffffff;
}

.font-display { 
    font-family: 'Space Grotesk', sans-serif; 
}

/* Backgrounds */
.bg-primary { 
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%); 
}

.bg-surface { 
    background: rgba(20, 20, 20, 0.8); 
}

.bg-surface-elevated { 
    background: rgba(30, 30, 30, 0.9); 
}

/* Accent colors */
.text-accent { 
    color: #dc2626; 
}

.border-accent { 
    border-color: #dc2626; 
}

.bg-accent { 
    background: #dc2626; 
}

/* Effects */
.glass-effect {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sharp-corners {
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.minimal-slash {
    clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
}

.text-glow {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.elegant-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.sharp-border {
    border: 2px solid #dc2626;
    position: relative;
}

.sharp-border::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #dc2626;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Typography */
.accent-line {
    position: relative;
}

.accent-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #dc2626;
}

.brutalist-text {
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

/* Geometric backgrounds */
.geometric-bg {
    position: relative;
    overflow: hidden;
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.03) 31%, rgba(220, 38, 38, 0.03) 69%, transparent 70%);
    pointer-events: none;
}

/* Cards */
.principle-card,
.event-card,
.service-card {
    position: relative;
    overflow: hidden;
}

.principle-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #dc2626, transparent);
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #dc2626, transparent);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #dc2626, transparent);
}

/* Badges and tags */
.date-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    padding: 16px 32px 16px 20px;
    position: relative;
    display: inline-block;
}

.event-type-badge {
    position: absolute;
    top: -8px;
    left: 20px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.event-type-discussion {
    background: rgba(168, 85, 247, 0.9);
}

.countdown-timer {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    padding: 8px 16px;
    text-align: center;
}

.spots-left {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.5);
    color: #eab308;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
}

.price-tag {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    padding: 12px 24px 12px 16px;
    position: relative;
}

.benefit-tag {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

/* Quote styling */
.quote-mark {
    position: relative;
    padding-left: 2rem;
}

.quote-mark::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.3;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
}


