:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --nav-height: 70px;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    background-color: var(--background-color);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)), url('../images/crowd.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

main {
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(40, 40, 40, 0.95);
}

.glow {
    font-size: 80px;
    color: #fff;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
}
  
@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #000;
    }
    to {
        text-shadow: 0 0 2px #000;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .navbar-brand {
    font-size: 1.2rem;
    text-shadow: none;
}

.nav-link {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-link {
    font-size: 1rem;
    text-shadow: none;
}

.nav-link {
    color: var(--text-color) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    padding: 2rem;
    margin-bottom: 8vh;
}

.hero-text h1 {
    color: var(--secondary-color);
    font-size: 4rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Kalender Container Styles */
#kalender-container {
    margin-left:10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #333;
    font-family: 'Roboto', sans-serif;
    width: auto;
    max-width: none;
    line-height: 0.8em;
    font-size: 0.8em;
}

#kalender-container::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-right-color: rgba(255, 255, 255, 0.8);
    border-left: 0;
    border-bottom: 0;
    margin-top: -7.5px;
    transform: rotate(180deg);
}

#kalender-container table {
    width: 100%;
    border-collapse: collapse;
}

#kalender-container th {
    text-align: center;
    line-height: 1.7em;
    font-weight: bold;
    color: #333;
}

#kalender-container td {
    padding-bottom: 8px;
    vertical-align: top;
    color: #555;
}

#kalender-container tr:last-child td {
    padding-bottom: 0; /* No bottom padding for the last row */
}

#kalender-container .date-part {
    font-weight: bold;
    color: #d2691e;
    text-align: right;
}

#kalender-container .event-part {
    text-align: left; /* Left-align the event description */
}

/* Common section styles */
.section-header {
    text-align: center;
    padding: 60px 0 30px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Band Info Section */
.band-info {
    padding: 60px 0;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.band-info h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.band-info p {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Music Section */
.music-section {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

.music-filters {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.music-filters .d-flex {
    flex-wrap: wrap;
}

.filter-category {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width:25%;
}

.filter-category:hover {
    transform: translateY(-5px);
}

.filter-category.active {
    border-color: var(--secondary-color);
}

.filter-category i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.filter-category h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.filter-category p {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

.music-section h1 {
    text-align: center;
    padding: 60px 0;
    color: var(--secondary-color);
    font-size: 3rem;
}

.song-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.song-item:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.7);
}

.song-icon {
    font-size: 24px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-right: 20px;
    color: var(--secondary-color);
}

.song-info h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.song-info p {
    margin: 0;
    color: var(--secondary-color);
    font-style: italic;
    font-size: 0.9rem;
}

.song-item i {
    font-size: 24px;
    margin-right: 20px;
    color: var(--secondary-color);
}

/* Poster Section */
.poster-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.poster-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Page Header Images */
.page-header-image {
    max-width: 100%;
    max-height: 50vh;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Booking Section */
.booking-section {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

.booking-section h1 {
    text-align: center;
    padding: 60px 0;
    color: var(--secondary-color);
    font-size: 3rem;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.booking-info {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.booking-info h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.booking-info ul {
    list-style: none;
    margin-top: 20px;
}

.booking-info li {
    margin: 10px 0;
}

/* Contact Section */
.contact-section {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

.contact-hero {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-section h1 {
    text-align: center;
    padding: 60px 0;
    color: var(--secondary-color);
    font-size: 3rem;
}

.band-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.member {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    flex: 0 1 300px;
    min-width: 300px;
    max-width: 400px;
    margin: 0 auto;
}

.member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.member h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-details {
    list-style: none;
    margin-top: 20px;
}

.contact-details li {
    margin: 10px 0;
}

.contact-details i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.social-links a {
    color: var(--text-color);
    font-size: 24px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .navbar .container {
        position: relative;
    }

    .navbar-toggler {
        position: relative;
        z-index: 2;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 15px;
        padding: 1.2rem;
        background: rgba(40, 40, 40, 0.95);
        border-radius: 0 0 0 8px;
        min-width: 200px;
        width: auto;
    }

    .navbar-nav {
        text-align: right;
        margin: 0;
    }

    .nav-item {
        padding: 0.5rem 0;
    }
}



