/*-----------------------------*/
/* GENERAL */
/*-----------------------------*/
body {
	height: 100%;
    margin: 0;
	font-family: 'Arial', sans-serif;
	background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.facebook {
	height: 2vh;
	width: 2vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: #d00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*-----------------------------*/
/* TEASER GENERAL */
/*-----------------------------*/
.teaser-container {
    width: 100%;
}

.teaser-sub-cells {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.teaser-image:hover,
.teaser-cell:hover .teaser-image,
.teaser-cell-large:hover .teaser-image {
    transform: translate(-50%, -50%) scale(1.1);
    filter: brightness(50%);
}

.teaser-link {
    color: white;
    text-decoration: none;
    font-weight: 900;
    pointer-events: all;
    border: 2px solid #fff;
    padding: 5px 30px;
    min-width: 120px;
    width: auto;
    height: 46px;
    align-items: center;
    cursor: pointer;
    line-height: 50px;
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
	font-size: 20px;
	justify-content: center;
    text-align: center;
}

.teaser-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.teaser-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transition: transform 4s, filter 4s;
	cursor: pointer;
}

.teaser-link:hover {
    color: #262626;
    background-color: #fff;
}

.space-bottom {
    margin-bottom: 3px;
}

.teaser-content {
    position: absolute;
	left : 0;
	bottom: 0;
    color: white;
    padding: 128px;
    pointer-events: none;
}

@media only screen and (max-width: 768px) {
    .teaser-content {
		padding: 20px;
    }
}

.teaser-sub-title {
	font-size: 20px;
}

/*-----------------------------*/
/* TEASER CELL LARGE */
/*-----------------------------*/

.teaser-cell-large {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.teaser-title-large {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/*-----------------------------*/
/* TEASER CELL */
/*-----------------------------*/

.teaser-cell {
    flex: 0 0 calc(33.333% - 2px);    /* three times 2px is 6px, representing two white space lines with each 3px between the three sub cells */
    position: relative;
    width: 100%;
	height: 80vh;
    overflow: hidden;
    display: block;
}

@media only screen and (max-width: 1545px) {
    .teaser-cell {
		flex: 0 0 calc(50% - 1.5px);    /* two times 1.5px is 3px, representing one white space line between the two sub cells */
        width: 50%;
    }
}

@media only screen and (max-width: 1030px) {
    .teaser-cell {
		flex: 0 0 100%;
        width: 50%;
    }
}

.teaser-title {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/*-----------------------------*/
/* NAVBAR HEADER */
/*-----------------------------*/

.nav-header {
    position: fixed;
	/* position: absolute; */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    z-index: 10;
	font-size: 2vh;
}

.nav-header nav {
    position: relative; /* new: anchor for absolute child */
}

.nav-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-header li {
    margin: 0 15px;
}

.nav-header a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-header a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
    font-size: 3vh;
}

@media only screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;   /* stay on the right */
        margin-right: 20px;  /* keep spacing */
    }

    .nav-header nav {
        justify-content: space-between;  /* keep logo/center content and menu toggle separated */
    }

    .nav-header ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        align-items: center;
    }

    .nav-header ul.show {
        display: flex;
    }

    .nav-header li {
        margin: 10px 0;
    }
}


/*-----------------------------*/
/* FOOTER */
/*-----------------------------*/

.footer-bar {
	background: #333;
	color: #fff;
	align-items: right;
	padding: 5px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.footer-bar a {
	color: #fff;
}

.footer-title {
	margin-left: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #eeeeee;
}

.footers-container {
	display: flex;
	flex-flow: row wrap;
}

.footer-container {
	padding: 5px;
	width: 200px;
	height: 75px;
	background: white;
	margin: 10px;
}

.footer-link {
	width: 100%;
	height: 100%;
}

.footer-link-img {
	position: relative;
	max-width: 200px;
	max-height: 75px;
}

.footer-logo-img {
	max-width: 300px;
	max-height: 150px;
}

/*-----------------------------*/
/* TEXTWALL */
/*-----------------------------*/

.textwall-container {
	text-align: center;
	margin-top: 6vh;
	margin-left: 15%;
	margin-right: 15%;
}

@media only screen and (max-width: 1000px) {
	.textwall-container {
		margin-left: 2%;
		margin-right: 2%;
	}
}

/*-----------------------------*/
/* GALLERY */
/*-----------------------------*/

.gallery-container {
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-item {
    flex: 0 0 49.5%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1000px) {
	.gallery-item {
		flex: 0 0 100%;
	}
}

@media only screen and (max-width: 768px) {
	.gallery-container {
		margin-left: 2%;
		margin-right: 2%;
	}
}

/*-----------------------------*/
/* EHRENSCHUTZ */
/*-----------------------------*/

.ehrenschutz-container {
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (max-width: 1000px) {
	.ehrenschutz-container {
		margin-left: 2%;
		margin-right: 2%;
	}
}

.ehrenschutz-item {
    flex: 0 0 19.8%;
    box-sizing: border-box;
    margin-bottom: 10px;
	margin-right: 0.2%;
	max-height: 50vh;
}

.ehrenschutz-image-container {
    height: 80%;
	overflow: hidden;
}

.ehrenschutz-image {
    width: 300px;
    height: 400px;
}

.ehrenschutz-text {
	
}

/*-----------------------------*/
/* IMPRESSUM */
/*-----------------------------*/

.impressum-icons {
	margin-right: 8px;
	width: 20px;
}

.impressum-container {
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	text-align: left;
}

.impressum-item {
    flex: 0 0 45%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
	.impressum-item {
		flex: 0 0 100%;
	}
}

@media only screen and (max-width: 768px) {
	.impressum-container {
		margin-left: 2%;
		margin-right: 2%;
	}
}

/*-----------------------------*/
/* KARTEN */
/*-----------------------------*/

.karten-container {
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	text-align: left;
}

.karten-item {
    flex: 0 0 45%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
	.karten-item {
		flex: 0 0 100%;
	}
}

@media only screen and (max-width: 768px) {
	.karten-container {
		margin-left: 2%;
		margin-right: 2%;
	}
}

/*-----------------------------*/
/* BANDS */
/*-----------------------------*/

.band-container,
.bars-container {
    margin: 8vh auto 5vh;
    max-width: 1200px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

@media only screen and (max-width: 768px) {
.band-container,
.bars-container {
margin: 5vh auto 4vh;
}
}

.band-item,
.bar-item {
    position: relative;
    background: linear-gradient(145deg, #2c0000, #520000);
    color: #f8eaea;
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 230, 230, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.band-item:hover,
.bar-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.band-item::before,
.bar-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 126, 126, 0.18), transparent 40%),
        radial-gradient(circle at 80% 0%, rgba(255, 205, 205, 0.12), transparent 35%),
        linear-gradient(135deg, rgba(255, 230, 230, 0.18), rgba(255, 255, 255, 0.05));
    pointer-events: none;
    z-index: 0;
}

.band-item h2,
.bar-item h2 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 22px;
    color: #ffe0e0;
    position: relative;
    z-index: 1;
}

.band-item p,
.bar-item p {
    margin: 0;
    color: #f3e7e7;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.band-span,
.bar-span {
    font-size: 0.9em;
    color: #ffeaea;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 230, 230, 0.08));
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 224, 224, 0.18);
}

.band-item a,
.bar-item a {
    color: #ffd6d6;
    font-weight: 700;
}

.band-item a:hover,
.bar-item a:hover {
    text-decoration: underline;
}

/*-----------------------------*/
/* BARS */
/*-----------------------------*/


/*-----------------------------*/
/* SPONSOREN */
/*-----------------------------*/

.sponsor-container {
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	text-align: center;
}

.sponsor-item {
    flex: 0 0 20%;
    box-sizing: border-box;
    margin-bottom: 10px;
	margin-left: 5px;
	margin-right: 5px;
}

.sponsor-image img {
    max-width: 165px;
    width: 100%;
    height: auto;
    
}

@media only screen and (max-width: 768px) {
        .sponsor-container {
                margin-left: 2%;
                margin-right: 2%;
        }
}

/*-----------------------------*/
/* KARTEN 2.0 */
/*-----------------------------*/

.ticket-hero {
    margin: 10vh 10% 4vh;
    padding: 40px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a0000 60%, #5c0000 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.ticket-hero__content {
    max-width: 720px;
}

.ticket-hero__eyebrow {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ffb3b3;
}

.ticket-hero h1 {
    margin: 0 0 10px;
    font-size: 48px;
}

.ticket-hero__lead {
    margin: 0 0 18px;
    font-size: 18px;
    color: #f0e5e5;
}

.ticket-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ticket-hero__badge {
    background: #fff;
    color: #3a0000;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    min-width: 210px;
    text-align: center;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    flex: 1 1 0;
    text-align: center;
}

.ticket-button--primary {
    background: #ff3030;
    color: #fff;
    box-shadow: 0 12px 25px rgba(255, 48, 48, 0.35);
}

.ticket-button--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(255, 48, 48, 0.45);
}

.ticket-button--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.ticket-button--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.ticket-layout {
    margin: 0 10% 5vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

.ticket-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ticket-card__header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.ticket-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    color: #b30000;
    margin-bottom: 6px;
    font-weight: 700;
}

.ticket-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.ticket-column h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.ticket-column h4 {
    margin-bottom: 6px;
    color: #b30000;
}

.ticket-list {
    padding-left: 18px;
    margin: 0 0 10px;
}

.ticket-list li {
    margin-bottom: 6px;
}

.ticket-list--dates li {
    list-style-type: "🗓️ ";
    padding-left: 2px;
}

.ticket-note {
    font-size: 14px;
    color: #555;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #fff, #fff5f5);
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #f5dede;
}

.price-list span {
    color: #555;
}

.price-list strong {
    color: #b30000;
    font-size: 18px;
}

.info-card .ticket-columns {
    align-items: flex-start;
}

@media only screen and (max-width: 1100px) {
    .ticket-hero {
        margin: 12vh 4% 4vh;
    }

    .ticket-layout {
        margin: 0 4% 5vh;
    }
}

@media only screen and (max-width: 768px) {
    .ticket-hero {
        flex-direction: column;
        text-align: left;
    }

    .ticket-hero h1 {
        font-size: 36px;
    }
}
