/* General Section Styling */
section {
    padding: 60px 20px;
    text-align: center;
}

/* About Section - White Background with Dark Blue Text */
.about-section {
    background-color: #FFFFFF; /* White Background */
    color: #0A1F44; /* Dark Blue Text */
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    color: #0056b3; /* Deep Blue Headings */
}

.about-section p {
    color: #003d82; /* Dark Blue Paragraphs */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Oktoberfest Vibe - Light & Friendly */
.oktoberfest-section {
    background-color: #009EE3; /* Light Oktoberfest Blue */
    color: #FFFFFF; /* White Text */
}

.oktoberfest-section h2,
.oktoberfest-section p {
    color: #FFFFFF;
}

/* Vintage Bierhaus - Warm & Textured */
.bierhaus-section {
    position: relative;
    background: url('../img/timber.jpg') no-repeat center center;
    background-size: cover;
    color: #F5E6C8; /* Cream Text */
}

/* Dark overlay for better readability */
.bierhaus-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Ensure text stays above overlay */
.bierhaus-section * {
    position: relative;
    z-index: 1;
}


/* Contact Section - Darker Hero Background */
#contact {
    margin-bottom: 0; /* Removes any gap before the footer */
    position: relative;
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    color: white; /* Keeps text white */
}

/* Dark Overlay */
#contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Darkens background without affecting text */
}

/* Ensure text stays above the overlay */
#contact * {
    position: relative;
    z-index: 1;
}


/* Lineups Section */
.lineup {
    margin-top: 30px;
}

.lineup-img {
    width: 100%;
    max-width: 200px; /* Ensures square image */
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px; /* Slight rounded edges */
}




/* Default Divider - White */
.section-divider {
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 10px auto 30px;
}

/* Blue Divider for About Sections */
.about-section .section-divider {
    background-color: #0056b3 !important; /* Deep Blue */
}
/* Keep the Corporate Section Divider White */
.corporate-section .section-divider {
    background-color: white !important;
}



/* Testimonial Block */
.testimonial {
    background: rgba(0, 0, 0, 0.05); /* Light transparency for contrast */
    padding: 20px; /* Inner spacing to prevent text from touching edges */
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Column Layout Adjustments */
.row {
    display: flex;
    justify-content: space-between;
}

/* Add spacing inside the testimonial container without increasing width */
.testimonial-content {
    padding: 15px; /* Ensures spacing inside the div */
}


/* Responsive Grid for Testimonials */
@media (min-width: 992px) {
    .testimonial {
        margin: 10px; /* Space between items */
    }
}

/* Testimonial Header */
.testimonial h3 {
    font-size: 1.6rem;
    color: #141f34; /* Dark Blue */
    margin-bottom: 10px;
}

/* Star Rating */
.stars {
    font-size: 1.5rem;
    color: #FFD700; /* Gold stars */
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* Testimonial Quote */
.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
}

/* Testimonial Author (Right-Aligned in a Different Font) */
.testimonial-author {
    font-size: 1rem;
    font-family: "Merriweather", serif;
    text-align: right;
    font-weight: bold;
    color: #0056b3; /* Deep Blue */
    margin-top: 15px;
}

/* Responsive Grid for Testimonials */
@media (max-width: 991px) {
    .testimonial {
        margin-bottom: 20px; /* Adds spacing between stacked items on smaller screens */
    }
}


/* Corporate Clients Section */
.corporate-section {
    background-color: #141f34; /* Dark Blue Background */
    padding: 30px;
    border-radius: 10px; /* Matches testimonial box shape */
    margin-top: 40px;
    text-align: center;
}

/* Corporate Title */
.corporate-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

/* Corporate Logos Container */
.corporate-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Box */
.client-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .corporate-logos .col-md-6 {
        text-align: center;
    }
}



/* Contact Section */
.contact-section {
    position: relative;
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 50px 0;
}

/* Contact Form */
.contact-form {
    max-width: 900px; /* Makes the form wider */
    margin: 0 auto;
}

/* Default Input & Textarea Styles */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 3px solid transparent; /* Invisible border to maintain size */
    font-size: 1.1rem;
    font-family: 'Germania One', sans-serif;
    transition: border-color 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Bold Gold Border on Focus (Thicker, No Glow) */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input[type="date"]:focus {
    border-color: #FFD700; /* Gold Border */
    border-width: 3px; /* Slightly thicker */
    outline: none;
    transition: border-color 0.2s ease-in-out, border-width 0.4s ease-in-out;
}

/* Two-column Layout Fix */
.contact-form .row .col-lg-6 {
    padding: 0 15px;
}

/* Adjustments for Date Picker */
.contact-form input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
}

/* Full-width Notes Field */
.contact-form textarea {
    width: 100%;
    resize: none;
}

/* Submit Button */
.contact-form button {
    width: auto;
    padding: 12px 30px;
}

/* Placeholder Text - Faded */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: 'Germania One', sans-serif;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.4); /* Faded near-black */
}

/* Typed Text - Full Black */
.contact-form input,
.contact-form textarea {
    font-family: 'Germania One', sans-serif;
    font-size: 1.1rem;
    color: black; /* Fully black when user types */
}

/* Fix Chrome Date Picker Text Color */
.contact-form input[type="date"] {
    font-family: 'Germania One', sans-serif;
    color: black !important; /* Fully black when selected */
}



/* Contact Info */
.contact-info {
    margin-top: 40px;
}

/* Contact Box */
.contact-box {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

/* Contact Icons */
.contact-icon {
    font-size: 2.5rem; /* Make icons bigger */
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
}

/* Contact Info Links */
.contact-box a {
    font-family: 'Germania One', sans-serif;
    font-size: 1.5rem; /* Bigger text */
    font-weight: bold;
    color: white;
    text-decoration: none; /* Remove underline */
}

.contact-box a:hover {
    color: #FFD700; /* Gold hover effect */
}

/* Mini Logo in Contact Section */
.contact-logo {
    text-align: center;
    margin-bottom: 20px; /* Space below the logo */
}

.contact-logo img {
    max-width: 300px; /* Smaller version of the hero logo */
    height: auto;
}




/* Listen Section Audio Players */
.audio-player {
    background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Track Titles */
.audio-player h3 {
    font-size: 1.4rem;
    font-family: 'Germania One', sans-serif;
    color: white;
    margin-bottom: 10px;
}

/* Audio Player Styling */
.audio-player audio {
    width: 100%;
    max-width: 300px;
    filter: invert(1); /* Makes it match the theme (light on dark) */
}


/* Listen Section Intro Text */
.listen-intro {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    max-width: 800px;
    margin: 0 auto 30px;
}



/* Hidden real date input until activated */
.real-date-input {
    display: none;
    width: 100%;
    padding: 12px;
    font-family: 'Germania One', sans-serif;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 2px solid transparent;
    color: black;
}

/* Fake input to simulate placeholder */
.fake-date-input {
    width: 100%;
    padding: 12px;
    font-family: 'Germania One', sans-serif;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 2px solid transparent;
    color: rgba(0, 0, 0, 0.49);
    background-color: white;
    cursor: text;
}

/* Scrolling Logo Section */
.scrolling-logos {
    height: 150px;
    background-color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid #eee; /* Removed top border */
}

/* Wrapper hides overflow */
.scrolling-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Scrolling Track */
.scrolling-track {
    display: flex;
    flex-wrap: nowrap;               /* Prevent images from wrapping */
    animation: scroll-logos 15s linear infinite;
    align-items: center;
    white-space: nowrap;             /* Prevent stacking */
}

/* Logo images */
.scrolling-track img {
    height: 100px;
    width: auto;
    margin-right: 40px;
    flex-shrink: 0;
}

/* Scroll animation */
@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scrolling-track {
        animation: scroll-logos 6s linear infinite;
    }
}



.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.event-card h3 {
    font-family: 'Germania One', sans-serif;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.event-card p {
    color: white;
    font-size: 1rem;
    margin: 0;
}


.event-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}
