/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --accent-yellow: #ffd700;
    --light-yellow: #fff8dc;
    --pure-white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, var(--accent-yellow) 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background: var(--primary-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.nav-logo span {
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-yellow);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffd700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--pure-white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero p {
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-black);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary {
    background: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
}

.btn-secondary:hover {
    background: var(--accent-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

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

.element-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

.element-4 {
    top: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--pure-white);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--pure-white);
    font-weight: 500;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    box-shadow: var(--shadow-heavy);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Workshops Section */
.workshops {
    padding: 100px 0;
    background: var(--primary-black);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.workshop-card {
    background: var(--secondary-black);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.workshop-card.featured-workshop {
    border: 2px solid var(--accent-yellow);
    background: linear-gradient(135deg, var(--secondary-black) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.workshop-card:hover::before {
    transform: scaleX(1);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 215, 0, 0.3);
}

.workshop-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-black);
    font-size: 2rem;
}

.workshop-card h3 {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.workshop-card p {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.workshop-topics {
    list-style: none;
    margin-bottom: 2rem;
}

.workshop-topics li {
    color: var(--pure-white);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.workshop-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
}

.workshop-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.workshop-meta span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workshop-instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.workshop-instructor i {
    color: var(--accent-yellow);
}

.workshop-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.workshop-date i {
    color: var(--accent-yellow);
}

/* Workshop Price Styling */
.workshop-price {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1.1rem;
}

.workshop-price-free {
    color: var(--success-color);
    font-weight: 500;
    font-size: 1rem;
}

/* No Workshops Message */
.no-workshops-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--secondary-black);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 2rem 0;
}

.no-workshops-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.no-workshops-icon i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.no-workshops-message h3 {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-workshops-message p {
    color: var(--pure-white);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* No Workshops Detailed Message (for workshops.php) */
.no-workshops-detailed {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--secondary-black);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-workshops-detailed .no-workshops-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.no-workshops-detailed .no-workshops-icon i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
}

.no-workshops-detailed h2 {
    color: var(--accent-yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.no-workshops-detailed p {
    color: var(--pure-white);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.no-workshops-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-workshops-actions .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .no-workshops-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-workshops-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

.workshop-btn {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--secondary-black);
}

/* Featured Project: Vigivera */
.featured-project {
    margin-bottom: 4rem;
    background: var(--primary-black);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-heavy);
}

.project-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-badge {
    background: var(--gradient-primary);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.project-content h3 {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-subtitle {
    font-size: 1.3rem;
    color: var(--pure-white);
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
}

.project-description {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.feature span {
    color: var(--pure-white);
    font-weight: 500;
}

.project-status {
    margin-bottom: 2rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
}

.status-development {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.progress-text {
    color: var(--pure-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Project Mockup */
.project-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-mockup {
    width: 300px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.project-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 0.3rem;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-yellow);
}

.mockup-title {
    font-weight: 600;
    color: var(--accent-yellow);
}

.mockup-content {
    padding: 1.5rem;
    color: var(--primary-black);
}

.mockup-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
}

.card-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--primary-black);
}

.card-text p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.vigivera-scale {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scale-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.scale-range {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.9rem;
}

.scale-label {
    color: var(--primary-black);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--primary-black);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 215, 0, 0.3);
}

a.project-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.project-card--link:hover h3,
a.project-card--link:focus-visible h3 {
    text-decoration: underline;
    text-underline-offset: 4px;
}

a.project-card--link:focus-visible {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 3px;
}

.project-card-hint {
    margin: 1rem 0 0 !important;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0 !important;
}

.project-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    font-size: 1.8rem;
}

.project-card h3 {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-card p {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-type {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.project-status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-status-badge.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.project-status-badge.in-progress {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.project-status-badge.planning {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Vigivera Demo Section */
.vigivera-demo {
    padding: 100px 0;
    background: var(--primary-black);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--secondary-black);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.demo-feature:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.demo-feature h3 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.demo-feature p {
    color: var(--pure-white);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Browser Mockup */
.demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 400px;
    height: 300px;
    background: var(--primary-black);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.browser-header {
    background: var(--secondary-black);
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.3rem;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-yellow);
}

.browser-url {
    flex: 1;
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-align: center;
}

.vigivera-icon {
    font-size: 1.2rem;
    color: var(--accent-yellow);
}

.browser-content {
    background: var(--pure-white);
    height: 200px;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.article-preview {
    margin-bottom: 1rem;
}

.article-preview h4 {
    color: var(--primary-black);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.article-preview p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
}

.vigivera-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 200px;
    background: var(--gradient-primary);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: var(--shadow-medium);
    animation: slideIn 0.5s ease-out;
}

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

.popup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
}

.popup-header i {
    color: var(--primary-black);
}

.trust-score {
    text-align: center;
    margin-bottom: 1rem;
}

.score-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.2rem;
}

.score-label {
    font-size: 0.8rem;
    color: var(--primary-black);
    opacity: 0.8;
}

.analysis-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-black);
}

.detail-item i {
    color: #ef4444;
    font-size: 0.9rem;
}

/* Project Details Modal */
.project-details-section {
    margin-top: 3rem;
    text-align: center;
}

.details-button-container {
    margin-bottom: 2rem;
}

.details-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.project-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--primary-black);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-black);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 2rem;
}

.project-details-grid {
    display: grid;
    gap: 2rem;
}

.detail-section {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.detail-section h4 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.detail-section h4 i {
    color: var(--accent-yellow);
}

.detail-section p {
    color: var(--pure-white);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.development-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phase {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.phase-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phase.completed .phase-number {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.phase.in-progress .phase-number {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.phase.pending .phase-number {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.phase-content {
    flex: 1;
}

.phase-content h5 {
    color: var(--accent-yellow);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.phase-content p {
    color: var(--pure-white);
    opacity: 0.8;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.phase-status {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.team-member i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.team-member strong {
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 0.3rem;
}

.team-member p {
    color: var(--pure-white);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

.progress-overview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-label {
    color: var(--pure-white);
    font-weight: 500;
    min-width: 150px;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.progress-percentage {
    color: var(--accent-yellow);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
}

.project-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    font-weight: 500;
}

.project-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.project-link i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--pure-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Workshops Detailed Page */
.workshops-detailed {
    padding: 80px 0;
    background: var(--primary-black);
}

.workshop-detail-card {
    background: var(--secondary-black);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-heavy);
}

.workshop-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.workshop-title h2 {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.workshop-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.workshop-description h3 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.workshop-description p {
    color: var(--pure-white);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.workshop-description ul {
    list-style: none;
    padding: 0;
}

.workshop-description li {
    color: var(--pure-white);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    opacity: 0.9;
    line-height: 1.6;
}

.workshop-description li:last-child {
    border-bottom: none;
}

.workshop-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.info-card h4 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h4 i {
    color: var(--accent-yellow);
}

.info-card p {
    color: var(--pure-white);
    margin: 0;
    opacity: 0.9;
}

.workshop-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.other-workshops {
    margin-top: 4rem;
    text-align: center;
}

.other-workshops h2 {
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.workshops-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mini-workshop-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.mini-workshop-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.mini-workshop-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mini-workshop-card p {
    color: var(--pure-white);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* Registration Modal */
.registration-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.registration-modal .modal-content {
    background: var(--primary-black);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease-out;
}

.registration-modal .modal-header {
    background: var(--gradient-primary);
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.registration-modal .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.registration-modal .modal-body {
    padding: 2rem;
}

.registration-modal .form-group {
    margin-bottom: 1.5rem;
}

.registration-modal label {
    display: block;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.registration-modal input,
.registration-modal select,
.registration-modal textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    background: var(--secondary-black);
    color: var(--pure-white);
    font-size: 1rem;
    transition: var(--transition);
}

.registration-modal input:focus,
.registration-modal select:focus,
.registration-modal textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Project Details Page */
.project-details-page {
    padding: 80px 0;
    background: var(--secondary-black);
}

.project-details-page .detail-section {
    background: var(--primary-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 2rem;
}

.project-details-page .detail-section h2 {
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.project-details-page .detail-section h2 i {
    color: var(--accent-yellow);
}

.project-details-page .detail-section p {
    color: var(--pure-white);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.vigivera-scale-detailed {
    display: grid;
    gap: 1.5rem;
}

.vigivera-scale-detailed .scale-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.vigivera-scale-detailed .scale-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.vigivera-scale-detailed .scale-label {
    color: var(--pure-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vigivera-scale-detailed .scale-description {
    color: var(--pure-white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Legal Content Pages */
.legal-content {
    padding: 80px 0;
    background: var(--secondary-black);
}

.content-card {
    background: var(--primary-black);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-heavy);
    max-width: 900px;
    margin: 0 auto;
}

.content-card h2 {
    color: var(--accent-yellow);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0.5rem;
}

.content-card h3 {
    color: var(--accent-yellow);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-card p {
    color: var(--pure-white);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-card ul {
    color: var(--pure-white);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 500;
}

.content-card a:hover {
    text-decoration: underline;
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.back-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.back-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Responsive Design for new pages */
@media (max-width: 768px) {
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workshop-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .workshop-title h2 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .workshops-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-modal .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .content-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .back-links {
        flex-direction: column;
    }
    
    .back-links .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-black);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-details a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-form h3 {
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-yellow);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    background: var(--primary-black);
    color: var(--pure-white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select option {
    background: var(--primary-black);
    color: var(--pure-white);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--pure-white);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-yellow);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: var(--pure-white);
    opacity: 0.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-elements {
        width: 250px;
        height: 250px;
    }
    
    .element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 6px;
        width: 18px;
        height: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .workshop-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.project-details-page .detail-section--workshop[id^="workshop-"] {
    scroll-margin-top: 5.5rem;
}

.detail-section-register {
    margin-top: 1.25rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Workshop-Anmeldung (Formular) */
.registration-banner {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    background: rgba(45, 45, 45, 0.95);
}

.registration-banner--success {
    border-color: rgba(46, 204, 113, 0.5);
}

.registration-banner--error {
    border-color: rgba(231, 76, 60, 0.45);
}

.registration-banner__title {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.registration-banner__text {
    color: var(--pure-white);
    opacity: 0.92;
    font-size: 0.95rem;
    margin: 0;
}

.registration-banner__debug-label {
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 1rem 0 0.35rem;
}

.registration-banner__debug {
    text-align: left;
    margin: 0 0 0.25rem;
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(231, 76, 60, 0.35);
    border-radius: 8px;
    color: #f8d7da;
    max-height: 280px;
    overflow: auto;
}

.workshop-pick-details {
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.5);
}

.workshop-pick-summary {
    cursor: pointer;
    list-style: none;
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.workshop-pick-summary::-webkit-details-marker {
    display: none;
}

.workshop-pick-summary::before {
    content: '\25B6';
    display: inline-block;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.workshop-pick-details[open] .workshop-pick-summary::before {
    transform: rotate(90deg);
}

.workshop-pick-required {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--pure-white);
    opacity: 0.75;
}

.workshop-pick-inner {
    padding: 0 1rem 1rem;
    margin-bottom: 0;
}

.workshop-register-form {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.12);
    background: rgba(26, 26, 26, 0.6);
}

.workshop-register-form .form-group {
    margin-bottom: 0.85rem;
}

.workshop-register-form .form-group:last-of-type {
    margin-bottom: 0;
}

.workshop-register-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-yellow);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.workshop-register-form input[type="text"] {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    background: var(--primary-black);
    color: var(--pure-white);
    font-size: 0.95rem;
}

.workshop-register-form input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
