@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

@font-face {
    font-family: 'Book Antiqua';
    src: local('Book Antiqua'), local('BookAntiqua');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.5;
    color: rgb(55, 67, 81);
    background-color: #fff;
    font-size: 16px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #E2E2E2;
}

.logo img {
    max-width: 350px;
    height: auto;
}

nav {
    text-align: center;
    padding: 20px 0;
    margin-top: 25px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: rgb(55, 67, 81);
    text-decoration: none;
    font-family: 'Book Antiqua', serif;
    font-size: 20px;
    padding: 5px 10px;
}

.nav-menu a:hover,
.nav-menu a.active {
    text-decoration: underline;
    text-underline-offset: 10px;
}

/* Main Content */
main {
    width: 100%;
    margin: 30px auto 0 auto;
    padding: 20px;
}

/* Hero Section - Two Column Layout */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 40px;
}

.hero-content {
    background-color: #F6F6F6;
    padding: 20px 40px 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: stretch;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-images img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-images img:hover {
    transform: scale(1.1);
}

/* Oben links - Good Time Dixie (drei Musiker vor Ziegelwand) */
.hero-image-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.hero-image-wrapper:nth-child(1) img {
    object-position: center center;
}

/* Oben rechts - OK Trio (drei Männer vor modernem Gebäude) */
.hero-image-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.hero-image-wrapper:nth-child(2) img {
    object-position: center center;
}

/* Unten links - Swingende Gärtner (zwei Musiker mit rotem Auto) */
.hero-image-wrapper:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.hero-image-wrapper:nth-child(3) img {
    object-position: center center;
}

/* Unten rechts - Christmas Dixie Company (drei Weihnachtsmänner) */
.hero-image-wrapper:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.hero-image-wrapper:nth-child(4) img {
    object-position: center center;
}

.hero-content h1 {
    font-family: 'Book Antiqua', serif;
    font-size: 48px;
    font-weight: bold;
    color: rgb(55, 67, 81) !important;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
}

.hero-content .intro {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 18px;
    color: rgb(55, 67, 81);
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
}

.hero-content .contact-booking {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 18px;
    color: rgb(55, 67, 81);
    line-height: 1.5;
    margin-top: auto;
}

.hero-content .contact-booking strong {
    font-weight: bold;
}

/* Bands Section */
.bands-section {
    margin: 100px 0;
}

.bands-section h2 {
    font-family: 'Book Antiqua', serif;
    font-size: 48px;
    font-weight: bold;
    color: rgb(55, 67, 81);
    text-align: center;
    margin-bottom: 40px;
}

/* Band Items - Dark Background with White Text */
.band {
    background-color: #2c3e50;
    padding: 0;
    margin-bottom: 30px;
    color: rgb(255, 255, 255);
    display: flex;
    overflow: visible;
    height: 450px;
}

.band-content {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.band-image {
    flex-shrink: 0;
    width: 33.33%;
}

.band-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.band-text {
    flex: 1;
    width: 66.67%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    word-wrap: break-word;
}

.band h3 {
    font-size: 36px;
    font-weight: normal;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    font-family: 'Book Antiqua', serif;
}

.band .divider {
    border: none;
    border-top: 2px solid grey;
    margin: 15px 0;
    width: 100%;
}

.band p {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #E6E6E6;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-contact h2 {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: rgb(55, 67, 81);
    margin-bottom: 15px;
}

.footer-contact p {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    color: rgb(55, 67, 81);
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-nav h3 {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: rgb(55, 67, 81);
    margin-bottom: 15px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav a {
    color: rgb(55, 67, 81);
    text-decoration: none;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Page Content */
.page-content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Book Antiqua', serif;
    font-size: 48px;
    font-weight: bold;
    color: rgb(55, 67, 81);
    margin-bottom: 30px;
}

.page-content h2 {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: rgb(55, 67, 81);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content h3 {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: rgb(55, 67, 81);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-content p {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    color: rgb(55, 67, 81);
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 15px;
}

.page-content a {
    color: rgb(55, 67, 81);
    text-decoration: underline;
}

/* Pressestimmen Gallery */
.pressestimmen-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pressestimmen-item {
    width: 100%;
    overflow: hidden;
}

.pressestimmen-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.pressestimmen-item img:hover {
    transform: scale(1.1);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    margin: 0;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

.cookie-consent-text a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #cccccc;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn-accept {
    background-color: #4CAF50;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #45a049;
}

.cookie-btn-decline {
    background-color: #666666;
    color: #ffffff;
}

.cookie-btn-decline:hover {
    background-color: #555555;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 34px;
    }
    
    .bands-section h2 {
        font-size: 34px;
    }
    
    .band {
        height: auto;
        min-height: auto;
        flex-direction: column;
    }
    
    .band-content {
        flex-direction: column;
    }
    
    .band-image {
        width: 100%;
        height: 250px;
    }
    
    .band-text {
        width: 100%;
        padding: 20px;
    }
    
    .band h3 {
        font-size: 28px;
    }
    
    .band p {
        font-size: 14px;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}
