/* AGB Screen CSS für die SEO-Day Website - Modern & Professionell mit Magic UI Effekten */

/* AGB-spezifische Farbvariablen */
#agb-hero-section {
    --agb-text-primary: #e8e8e8;
    --agb-text-secondary: #b8b8b8;
    --agb-accent-primary: #f39324;
    --agb-accent-secondary: #1c7a7e;
    --agb-background-dark: #0a0a0a;
    --agb-background-card: rgba(26, 26, 26, 0.95);
}

#agb-content-section {
    --agb-text-primary: #e8e8e8;
    --agb-text-secondary: #b8b8b8;
    --agb-text-tertiary: #888888;
    --agb-accent-primary: #f39324;
    --agb-accent-secondary: #1c7a7e;
    --agb-background-dark: #0a0a0a;
    --agb-background-card: rgba(26, 26, 26, 0.95);
    --agb-border-color: rgba(243, 147, 36, 0.2);
}

/* Hero Section */
.home-hero {
    font-family: var(--font-family-primary);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--agb-text-primary);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(243, 147, 36, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(28, 122, 126, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.home-hero-content {
    font-family: var(--font-family-primary);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: var(--agb-background-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--agb-border-color);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(243, 147, 36, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-content:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(243, 147, 36, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(243, 147, 36, 0.4);
}

.agb-main-title {
    font-family: var(--font-family-primary);
    font-size: 2.75rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 1rem 0;
    color: var(--agb-text-primary);
    line-height: 1.2;
    background: linear-gradient(135deg, #f39324 0%, #1c7a7e 50%, #f39324 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
    text-shadow: 
        0 0 30px rgba(243, 147, 36, 0.4),
        0 0 60px rgba(28, 122, 126, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.agb-intro-text {
    font-family: var(--font-family-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-normal);
    margin: 0;
    color: var(--agb-text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.home-agenda {
    font-family: var(--font-family-primary);
    padding: 4rem 0;
    background: var(--agb-background-dark);
    position: relative;
}

.agb-content {
    font-family: var(--font-family-primary);
    max-width: 1000px;
    margin: 0 auto;
}

/* AGB Section Cards */
.agb-section {
    font-family: var(--font-family-primary);
    background: var(--agb-background-card);
    border: 1px solid var(--agb-border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(243, 147, 36, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.agb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39324 0%, #1c7a7e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agb-section:hover {
    transform: translateX(8px);
    box-shadow: 
        0 6px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(243, 147, 36, 0.15);
    border-color: rgba(243, 147, 36, 0.4);
}

.agb-section:hover::before {
    opacity: 1;
}

/* Blur Fade Animation für Sections */
.agb-section-fade-in {
    opacity: 0;
    animation: blur-fade-in 0.6s ease forwards;
}

.agb-section:nth-child(1) { animation-delay: 0.1s; }
.agb-section:nth-child(2) { animation-delay: 0.15s; }
.agb-section:nth-child(3) { animation-delay: 0.2s; }
.agb-section:nth-child(4) { animation-delay: 0.25s; }
.agb-section:nth-child(5) { animation-delay: 0.3s; }
.agb-section:nth-child(6) { animation-delay: 0.35s; }
.agb-section:nth-child(7) { animation-delay: 0.4s; }
.agb-section:nth-child(8) { animation-delay: 0.45s; }
.agb-section:nth-child(9) { animation-delay: 0.5s; }
.agb-section:nth-child(10) { animation-delay: 0.55s; }

@keyframes blur-fade-in {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Section Header */
.agb-section-header {
    font-family: var(--font-family-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.agb-section-number {
    font-family: var(--font-family-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--agb-accent-primary);
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 147, 36, 0.15) 0%, rgba(28, 122, 126, 0.1) 100%);
    border: 2px solid var(--agb-accent-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(243, 147, 36, 0.3),
        inset 0 0 20px rgba(243, 147, 36, 0.1);
    transition: all 0.3s ease;
}

.agb-section:hover .agb-section-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
        0 0 30px rgba(243, 147, 36, 0.5),
        inset 0 0 30px rgba(243, 147, 36, 0.2);
}

.agb-section-title {
    font-family: var(--font-family-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--agb-text-primary);
    margin: 0;
    flex: 1;
}

/* Section Content */
.agb-section-content {
    font-family: var(--font-family-primary);
    color: var(--agb-text-secondary);
    line-height: 1.8;
}

.agb-content-list {
    font-family: var(--font-family-primary);
    list-style: none;
    padding: 0;
    margin: 0;
}

.agb-content-item {
    font-family: var(--font-family-primary);
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.agb-content-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--agb-accent-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.agb-section:hover .agb-content-item::before {
    transform: translateX(4px);
    color: var(--agb-accent-secondary);
}

.agb-content-paragraph {
    font-family: var(--font-family-primary);
    margin: 0;
    font-size: 1rem;
}

/* Contact Highlight Box */
.agb-contact-highlight {
    font-family: var(--font-family-primary);
    background: linear-gradient(135deg, rgba(243, 147, 36, 0.15) 0%, rgba(28, 122, 126, 0.15) 100%);
    border: 2px solid var(--agb-accent-primary);
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(243, 147, 36, 0.2),
        inset 0 0 40px rgba(243, 147, 36, 0.08);
    transition: all 0.3s ease;
}

.agb-contact-highlight:hover {
    transform: scale(1.02);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(243, 147, 36, 0.3),
        inset 0 0 60px rgba(243, 147, 36, 0.12);
}

.agb-contact-icon {
    font-family: var(--font-family-primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--agb-accent-primary);
    border-radius: 50%;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(243, 147, 36, 0.5);
    flex-shrink: 0;
}

.agb-contact-text {
    font-family: var(--font-family-primary);
    color: var(--agb-text-primary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.agb-email-link {
    font-family: var(--font-family-primary);
    color: var(--agb-accent-primary);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    position: relative;
}

.agb-email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39324 0%, #1c7a7e 100%);
    transition: width 0.3s ease;
}

.agb-email-link:hover {
    color: var(--agb-accent-secondary);
    text-shadow: 0 0 10px rgba(243, 147, 36, 0.5);
}

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

/* Back Button */
.agb-back-button-container {
    font-family: var(--font-family-primary);
    text-align: center;
    margin-top: 3rem;
}

.agb-back-button {
    font-family: var(--font-family-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(243, 147, 36, 0.2) 0%, rgba(28, 122, 126, 0.2) 100%);
    border: 2px solid var(--agb-accent-primary);
    border-radius: 0.75rem;
    color: var(--agb-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(243, 147, 36, 0.15);
}

.agb-back-button:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(243, 147, 36, 0.3) 0%, rgba(28, 122, 126, 0.3) 100%);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(243, 147, 36, 0.3);
    border-color: var(--agb-accent-secondary);
}

.agb-back-button svg {
    transition: transform 0.3s ease;
}

.agb-back-button:hover svg {
    transform: translateX(-4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-hero {
        padding: 2.5rem 0;
    }
    
    .home-hero-content {
        padding: 2rem 1.5rem;
    }
    
    .agb-main-title {
        font-size: 2rem;
    }
    
    .agb-intro-text {
        font-size: 1rem;
    }
    
    .home-agenda {
        padding: 2rem 0;
    }
    
    .agb-section {
        padding: 1.5rem;
    }
    
    .agb-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .agb-section-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .agb-section-title {
        font-size: 1.25rem;
    }
    
    .agb-contact-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .agb-back-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .agb-main-title {
        font-size: 1.75rem;
    }
    
    .agb-section:hover {
        transform: translateX(4px);
    }
}

