/* GFJN Festival 2026 - Main Styles */

:root {
    /* Color Palette */
    --primary: #1a365d;
    --primary-light: #2d3748;
    --secondary: #e53e3e;
    --accent: #d69e2e;
    --success: #38a169;
    --warning: #d69e2e;
    --danger: #e53e3e;
    --info: #3182ce;
    /* Neutrals */
    --light: #f7fafc;
    --light-gray: #e2e8f0;
    --gray: #a0aec0;
    --dark-gray: #4a5568;
    --dark: #2d3748;
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}


/* Reset & Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(120deg, var(--accent), transparent);
    opacity: 0.3;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--warning);
}

.btn-outline {
    background: transparent;
    border-color: var(--light-gray);
    color: var(--dark-gray);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 50%;
}


/* Forms */

.form-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.form-icon {
    font-size: 2.5rem;
}

.form-title h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.form-title p {
    opacity: 0.9;
    margin-bottom: 0;
}

.form-badge .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-team {
    background: var(--accent);
    color: white;
}

.badge-press {
    background: var(--info);
    color: white;
}

.badge-vip {
    background: linear-gradient(135deg, #805ad5, #d53f8c);
    color: white;
}

.form-section {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    color: var(--primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--accent);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-light);
    width: 1.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.invalid-feedback {
    display: none;
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.is-invalid~.invalid-feedback {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
}


/* Checkboxes & Radios */

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.checkbox-label input,
.radio-label input {
    width: 1.25rem;
    height: 1.25rem;
}


/* Option Cards */

.type-options,
.coverage-options,
.booth-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.type-option,
.coverage-option,
.booth-option {
    position: relative;
}

.type-option input,
.coverage-option input,
.booth-option input {
    position: absolute;
    opacity: 0;
}

.option-card,
.booth-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.option-card:hover,
.booth-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.type-option input:checked+.option-card,
.coverage-option input:checked+.option-card,
.booth-option input:checked+.booth-card {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), transparent);
}

.option-card i,
.booth-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.option-card h5,
.booth-card h5 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.option-card p,
.booth-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}


/* Upload Areas */

.upload-area {
    border: 3px dashed var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light);
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), transparent);
}

.upload-area i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: var(--space-sm);
}

.upload-area p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.upload-area span {
    font-size: 0.875rem;
    color: var(--gray);
}

.file-info {
    margin-top: var(--space-md);
}

.file-preview {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--light);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
}

.file-preview i {
    font-size: 1.5rem;
    color: var(--primary);
}

.file-details {
    flex: 1;
}

.file-name {
    display: block;
    font-weight: 600;
    color: var(--dark);
}

.file-size {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
}

.btn-remove-file {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.btn-remove-file:hover {
    color: var(--secondary);
}


/* Tags & Badges */

.tag-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag-option:hover {
    border-color: var(--primary);
}

.tag-option input:checked+span {
    color: var(--primary);
    font-weight: 600;
}

.tag-option input:checked~.tag-option {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), transparent);
}


/* Progress */

.progress-bar {
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    z-index: 1;
}

.progress-step:first-child::before {
    left: 50%;
}

.progress-step:last-child::before {
    right: 50%;
}

.progress-step.active .step-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto var(--space-xs);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--primary);
}


/* Form Steps */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
}


/* Review Summary */

.review-summary {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.summary-section {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.summary-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.summary-item {
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
}

.summary-label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.summary-value {
    color: var(--dark);
    font-weight: 500;
}


/* Password Strength */

.password-strength {
    margin-top: var(--space-sm);
}

.strength-bar {
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.strength-bar.strength-weak {
    background: var(--danger);
    width: 25%;
}

.strength-bar.strength-medium {
    background: var(--warning);
    width: 50%;
}

.strength-bar.strong {
    background: var(--success);
    width: 100%;
}

.strength-text {
    font-size: 0.875rem;
    color: var(--gray);
}


/* Terms */

.terms-agreement {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.terms-agreement .checkbox-label {
    margin-bottom: var(--space-sm);
}

.terms-agreement .checkbox-label:last-child {
    margin-bottom: 0;
}


/* Festival Hero */

.festival-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(45, 55, 72, 0.9));
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 1;
}

.festival-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0.5rem 1.5rem;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-right: 0.5rem;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-counter {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--warning));
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-quote {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.hero-quote cite {
    font-size: 0.875rem;
    opacity: 0.8;
    font-style: normal;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}


/* Member Type Selection */

.member-type-selector {
    padding: var(--space-xl) 0;
    background: white;
}

.member-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.member-type-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.member-type-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), transparent);
}

.member-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-type-card.selected::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.member-type-card h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.member-type-card p {
    color: var(--gray);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.card-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.card-badges .badge {
    background: var(--light);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-select-type {
    width: 100%;
    margin-top: auto;
}


/* Event Cards */

.event-cards-section {
    padding: var(--space-xl) 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-description {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.event-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.filter-btn {
    background: white;
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.event-date {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: var(--space-md);
    text-align: center;
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    border-radius: var(--radius-md);
    z-index: 1;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.date-year {
    font-size: 0.75rem;
    opacity: 0.7;
}

.event-content {
    padding: var(--space-lg);
}

.event-category {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.event-title {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-description {
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.feature-tag {
    background: var(--light);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.btn-event-register {
    flex: 1;
    background: var(--primary);
    color: white;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-event-register:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.btn-event-details,
.btn-event-live {
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-event-details:hover,
.btn-event-live:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.event-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 1;
}

.badge-ribbon,
.badge-new,
.badge-popular {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.badge-ribbon {
    background: linear-gradient(135deg, var(--accent), var(--warning));
}

.badge-new {
    background: linear-gradient(135deg, var(--success), #2f855a);
}

.badge-popular {
    background: linear-gradient(135deg, var(--danger), #c53030);
}

.load-more-container {
    text-align: center;
}

.btn-load-more {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--primary);
    color: white;
}


/* Dashboard */

.gfjn-dashboard-wrapper {
    min-height: 100vh;
    background: var(--light);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: var(--space-xl) 0;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h1 {
    color: white;
    margin-bottom: var(--space-sm);
}

.user-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.user-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.dashboard-nav {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-tab {
    flex: 0 0 auto;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-tab:hover {
    color: var(--primary);
}

.nav-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), transparent);
}

.dashboard-content {
    padding: var(--space-xl) 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.dashboard-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-title {
    color: var(--primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title i {
    color: var(--accent);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.view-all {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

.quick-actions .action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.action-btn {
    background: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--primary);
    background: white;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 1.5rem;
    color: var(--primary);
}

.updates-list .update-item {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--light-gray);
}

.updates-list .update-item:last-child {
    border-bottom: none;
}

.update-date {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.update-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.update-item h4 a {
    color: var(--primary);
    text-decoration: none;
}

.update-item h4 a:hover {
    text-decoration: underline;
}

.update-item p {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.doc-item {
    background: var(--light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.doc-thumbnail {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.doc-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doc-item:hover .doc-thumbnail img {
    transform: scale(1.05);
}

.no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-size: 3rem;
}

.doc-status {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.status-pending {
    background: var(--warning);
}

.status-approved {
    background: var(--success);
}

.status-rejected {
    background: var(--danger);
}

.status-under_review {
    background: var(--info);
}

.doc-info {
    padding: var(--space-md);
}

.doc-info h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.doc-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray);
}

.no-docs {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xl);
    background: var(--light);
    border-radius: var(--radius-md);
    border: 2px dashed var(--light-gray);
}

.no-docs i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.no-docs p {
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.btn-submit-doc {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit-doc:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.events-list .event-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
}

.events-list .event-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.event-date {
    flex: 0 0 auto;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.event-info h4 a {
    color: var(--primary);
    text-decoration: none;
}

.event-info h4 a:hover {
    text-decoration: underline;
}

.event-meta {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--gray);
}


/* Toast Notifications */

.gfjn-toast {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-success .toast-icon {
    color: var(--success);
}

.toast-error .toast-icon {
    color: var(--danger);
}

.toast-content {
    flex: 1;
}

.toast-content p {
    margin: 0;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.toast-close:hover {
    color: var(--dark);
}


/* Loading Spinner */

.loading-spinner {
    text-align: center;
    padding: var(--space-xl);
    color: var(--primary);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}


/* Responsive */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .member-type-grid {
        grid-template-columns: 1fr;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .type-options,
    .coverage-options,
    .booth-options {
        grid-template-columns: 1fr;
    }
    .step-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: var(--space-md);
    }
    .stat-counter {
        font-size: 2rem;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .nav-tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    .user-welcome {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .event-actions {
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
}


/* Print Styles */

@media print {
    .festival-hero,
    .member-type-selector,
    .hero-cta,
    .nav-tabs,
    .btn {
        display: none !important;
    }
    .form-container,
    .dashboard-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    body {
        font-size: 12pt;
        color: #000;
        background: white;
    }
    .container {
        max-width: 100%;
        padding: 0;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000;
    }
}