/* Information Styling */
.information {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.information_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ticket Styling */
.ticket-container {
    margin-top: 40px;
    text-align: center;
}

.tickets {
    font-family: 'Great Vibes', cursive;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.ticket {
    width: 160px;
    height: 90px;
    background-image: url('../image4.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

/* Allgemeiner Hover */
.ticket:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Pink Hover */
.ticket.ticketF:hover {
    background: linear-gradient(135deg, #ff66b3, #ff3385);
}

/* Blau Hover */
.ticket.ticketM:hover {
    background: linear-gradient(135deg, #66c2ff, #3399ff);
}

/* Abrisslinie */
.ticket::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.7) 4px,
        transparent 4px,
        transparent 8px
    );
}

/* Lochungen */
.ticket::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
    box-shadow: 160px 0 0 white;
}

.ticket span {
    position: relative;
    z-index: 2;
}

.all_infos {
    max-width: 1200px;
    margin: 80px auto;
    background: #ffffff48;
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(110, 55, 212, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

/* subtle animated gradient glow */
.all_infos::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(110,55,212,0.15), transparent 70%);
    animation: floatGlow 6s ease-in-out infinite;
}

/* ====== HEADLINE BARS ====== */
.background_all_infos_wrapper {
    background: none !important;
    margin-bottom: 35px;
    position: relative;
}

.background_all_infos_wrapper h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    color: #6e37d4 !important;
}

/* decorative line */
.background_all_infos_wrapper h3::after {
    content: "";
    display: block;
    width: 35%;
    height: 3px;
    background: #6e37d4;
    margin: 15px auto 0;
    border-radius: 5px;
}

/* ====== COLUMN LAYOUT ====== */
/* ====== TOP WRAPPER ====== */
.top_wrapper {
    display: flex;
    flex-direction: column;
}

/* Die drei Info-Absätze als Karten darstellen */
.top_wrapper > p {
    background: linear-gradient(145deg, #ffffff, #f8f6ff);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(110,55,212,0.08);
    transition: all 0.4s ease;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.top_wrapper > p > strong {
    font-family: 'Great Vibes', cursive;
    font-size: larger;
    color: #6e37d4;
    font-weight: 500;
}

/* Hover Effekt wie bei .card */
.top_wrapper > p:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(110,55,212,0.2);
}

/* Akzentlinie oben */
.top_wrapper > p:hover::before {
    left: 0;
}
.top_wrapper > p::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6e37d4, #b497ff);
    transition: 0.5s;
}

/* ====== CARDS ====== */
.cards {
    column-span: all;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(145deg, #ffffff, #f8f6ff);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(110,55,212,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6e37d4, #b497ff);
    transition: 0.5s;
}

.card:hover::before {
    left: 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(110,55,212,0.2);
}

.card h3 {
    font-family: 'Great Vibes', cursive;
    /* font-family: 'Playfair Display', serif; */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #6e37d4;
}

/* ====== CONTACT SECTION ====== */
.bottom_wrapper {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 3px solid rgba(110,55,212,0.2);
    animation: fadeIn 1.5s ease forwards;
}

.contacts p {
    font-size: 16px;
    margin: 10px 0;
}

.contacts a {
    color: #6e37d4;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.contacts a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #6e37d4;
    transition: 0.3s;
}

.contacts a:hover::after {
    width: 100%;
}

    /* ====== CONTACT WRAPPER ====== */
.bottom_wrapper {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 4px double #6e37d4;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info Text */
.bottom_wrapper > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Karten Container */
.contacts_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Einzelne Kontakt-Karte */
.contact_card {
    font-family: 'Great Vibes', cursive;
    font-size: larger;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #ffffff, #f8f6ff);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(110,55,212,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(110,55,212,0.2);
}

/* Icon Styling */
.contact_card .icon {
    font-size: 28px;
}

/* Text Styling */
.contact_card .contact_info p {
    margin: 0;
    line-height: 1.4;
}

.contact_card .contact_info strong {
    color: #6e37d4;
    font-weight: 500;
}

.contact_card a {
    color: #6e37d4;
    text-decoration: none;
    position: relative;
}

.contact_card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #6e37d4;
    transition: 0.3s;
}

.contact_card a:hover::after {
    width: 100%;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}