Direkt zum Hauptinhalt

Weraldiz - Stimmen einer vergessenen Welt

/* ============================================================================ WERALDIZ LANDING PAGE STYLES A mystical landing page with neumorphic shadows, animated borders, and elegant hover effects. Features dual sun cosmology theming.

STRUCTURE:

  1. CSS Custom Properties (Variables)
  2. Animations & Keyframes
  3. Hero Section (Desktop: styled .hero-text | Mobile: styled .taudi)
  4. Magical Logo System
  5. Culture Section
  6. Feature Cards (Image reveal animations)
  7. Weraldiz Button
  8. DM Section
  9. Book Cards
  10. General Styles
  11. Dark Mode Overrides
  12. Responsive Design (1024px, 768px, 480px, 320px) ============================================================================ */

/* ============================================================================ CSS CUSTOM PROPERTIES ============================================================================ */

:root { /* Brand Colors */ --primary-color: #AFAA8C; --primary-color-hover: #BEBAA1; --primary-color-dark: #8C876C;

/* Light Mode Colors */
--text-color-light: #181926;
--background-color-light: #FFFFFF;
--content-bg-light: #F8F7F5;
--card-bg-light: #F8F7F5;
--feature-bg-light: #F8F7F5;
--dm-section-bg-light: #F8F7F5;
--border-color-light: rgba(0, 0, 0, 0.05);
--secondary-text-light: #666;
--overlay-light: rgba(239, 241, 245, 0.5);
--shadow-color-light: rgba(0, 0, 0, 0.5);

/* Dark Mode Colors */
--text-color-dark: #F8F7F5;
--background-color-dark: #181926;
--content-bg-dark: #181926;
--card-bg-dark: #181926;
--feature-bg-dark: #181926;
--dm-section-bg-dark: #181926;
--border-color-dark: #363a4f;
--border-dark-light: #363a4f;
--secondary-text-dark: #a5adcb;
--overlay-dark: rgba(17, 17, 27, 0.5);

/* Dark Mode Accents */
--dark-accent-primary: #c5c1ac;
--dark-accent-secondary: #adaa85;

/* Typography */
--font-heading: 'Cinzel', serif;
--font-body: 'Libre Baskerville', serif;

/* Shadows - Light Mode Multi-Layer */
--shadow-base-light: 
    5px 5px 20px rgba(190, 190, 190, 0.3),
    -5px -5px 20px rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.12);

--shadow-hover-light: 
    8px 8px 30px rgba(190, 190, 190, 0.4),
    -8px -8px 30px rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(175, 170, 140, 0.15);

--shadow-elevated-light:
    8px 8px 35px rgba(190, 190, 190, 0.4),
    -8px -8px 35px rgba(255, 255, 255, 0.3),
    0 14px 28px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(175, 170, 140, 0.2);

/* Shadows - Dark Mode Multi-Layer */
--shadow-base-dark: 
    5px 5px 20px rgba(11, 11, 18, 0.5),
    -5px -5px 20px rgba(24, 25, 38, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.3);

--shadow-hover-dark: 
    8px 8px 30px rgba(11, 11, 18, 0.6),
    -8px -8px 30px rgba(24, 25, 38, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(175, 170, 140, 0.15);

--shadow-elevated-dark:
    8px 8px 35px rgba(11, 11, 18, 0.7),
    -8px -8px 35px rgba(24, 25, 38, 0.4),
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(175, 170, 140, 0.15),
    0 0 50px rgba(175, 170, 140, 0.3);

/* Image Shadows */
--image-shadow-base:
    5px 5px 20px rgba(0, 0, 0, 0.25),
    -2px -2px 12px rgba(255, 255, 255, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.15);

--image-shadow-hover:
    8px 8px 30px rgba(0, 0, 0, 0.35),
    -4px -4px 20px rgba(255, 255, 255, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(175, 170, 140, 0.3);

--image-shadow-base-dark:
    5px 5px 20px rgba(0, 0, 0, 0.4),
    -2px -2px 12px rgba(255, 255, 255, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.3);

--image-shadow-hover-dark:
    8px 8px 30px rgba(0, 0, 0, 0.5),
    -4px -4px 20px rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(175, 170, 140, 0.25),
    0 0 25px rgba(175, 170, 140, 0.6);

/* Button Shadows - Neutral (works on dark images) */
--button-shadow-base:
    3px 3px 12px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(175, 170, 140, 0.2);

--button-shadow-hover:
    5px 5px 20px rgba(0, 0, 0, 0.4),
    -3px -3px 15px rgba(255, 255, 255, 0.15),
    0 6px 16px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(175, 170, 140, 0.3),
    0 0 20px rgba(175, 170, 140, 0.4);

/* Transitions */
--transition-base: all 0.4s ease;
--transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

/* Spacing */
--spacing-sm: 15px;
--spacing-md: 20px;
--spacing-lg: 30px;
--spacing-xl: 40px;

/* Border Radius */
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 12px;

/* Z-Index Layers */
--z-base: 1;
--z-content: 2;
--z-border: 3;
--z-overlay: 5;
--z-header: 10;

/* Textures */
--texture-light: url(https://weraldiz.de/uploads/images/gallery/2025-07/cream-pixels.png);
--texture-dark: url(https://weraldiz.de/uploads/images/gallery/2025-06/asfalt-light.png);

}

/* ============================================================================ ANIMATIONS & KEYFRAMES ============================================================================ */

/* Animated border pulse for mystical effect */ @keyframes border-pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* Enhanced shimmer effect for images */ @keyframes shimmer-enhanced { 0% { left: -100%; opacity: 0.7; } 100% { left: 200%; opacity: 0; } }

/* Standard shimmer */ @keyframes shimmer { 0% { left: -100%; opacity: 0.7; } 100% { left: 200%; opacity: 0; } }

/* Button shine effect */ @keyframes button-shine { 0% { transform: translateX(-100%) skewX(-20deg); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateX(200%) skewX(-20deg); opacity: 0; } }

/* Hero border pulse (mobile) */ @keyframes hero-border-pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.01); } }

/* Gentle pulse for logo */ @keyframes gentle-pulse { 0%, 100% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 8px rgba(207, 204, 186, 0.4)) drop-shadow(0 0 16px rgba(207, 204, 186, 0.2)); } 50% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(207, 204, 186, 0.5)) drop-shadow(0 0 20px rgba(207, 204, 186, 0.3)); } }

/* ============================================================================ HERO SECTION Desktop: .hero-text gets background, shadows, animated border Mobile: .hero-text is plain flex container, .taudi gets styling ============================================================================ */

.hero-section { display: flex; margin: 20px 0 40px; gap: 30px; align-items: center; }

.hero-text { flex: 1; order: 1; }

.hero-logo { flex-shrink: 0; flex-grow: 0; }

.hero-text { flex-shrink: 1; flex-grow: 1; }

/* Desktop-only hero text styling */ @media (min-width: 769px) { .hero-text { border-radius: 12px; padding: 30px; position: relative; overflow: hidden; transition: var(--transition-base); min-height: 300px; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow-base-light); will-change: transform, opacity; transform: translateZ(0); }

.hero-text:hover {
    box-shadow: var(--shadow-hover-light);
    transform: translateZ(0);
}

.hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        rgba(175, 170, 140, 0) 0%,
        rgba(175, 170, 140, 0.6) 25%,
        rgba(207, 180, 124, 0.4) 50%,
        rgba(175, 170, 140, 0.6) 75%,
        rgba(175, 170, 140, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    z-index: 1;
    animation: border-pulse 3s ease-in-out infinite;
}

html.dark-mode .hero-text {
    background: var(--feature-bg-dark);
    box-shadow: var(--shadow-base-dark);
}

html.dark-mode .hero-text:hover {
    box-shadow: var(--shadow-hover-dark);
}

}

.hero-logo { display: flex; align-items: center; justify-content: center; }

.hero-logo .magical-logo-container { width: 100%; max-width: 300px; }

.hero-text h2 { color: var(--primary-color); font-size: 1.6em; font-weight: 700; position: relative; display: inline-block; z-index: 2; margin-bottom: 20px; }

@media (min-width: 769px) { .hero-text h2::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary-color), var(--primary-color-hover)); transition: width 0.8s ease; }

.hero-text:hover .hero-text h2::after {
    width: 100%;
}

}

.taudi { border-radius: 4px; font-size: inherit; line-height: inherit; position: relative; z-index: 2; }

@media (max-width: 768px) { .taudi { position: relative; overflow: hidden; }

.taudi::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        rgba(175, 170, 140, 0) 0%,
        rgba(175, 170, 140, 0.6) 25%,
        rgba(207, 180, 124, 0.4) 50%,
        rgba(175, 170, 140, 0.6) 75%,
        rgba(175, 170, 140, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    z-index: 1;
    animation: border-pulse 3s ease-in-out infinite;
}

html.dark-mode .taudi {
    background: var(--feature-bg-dark);
}

}

/* ============================================================================ MAGICAL LOGO SYSTEM Enhanced Weraldiz Logo with softer glow and interactive elements ============================================================================ */

.magical-logo-container { position: relative; display: inline-flex; align-items: center; justify-content: center; width: auto; height: auto; margin: 0 auto; cursor: pointer; }

/* Softer background glow */ .logo-glow-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient( circle, rgba(207, 204, 186, 0.2) 0%, rgba(175, 170, 140, 0.1) 45%, rgba(190, 186, 161, 0) 70% ); border-radius: 50%; z-index: 1; opacity: 0.6; pointer-events: none; }

/* Softer aura effect */ .magical-aura { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient( circle, rgba(190, 186, 161, 0.06) 0%, rgba(207, 204, 186, 0.03) 40%, rgba(207, 204, 186, 0) 70% ); filter: blur(12px); border-radius: 50%; z-index: 0; opacity: 0.5; pointer-events: none; }

/* Enhanced logo with refined drop shadow */ .magical-logo { position: relative; z-index: 2; width: 100%; max-width: 300px; height: auto; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 8px rgba(207, 204, 186, 0.4)) drop-shadow(0 0 16px rgba(207, 204, 186, 0.2)); }

/* Optional: Floating runes effect */ .magical-logo-container::before, .magical-logo-container::after { content: ''; position: absolute; width: 4px; height: 4px; background: radial-gradient(circle, rgba(207, 204, 186, 0.8) 0%, transparent 70%); border-radius: 50%; opacity: 0; pointer-events: none; z-index: 0; }

.magical-logo-container::before { top: 20%; left: 15%; }

.magical-logo-container::after { bottom: 25%; right: 20%; }

/* Enhanced mobile interactions / @media (max-width: 768px) { / Simplify floating runes on mobile */ .magical-logo-container::before, .magical-logo-container::after { display: none; } }

/* ============================================================================ CULTURE SECTION ============================================================================ */

.culture-section-title { text-align: center; margin: 50px 0 40px; font-size: 1.8em; color: var(--primary-color); position: relative; }

.culture-section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-color), transparent); }

.culture-container { margin: 50px 0; width: 100%; position: relative; background: var(--feature-bg-light); border-radius: 12px; }

.culture-left .culture-feature { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }

.culture-right .culture-feature { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; }

.culture-feature { background: var(--texture-light) repeat; border-radius: 12px; padding: 30px; box-shadow: var(--shadow-base-light); position: relative; overflow: hidden; transition: var(--transition-base); will-change: transform, opacity; transform: translateZ(0); }

.culture-container:hover .culture-feature { box-shadow: var(--shadow-hover-light); }

.culture-feature::before { content: ''; position: absolute; inset: 0; border-radius: 12px; padding: 2px; background: linear-gradient( 45deg, rgba(175, 170, 140, 0) 0%, rgba(175, 170, 140, 0.6) 25%, rgba(207, 180, 124, 0.4) 50%, rgba(175, 170, 140, 0.6) 75%, rgba(175, 170, 140, 0) 100% ); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.7; z-index: 1; animation: border-pulse 3s ease-in-out infinite; }

.culture-container:hover .culture-feature::before { opacity: 1; animation: border-pulse 2s ease-in-out infinite; }

.culture-container:hover .culture-image-container { transform: scale(1.05) translateZ(0); }

.culture-content { position: relative; z-index: 2; will-change: transform, opacity; transform: translateZ(0); }

.culture-content h4 { margin-top: 0; margin-bottom: 20px; font-size: 1.4em; color: var(--primary-color); font-weight: 700; position: relative; display: inline-block; }

.culture-content h4::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary-color), var(--primary-color-hover)); transition: width 0.8s ease; }

.culture-container:hover .culture-content h4::after { width: 100%; }

.culture-content p { margin-bottom: 15px; line-height: 1.6; position: relative; transition: color 0.3s ease; }

.culture-question { font-weight: 900; font-style: italic; }

.culture-container:hover .culture-content p { color: inherit; text-shadow: 0 0 3px rgba(175, 170, 140, 0.2); }

.culture-image-container { min-height: 350px; border-radius: 12px; background-size: cover; background-position: center; background-repeat: no-repeat; filter: sepia(15%) saturate(85%) brightness(1.05); transition: var(--transition-smooth); position: relative; overflow: hidden; box-shadow: var(--image-shadow-base); transform: translateZ(0); backface-visibility: hidden; border: 1px solid transparent; }

.culture-right:hover .culture-image-container { filter: sepia(5%) saturate(100%) brightness(1.1); box-shadow: var(--image-shadow-hover); transform: scale(1.05) rotate(-3deg) translateZ(0) !important; border: 1px solid var(--primary-color); }

.culture-left:hover .culture-image-container { filter: sepia(5%) saturate(100%) brightness(1.1); box-shadow: var(--image-shadow-hover); transform: scale(1.05) rotate(3deg) translateZ(0) !important; border: 1px solid var(--primary-color); }

.culture-image-container::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100% ); transform: skewX(-25deg); opacity: 0; transition: opacity 0.3s ease; }

.culture-container:hover .culture-image-container::after { opacity: 1; animation: shimmer-enhanced 3s infinite; }

/* Culture Background Images */ .kulturen-image { background-image: url('https://weraldiz.de/uploads/images/gallery/2026-02/valgerd-s.webp'); background-position: 50% 0%; }

.kosmologie-image { background-image: url('https://weraldiz.de/uploads/images/gallery/2026-02/tuomo02-s.webp'); background-position: 50% 0%; }

.reise-image { background-image: url('https://weraldiz.de/uploads/images/gallery/2026-02/mikel-s.webp'); background-position: 50% 0%; }

.spiritualitat-image { background-image: url('https://weraldiz.de/uploads/images/gallery/2026-02/turms-s.webp'); background-position: 50% 0%; }

.void-image { background-image: url('https://weraldiz.de/uploads/images/gallery/2026-02/veyn-s.webp'); background-position: 50% 0%; }

/* ============================================================================ FEATURE CARDS Large hero cards with image reveal animations ============================================================================ */

.feature-card { margin-top: 30px; aspect-ratio: 16/9; min-height: 300px; max-height: 500px; box-shadow: var(--shadow-base-light); transition: var(--transition-smooth); margin-bottom: 40px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--card-bg-light); border-radius: 8px; width: 100%; height: 100%; overflow: hidden; z-index: 1; padding: 20px; will-change: transform, box-shadow; transform: translateZ(0); }

.feature-card:hover { transform: translateZ(0); box-shadow: var(--shadow-elevated-light); }

.feature-card::before { content: ''; position: absolute; inset: 0; border-radius: 8px; padding: 2px; background: linear-gradient( 45deg, rgba(175, 170, 140, 0) 0%, rgba(175, 170, 140, 0.6) 25%, rgba(207, 180, 124, 0.4) 50%, rgba(175, 170, 140, 0.6) 75%, rgba(175, 170, 140, 0) 100% ); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.7; z-index: 5; animation: border-pulse 3s ease-in-out infinite; }

.feature-card:hover::before { opacity: 1; animation: border-pulse 2s ease-in-out infinite; }

.feature-bg-layer { position: absolute; inset: 0; overflow: hidden; z-index: 0; border-radius: 8px; pointer-events: none !important; }

.feature-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.25); z-index: 2; pointer-events: none !important; }

.feature-img-primary { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 8px; filter: blur(0px); transition: filter 1s ease; pointer-events: none !important; }

.feature-img-secondary { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 8px; filter: blur(6px); transition: filter 2.2s ease; pointer-events: none !important; }

.feature-img-reveal { position: absolute; inset: 0; clip-path: circle(0% at 50% 50%); transition: clip-path 1.8s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 8px; pointer-events: none !important; }

.feature-card:hover .feature-img-reveal { clip-path: circle(150% at 50% 50%); }

.feature-card:hover .feature-img-secondary { filter: blur(0); }

.feature-card:hover .feature-img-primary { filter: blur(4px); }

.feature-img-primary::after, .feature-img-secondary::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100% ); transform: skewX(-25deg); opacity: 0; transition: opacity 0.2s ease; border-radius: 8px; }

.feature-card:hover .feature-img-primary::after, .feature-card:hover .feature-img-secondary::after { opacity: 1; animation: shimmer 3s infinite; z-index: 3; border-radius: 8px; }

.feature-content { position: relative; z-index: 10 !important; max-width: 600px; margin: auto; pointer-events: auto !important; }

.feature-content .weraldiz-button { position: relative; z-index: 99 !important; pointer-events: auto !important; }

#main-content .feature-heading { color: var(--dark-accent-primary) !important; font-size: 1.8em; font-weight: 700; position: relative; overflow: hidden; border-radius: 8px; margin: 0 !important; }

.feature-paragraph { color: #FFF !important; position: relative; overflow: hidden; border-radius: 8px; }

.bookshelve-card .feature-paragraph { top: -20%; }

.feature-heading::after, .feature-paragraph::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(207, 180, 124, 0.2), transparent); transform: translateX(-100%); transition: transform 0s; border-radius: 8px; }

.feature-card:hover .feature-heading::after, .feature-card:hover .feature-paragraph::after { transform: translateX(100%); transition: transform 3.5s ease; border-radius: 8px; }

.kosmos-card .feature-heading::after, .kosmos-card .feature-paragraph::after { background: linear-gradient(90deg, transparent, rgba(140, 180, 230, 0.2), transparent); }

/* ============================================================================ WERALDIZ BUTTON Enhanced button with layered shadows and refined glow (no lift) ============================================================================ */

.weraldiz-button { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%); color: var(--text-color-light); font-weight: 700; font-family: var(--font-heading); font-size: 1rem; border-radius: 6px; box-shadow: var(--button-shadow-base); transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none !important; width: 100%; z-index: 4; border: 1px solid transparent; }

.weraldiz-button:hover { background: linear-gradient(135deg, var(--primary-color-hover) 0%, var(--primary-color) 100%); color: var(--text-color-light); box-shadow: var(--button-shadow-hover); border: 1px solid rgba(175, 170, 140, 0.3); }

.weraldiz-button:hover .button-glow { opacity: 0.6; }

.weraldiz-button::after { content: ""; position: absolute; inset: 0; background: linear-gradient( 120deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 55%, transparent 100% ); border-radius: inherit; opacity: 0; transition: opacity 0.3s; pointer-events: none; }

.weraldiz-button:hover::after { opacity: 1; animation: button-shine 1.5s ease-out infinite; }

.weraldiz-button::before { content: ""; position: absolute; inset: -1px; background: linear-gradient( 45deg, rgba(207, 204, 186, 0.3) 0%, rgba(175, 170, 140, 0.5) 25%, rgba(207, 180, 124, 0.3) 50%, rgba(175, 170, 140, 0.5) 75%, rgba(207, 204, 186, 0.3) 100% ); border-radius: inherit; z-index: -1; opacity: 0; transition: opacity 0.4s ease; }

.weraldiz-button:hover::before { opacity: 1; }

/* ============================================================================ DM (DUNGEON MASTER) SECTION ============================================================================ */

.dm-container { margin: 40px 0; }

.dm-section { padding: 30px; border-radius: 12px; background: var(--dm-section-bg-light) var(--texture-light) repeat; box-shadow: var(--shadow-base-light); position: relative; overflow: hidden; transition: var(--transition-base); will-change: transform, opacity; transform: translateZ(0); }

.dm-section:hover { box-shadow: var(--shadow-hover-light); transform: translateZ(0); }

.dm-section::before { content: ''; position: absolute; inset: 0; border-radius: 12px; padding: 2px; background: linear-gradient( 45deg, rgba(175, 170, 140, 0) 0%, rgba(175, 170, 140, 0.6) 25%, rgba(207, 180, 124, 0.4) 50%, rgba(175, 170, 140, 0.6) 75%, rgba(175, 170, 140, 0) 100% ); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.7; z-index: 1; animation: border-pulse 3s ease-in-out infinite; }

.dm-section:hover::before { opacity: 1; animation: border-pulse 2s ease-in-out infinite; }

.dm-heading { margin-top: 0; margin-bottom: 20px; font-size: 1.4em; color: var(--primary-color); font-weight: 700; position: relative; display: inline-block; z-index: 2; }

.dm-heading::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary-color), var(--primary-color-hover)); transition: width 0.8s ease; }

.dm-section:hover .dm-heading::after { width: 100%; }

.dm-content { display: flex; align-items: center; gap: 20px; position: relative; z-index: 2; }

/* ============================================================================ BOOK CARDS ============================================================================ */

.book-card { border: 1px solid var(--border-color-light); border-radius: 8px; padding: 20px; background: var(--card-bg-light); box-shadow: 3px 3px 15px rgba(190, 190, 190, 0.3), -3px -3px 15px rgba(255, 255, 255, 0.2), 0 3px 8px rgba(0, 0, 0, 0.12); transition: box-shadow 0.3s ease; }

.book-card:hover { box-shadow: 5px 5px 20px rgba(190, 190, 190, 0.4), -5px -5px 20px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(175, 170, 140, 0.15); }

/* ============================================================================ GENERAL STYLES ============================================================================ */

h1#bkmrk-page-title { text-align: center; margin-bottom: 40px; }

.footer { margin-top: 40px; padding: 30px 0 30px 0; text-align: center; font-size: 0.9em; color: inherit; }

/* ============================================================================ DARK MODE OVERRIDES ============================================================================ */

html.dark-mode .culture-feature { box-shadow: var(--shadow-base-dark); }

html.dark-mode .culture-feature:hover { box-shadow: var(--shadow-hover-dark); }

html.dark-mode .culture-container { background: var(--feature-bg-dark); border-radius: 12px; }

html.dark-mode .culture-feature { background: var(--texture-dark) repeat; background-size: 150px; border-color: var(--primary-color); }

html.dark-mode .culture-content h4 { color: var(--primary-color); }

html.dark-mode .culture-image-container { box-shadow: var(--image-shadow-base-dark); }

html.dark-mode .culture-container.culture-right:hover .culture-image-container, html.dark-mode .culture-container.culture-left:hover .culture-image-container { box-shadow: var(--image-shadow-hover-dark); }

html.dark-mode .feature-card { background: var(--content-bg-dark); box-shadow: var(--shadow-base-dark); }

html.dark-mode .feature-card:hover { box-shadow: var(--shadow-elevated-dark); }

html.dark-mode .feature-heading { color: var(--dark-accent-primary) !important; }

html.dark-mode .book-card { background: var(--card-bg-dark); box-shadow: 3px 3px 15px rgba(11, 11, 18, 0.5), -3px -3px 15px rgba(24, 25, 38, 0.3), 0 3px 8px rgba(0, 0, 0, 0.3); }

html.dark-mode .book-card:hover { box-shadow: 5px 5px 20px rgba(11, 11, 18, 0.6), -5px -5px 20px rgba(24, 25, 38, 0.4), 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(175, 170, 140, 0.15); }

html.dark-mode .dm-section { background: var(--dm-section-bg-dark); box-shadow: var(--shadow-base-dark); }

html.dark-mode .dm-section:hover { box-shadow: var(--shadow-hover-dark); }

html.dark-mode .dm-heading { color: var(--primary-color); }

html.dark-mode .taudi { background: var(--feature-bg-dark); }

/* ============================================================================ RESPONSIVE - TABLET (1024px) ============================================================================ */

@media (max-width: 1024px) { .feature-card { aspect-ratio: 4/3; min-height: 250px; max-height: 400px; }

.feature-img-primary {
    object-position: center 25%;
}

.feature-img-secondary {
    object-position: center 30%;
}

.kosmos-card .feature-img-primary {
    object-position: center 20%;
}

.kosmos-card .feature-img-secondary {
    object-position: center 30%;
}

}

/* ============================================================================ RESPONSIVE - MOBILE (768px) ============================================================================ */

@media (max-width: 768px) { h1#bkmrk-page-title { font-size: 1.2em !important; font-weight: 600 !important; line-height: 1.3 !important; text-align: center !important; margin: 15px 0 10px 0 !important; padding: 0 15px !important; color: var(--primary-color) !important; font-family: var(--font-heading) !important; letter-spacing: 0.5px; display: none !important; }

.hero-section {
    flex-direction: column;
    gap: 15px;
    margin: 10px 0 25px;
    align-items: center;
}

.hero-text {
    order: 2;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.hero-logo {
    width: 100% !important;
    order: 1;
}

.logo-scale,
.logo-rotate,
.logo-inner {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.hero-logo .magical-logo-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px auto;
    position: relative;
    background-image: url('https://weraldiz.de/uploads/images/gallery/2026-02/kosmos-header-s.webp');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 0 30px #000000aa;
    padding: 30px;
    overflow: hidden;
}

.hero-logo .magical-logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    z-index: 1;
}

.hero-logo .magical-logo-container > * {
    position: relative;
    z-index: 2;
}

.magical-logo {
    max-width: 150px !important;
    width: auto !important;
    height: auto !important;
    filter: drop-shadow(0 0 3px rgba(207, 204, 186, 0.4));
}

.logo-glow-background,
.magical-aura {
    opacity: 0.6;
}

.hero-text .taudi {
    background: var(--feature-bg-light);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 0 20px -10px var(--shadow-color-light);
    font-size: inherit;
    line-height: inherit;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 400;
    color: inherit;
    position: relative;
    overflow: hidden;
}

html.dark-mode .hero-text .taudi {
    background: var(--feature-bg-dark);
}

.culture-section-title {
    font-size: 1.5em;
    margin: 30px 0 25px;
}

.culture-container {
    margin: 25px 0;
}

.culture-left .culture-feature,
.culture-right .culture-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

.culture-content {
    width: 100%;
    text-align: center;
    order: 1;
}

.culture-image-container {
    width: 100%;
    min-height: 350px;
    margin: 0;
    order: 2;
}

.culture-content h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.culture-content p {
    font-size: 0.95em;
    margin-bottom: 12px;
}

.feature-card {
    aspect-ratio: 16/10 !important;
    min-height: 200px !important;
    max-height: 300px !important;
    margin: 20px 0;
    height: 100% !important;
    padding: 15px !important;
}

.feature-img-primary,
.feature-img-secondary {
    object-fit: cover !important;
    object-position: center 30% !important;
    transform: none !important;
    top: 0 !important;
}

.kosmos-card .feature-img-primary,
.kosmos-card .feature-img-secondary {
    object-fit: cover !important;
    object-position: center 25% !important;
    transform: none !important;
    top: 0 !important;
}

.feature-content {
    max-width: 95% !important;
    padding: 10px;
    z-index: 10 !important;
}

.feature-heading {
    display: block !important;
    font-size: 1.4em !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.feature-paragraph {
    font-size: 0.9em !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    top: 0 !important;
}

.bookshelve-card .feature-paragraph {
    top: 0 !important;
    margin-bottom: 20px !important;
    font-size: 0.95em !important;
    line-height: 1.5 !important;
}

.hero-section + .culture-section-title {
    margin-top: 30px;
}

.magical-logo-container {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.magical-logo-container:active {
    transform: scale(0.98);
}

.hero-text .taudi:active {
    transform: scale(0.99);
    transition: transform 0.1s ease;
}

.culture-feature::before {
    display: none;
}

.culture-feature:hover {
    transform: none;
}

.culture-image-container::after {
    display: none;
}

.dm-content {
    flex-direction: column;
    align-items: flex-start;
}

html.dark-mode .hero-logo .magical-logo-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        rgba(175, 170, 140, 0) 0%,
        rgba(175, 170, 140, 0.6) 25%,
        rgba(207, 180, 124, 0.4) 50%,
        rgba(175, 170, 140, 0.6) 75%,
        rgba(175, 170, 140, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    z-index: 3;
    pointer-events: none;
    animation: hero-border-pulse 3s ease-in-out infinite;
}

html.dark-mode .hero-logo .magical-logo-container {
    box-shadow: 0 0 30px #000000aa;
    transition: box-shadow 0.8s ease;
}

html.dark-mode .hero-logo .magical-logo-container:hover {
    box-shadow: 0 0 30px #000000bb, 0 0 50px rgba(175, 170, 140, 0.5);
}

html.dark-mode .hero-logo .magical-logo {
    filter: drop-shadow(0 0 8px rgba(207, 204, 186, 0.7));
    transition: filter 0.5s ease;
}

html.dark-mode .hero-logo .magical-logo-container:hover .magical-logo {
    filter: drop-shadow(0 0 12px rgba(207, 204, 186, 0.9));
}

}

/* ============================================================================ RESPONSIVE - SMALL MOBILE (480px) ============================================================================ */

@media (max-width: 480px) { h1#bkmrk-page-title { font-size: 1.1em !important; margin: 10px 0 8px 0 !important; }

.hero-logo .magical-logo-container {
    height: 120px !important;
}

.magical-logo {
    max-width: 120px !important;
}

.hero-text .taudi {
    padding: 15px;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.hero-section {
    gap: 12px;
    margin: 8px 0 20px;
}

.culture-container {
    margin: 20px 0;
}

.culture-feature {
    padding: 15px;
}

.culture-content h4 {
    font-size: 1.2em;
    margin-bottom: 12px;
}

.culture-content p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.culture-image-container {
    min-height: 300px;
}

.culture-section-title {
    font-size: 1.3em;
    margin: 25px 0 20px;
}

.feature-card {
    aspect-ratio: 3/2 !important;
    min-height: 180px !important;
    max-height: 250px !important;
}

.feature-img-primary,
.feature-img-secondary {
    object-position: center 35% !important;
}

.kosmos-card .feature-img-primary,
.kosmos-card .feature-img-secondary {
    object-position: center 30% !important;
}

.feature-heading {
    font-size: 1.2em !important;
}

.feature-paragraph {
    font-size: 0.85em !important;
}

}

/* ============================================================================ RESPONSIVE - EXTRA SMALL MOBILE (320px) ============================================================================ */

@media (max-width: 320px) { h1#bkmrk-page-title { font-size: 1em !important; padding: 0 10px !important; }

.hero-logo .magical-logo-container {
    height: 100px !important;
    padding: 20px;
}

.magical-logo {
    max-width: 100px !important;
}

.hero-text .taudi {
    padding: 12px;
    font-size: 0.85em;
    margin: 0 5px 8px 5px;
}

.culture-feature {
    padding: 12px;
}

.culture-content h4 {
    font-size: 1.1em;
}

.culture-content p {
    font-size: 0.85em;
}

.culture-section-title {
    font-size: 1.2em;
    margin: 20px 0 15px;
}

.feature-card {
    min-height: 160px !important;
    max-height: 220px !important;
}

}