/* ========================================
   Veltum GmbH – Stylesheet
   Markenfarben: #E5007D (Magenta), #93C01C (Grün), #1A1A18 (Schwarz)
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E5007D;
    --primary-dark: #c4006a;
    --primary-light: #f0339a;
    --secondary: #93C01C;
    --secondary-light: #CAD66F;
    --dark: #1A1A18;
    --dark-alt: #111110;
    --hover-red: #CD0011;
    --text: #555555;
    --text-dark: #333333;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-alt: #ECECEC;
    --border: #CCCCCC;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 5px;
    --radius-lg: 8px;
    --transition: 0.3s ease;
    --font-main: 'Helvetica Neue', Calibri, Arial, Helvetica, sans-serif;
    --font-heading: 'Helvetica Neue', Calibri, Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--dark);
    color: #fff;
    font-size: 0.82rem;
    padding: 6px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-label {
    font-weight: 600;
    color: var(--primary);
}

.emergency-phone {
    color: #fff;
    font-weight: 600;
}

.emergency-phone:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: #ccc;
    font-size: 0.78rem;
}

.top-bar-right a:hover {
    color: #fff;
}

/* ========================================
   Header
   ======================================== */
.header {
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 500ms, box-shadow 500ms;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    min-height: 130px;
    gap: 24px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
}

.logo-img-footer {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--bg-alt);
    border-radius: 4px;
    padding: 2px 2px 2px 10px;
    transition: all var(--transition);
    box-shadow: 3px 3px 3px rgba(0,0,0,0.15);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229,0,125,0.1);
}

.search-box input {
    border: none;
    background: transparent;
    font-size: 0.82rem;
    width: 150px;
    outline: none;
    font-family: var(--font-main);
    color: var(--text);
}

.search-btn {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 5px 14px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 600;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ========================================
   Navigation Bar
   ======================================== */
.nav-bar {
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    height: 48px;
    display: flex;
    align-items: center;
}

.nav-bar-links {
    display: flex;
    gap: 0;
    height: 100%;
}

.nav-bar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    height: 48px;
    transition: all var(--transition);
}

.nav-bar-links a:hover {
    color: var(--hover-red);
    background: rgba(255,255,255,0.4);
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* ========================================
   Hero Carousel
   ======================================== */
.hero-carousel {
    position: relative;
    height: 393px;
    overflow: hidden;
    border-bottom: 1px solid var(--primary);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 1.882em;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.059em;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.anniversary-badge,
.vcube-badge {
    display: inline-block;
    padding: 8px 28px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.15);
}

.carousel-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.4);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
    padding: 60px 0 50px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.882em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.059em;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 32px;
}

.content-text {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1em;
    color: var(--text);
    line-height: 1.3;
}

.content-text p {
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: var(--primary) !important;
    margin-top: 24px !important;
}

/* ========================================
   Service Cards
   ======================================== */
.service-cards {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.service-cards .section-title {
    text-align: center;
    margin-bottom: 48px;
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    margin: 0 auto;
}

.card-icon img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.059em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.824em;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========================================
   Event Section
   ======================================== */
.event-section {
    padding: 60px 0;
}

.event-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-left: 4px solid var(--primary);
}

.event-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.event-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.event-info {
    flex: 1;
}

.event-info h2 {
    font-family: var(--font-heading);
    font-size: 1.882em;
    font-weight: 700;
    margin-bottom: 12px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    opacity: 0.9;
    margin-bottom: 16px;
}

.event-info p {
    font-size: 1em;
    opacity: 0.85;
    line-height: 1.4;
    margin-bottom: 24px;
}

.event-visual {
    flex-shrink: 0;
}

.event-image-placeholder {
    text-align: center;
}

.event-image-label {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

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

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

.btn-spotify {
    background: #1DB954;
    color: #fff;
    border-color: #1DB954;
}

.btn-spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
    transform: translateY(-1px);
}

/* ========================================
   Podcast Section
   ======================================== */
.podcast-section {
    padding: 0 0 60px;
}

.podcast-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.podcast-icon {
    flex-shrink: 0;
}

.podcast-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.podcast-info h3 {
    font-family: var(--font-heading);
    font-size: 1.412em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.podcast-info p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.059em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-alt);
}

.contact-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text);
    border-bottom: 1px solid var(--bg-alt);
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text);
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 4px;
}

.contact-row a {
    color: var(--primary);
    font-weight: 600;
}

.contact-row a:hover {
    color: var(--hover-red);
    text-decoration: underline;
}

.contact-row.emergency {
    background: rgba(229,0,125,0.05);
    padding: 12px;
    border-radius: var(--radius);
    margin-top: 8px;
}

.emergency-text {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 48px 0 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 32px;
}

.footer-left {
    flex: 1;
    min-width: 180px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #aaa;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-center {
    flex: 1;
    min-width: 120px;
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(0.8);
}

.social-link:hover .footer-social-icon {
    filter: brightness(0) invert(1);
}

.footer-right {
    flex: 1;
    min-width: 220px;
    text-align: right;
}

.footer-address-block {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-address-block strong {
    color: #fff;
    font-size: 0.95rem;
}

.footer-address-block p {
    opacity: 0.7;
}

.footer-address-block a {
    color: var(--primary);
}

.footer-address-block a:hover {
    color: var(--primary-light);
}

.footer-address {
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.6;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .nav-bar-links a {
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .search-box input {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .nav-bar {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-bottom: 2px solid var(--primary);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 16px;
        border-radius: var(--radius);
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark);
    }

    .main-nav a:hover {
        color: var(--hover-red);
    }

    .mobile-toggle {
        display: flex;
    }

    .search-box {
        display: none;
    }

    .header-inner {
        min-height: auto;
        padding: 10px 24px;
    }

    .hero-carousel {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-content {
        flex-direction: column;
        text-align: center;
    }

    .event-info h2 {
        font-size: 1.4rem;
    }

    .event-date {
        justify-content: center;
    }

    .event-card {
        padding: 32px 24px;
    }

    .podcast-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-right {
        text-align: center;
    }

    .footer-center {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 260px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 1.3rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 20px;
    }

    .main-content {
        padding: 40px 0 30px;
    }
}
