body {
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.hero{
    position:relative;
    height:420px;
    background:url('/images/city-fallback.webp') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

.hero-content{
    position:relative;
    color:white;
    text-align:center;
    max-width:900px;
    width:100%;
    padding:20px;
}

.hero-content h1{
    font-size:46px;
    margin-bottom:10px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-search{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 200px;
    background:white;
    border-radius:10px;
    /*overflow:hidden;*/
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.hero-search div{
    /*display:flex; */
    align-items:center;
    /*padding:14px 16px; */
    gap:10px;
    color:#000;
}

.hero-search input{
    border:none;
    outline:none;
    font-size:16px;
    width:calc(100% - 28px);
}

.search-city{
    border-right:1px solid #eee;
}

.search-date{
    border-right:1px solid #eee;
}

.search-button {
    background: #e31c1c;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-right: -1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.search-button:hover{
    background:#c41717;
}

.city-search{
    position:relative;
    width:100%;
}

.city-input-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

#city-search{
    width:100%;
    padding:14px 40px 14px 14px;
    border:none;
    font-size:16px;
    outline:none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;    
}

.search-date input,
#artist-search{
    padding:14px;
}

.city-arrow{
    position:absolute;
    right:12px;
    cursor:pointer;
    color:#666;
}

.city-arrow:hover{
    color:#000;
}

#city-results{
position:absolute;
top:100%;
left:0;
right:0;
background:white;
border:1px solid #ddd;
border-radius:6px;
max-height:320px;
overflow-y:auto;
display:none;
z-index:9999;
}

.result-group{
display:block;
}

.result-item{
display:block;
padding:10px 14px;
cursor:pointer;
}

.result-item:hover{
background:#f5f5f5;
}

.result-title{
    font-size:13px;
    font-weight:bold;
    color:#888;
    padding:6px 14px;
}


.artist-search{
    position:relative;
}

#artist-results{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:white;
    border:1px solid #ddd;
    max-height:260px;
    overflow-y:auto;
    display:none;
    z-index:9999;
}

.artist-item{
    padding:10px 14px;
    cursor:pointer;
}

.artist-item:hover{
    background:#f5f5f5;
}



.logo img{
    max-width:250px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.event-card {
    background: white;    
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.event-card .event-image{
    height:220px;
    display:block;
    overflow:hidden;
}

.event-card img{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    object-fit:cover;
    max-width:100%;
}

.event-card .content-area{
    padding:20px 20px 10px;
}

.event-card .content-area .event-title a{
    color:#000;
    text-decoration: none;
}

.event-card .content-area .event-title{
    min-height:45px;
}


.event-card .content-area h3{
    margin-top:0;
}

.more-cities,
.more-periods{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
    margin-top:60px;
    padding-left:15px;
}

.more-cities li::marker,
.more-periods li::marker{
    color:#FF0000;
}

.more-cities li a,
.more-periods li a{
    color:#000;
    text-decoration: none;
    font-weight:600;
}

.ticket-button {
    display: inline-block;
    background-color: #d30f09;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
}

.details-area{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.details-area .more-dates{
    text-align:left;
}

.category-tabs{
    display:flex;
    gap:30px;
    border-bottom:1px solid #ddd;
    margin:40px 0;
    padding-bottom:10px;
}

.category-tabs .tab{
    text-decoration:none;
    font-weight:600;
    color:#444;
    padding-bottom:10px;
    position:relative;
}

.category-tabs .tab:hover{
    color:#e31c1c;
}

.category-tabs .tab.active{
    color:#e31c1c;
}

.category-tabs .tab.active::after{
    content:"";
    position:absolute;
    bottom:-11px;
    left:0;
    width:100%;
    height:3px;
    background:#e31c1c;
}


/* artist Detailseite */
.artist-hero{
    position:relative;
    height:280px;
    overflow:hidden;
}

.hero-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.7);
}

.hero-content-artist{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:20px;
    color:white;
    max-width:1200px;
    width:100%;
}

.artist-avatar img{
    width:120px;
    height:120px;
    border-radius:10px;
    object-fit:cover;
    border:3px solid white;
}

.hero-text h1{
    font-size:36px;
    margin:0;
}

.hero-text p{
    font-size:20px;
    margin:5px 0 0 0;
}


/* Blätterfunktion */
.pagination-wrapper{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.pagination{
    display:flex;
    gap:6px;
    justify-content:center;
}

.pagination li{
    list-style:none;
}

.page-link{
    padding:8px 14px;
    border:1px solid #ddd;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    background:#fff;
}

.page-link:hover{
    background:#f2f2f2;
}



.page-item.active .page-link{
    background:#e41e26;
    border-color:#e41e26;
    color:white;
}


.site-header {
    background:#fff;
    border-bottom:1px solid #eee;
    position:relative;
    z-index:1000;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
}

.main-nav {
    width: 100%;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content:center;
}

.logo img {
    height:40px;
}

.main-nav{
    width:100%;
}

.nav-menu{
    display:flex;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-item{
    position:relative;
}

.nav-title{
    display:block;
    padding:10px 0;
    font-weight:600;
    text-decoration:none;
    color:#222;
}

.nav-dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    border:1px solid #eee;
    min-width:200px;
    padding:10px 0;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    z-index:2000;
}

.nav-dropdown li{
    padding:6px 20px;
}

.nav-dropdown li a{
    display:block;
    padding:8px 20px;
    text-decoration:none;
    color:#333;
    transition:background 0.15s ease;
}

.nav-dropdown li:hover{
    background:#f5f5f5;
}

.nav-item:hover .nav-dropdown{
    display:block;
}




.city-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:60px;
}

.city-tile{
    position:relative;
    height:160px;
    background-size:cover;
    background-position:center;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.city-tile:hover{
    transform:scale(1.03);
}

.city-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.7)
        );
}

.city-content{
position:absolute;
bottom:18px;
left:16px;
}

.city-name{
    font-size:20px;
    font-weight:600;
    display:block;
}

.city-count{
    font-size:14px;
    opacity:0.9;
}


.city-card{
    background:#fff;
    border-radius:10px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.city-header h3{
    margin:0;
    font-size:20px;
}

.city-header small{
    color:#888;
    font-size:14px;
    margin-left:6px;
}

.city-dates{
    list-style:none;
    padding:0;
    margin:15px 0 0;
}

.city-dates.more-dates-list{
    margin-top:0;
}

.city-dates li{
    margin-bottom:6px;
}


.city-letter{
    margin-top:40px;
    margin-bottom:10px;
    font-size:22px;
    font-weight:600;
}

.city-list{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:12px;
    margin-bottom:30px;
}

.city-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:8px;
    background:#f6f6f6;
    text-decoration:none;
    color:#333;
    transition:0.2s;
}

.city-item:hover{
    background:#eee;
}

.city-crest img{
    width:32px;
    height:32px;
}

.city-name{
    display:block;
    font-weight:600;
}


.nearby-cities{
    margin-top:60px;
}

.nearby-grid{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;
}

.nearby-item{
    background:#f2f2f2;
    padding:8px 14px;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:0.2s;
}

.nearby-item:hover{
    background:#e30613;
    color:white;
}



.more-dates{
    color:#1e73be;
    font-weight:600;
    margin-top:10px;
}

.show-more-dates{
    color:#1e73be;
    cursor:pointer;
    font-weight:600;
    margin-top:20px;
}



.show-more-dates:hover{
    text-decoration:underline;
}


.city-card{
    background:#fff;
    border-radius:12px;
    padding:22px 26px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    margin-bottom:25px;
}

.city-header h3{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.city-header small{
    color:#777;
    font-size:14px;
    margin-left:8px;
}

.city-dates{
    list-style:none;
    padding:0;
    margin:0;
}

.city-navigation{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.city-nav-item{
    background:#f5f5f5;
    padding:8px 14px;
    border-radius:20px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    font-weight:500;
}

.city-nav-item:hover{
    background:#e10600;
    color:white;
}

.city-nav-item span{
    color:#777;
    margin-left:4px;
}

.city-nav-item:hover span{
    color:#FFF;
}

.event-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #f0f0f0;
}



.event-date{
    font-weight:500;
    font-size:15px;
}

.btn-ticket{
    background:#e10600;
    color:#fff;
    padding:6px 14px;
    border-radius:6px;
    font-size:13px;
    text-decoration:none;
    font-weight:500;
}

.btn-ticket:hover{
    background:#b80000;
}

.show-more-dates{
    color:#1e73be;
    font-weight:600;
    margin-top:10px;
    cursor:pointer;
}

.city-actions{
    margin-top:30px;
}

.btn-details{
    background:#f3f3f3;
    padding:7px 14px;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    font-size:14px;
}


/* Startseite */
.hero{
    height:420px;
    background:url('/images/city-fallback.webp') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
}

.search-box{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.search-box input{
    width:420px;
    padding:12px;
    border-radius:6px;
    border:none;
}

.search-box button{
    background:#e30613;
    color:white;
    padding:12px 20px;
    border:none;
    border-radius:6px;
}


.category-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    margin-bottom:40px;
}

.category-card{
    background:#f3f3f3;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.category-card:hover{
    background:#e30613;
    color:white;
}


.city-list{
    max-width:500px;
    margin:0 auto 40px auto;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.city-list a{
    background:white;
    padding:12px;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    box-shadow:0 1px 4px rgba(0,0,0,0.08);
}

.city-list a:hover{
    background:#f5f5f5;
}

.artist-grid{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-bottom:60px;
}

.artist-card{
    text-align:center;
    text-decoration:none;
    color:#333;
}

.artist-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:6px;
}


@media (max-width:768px){

.hero-search{
grid-template-columns:1fr;
}

.hero-search div{
border-right:none;
border-bottom:1px solid #eee;
}

.search-button{
padding:16px;
}

}