/* General Styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    width: 92%;
    padding-top: 2%;
    padding-left: 4%;
    padding-right: 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: .2em;
    background: linear-gradient(to bottom,
            /* Direction of the gradient */
            rgba(0, 0, 0, 0.5),
            /* Half-transparent black */
            rgba(0, 0, 0, 0)
            /* Fully transparent black */
        );
}


.center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.left,
.right {
    z-index: 1;
    /* Ensure these elements stay above the center element */
}



header .logo {
    color: #fff;
}

header .logo a {
    color: inherit;
    text-decoration: none;
}


header .menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

header .menu li a {
    text-decoration: none;
    color: #fff;
}

header .social-icons {
    display: flex;
    gap: 15px;
}

header .social-icons a {
    color: #fff;
    font-size: 18px;
}

header .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Section Styles */
.section-bg {
    min-height: 80vh;
    background-size: cover;
    background-position: left;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.two-column {
    padding-top: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.three-column {
    padding-top: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.column img {
    width: 100%;
    #max-width: 400px;
}

.centered-text h1 {
    font-size: 30px;
    font-weight: bold;
}

.centered-text {
    justify-content: center;
}

.right-text {
    justify-content: right;
    text-align: left;
}

.cover {
    #font-family: "Lora", serif;
    font-weight: 400;
    font-size: 55px;
    padding-top: 0px;
    margin-top: 25px;
    padding-bottom: 5px;
    margin-bottom: 0px;
}

.cover-test {
    font-size: 28px;
    padding: 2px;
    margin: 0px;
}

.concert-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.concert-table thead {
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);

}

.concert-table td {
    border: 1px solid #fff;
    padding: 10px;
    text-align: center;
}

.concert-table th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.concert-table td {
    background-color: rgba(0, 0, 0, 0.3);
}

.concert-table td a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    background-color: #f06c64;
    border-radius: 5px;
    display: inline-block;
}

/* Contact Form */
#contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form input,
#contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

#contact-form button {
    padding: 15px;
    background-color: #f06c64;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

#contact-form button:hover {
    background-color: #e05550;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    text-align: center;
    color: #fff;
}

footer .social-icons {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 0;
}

footer .social-icons a {
    text-decoration: none;
    color: #fff;
}

.footer-menu li a {
    text-decoration: none;
    color: #fff;
}


.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


button {
    transition: all .5s ease;
    color: #fff;
    border: 3px solid white;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    font-size: 17px;
    background-color: transparent;
    padding: 10px;
    outline: none;
}

button:hover {
    color: #001F3F;
    background-color: #fff;
}

button a {
    text-decoration: none;
    color: inherit;
}

/* Responsive Styles */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
        /* Center align text */
        padding-top: 20px;
        letter-spacing: .1em;
        background: linear-gradient(to bottom,
                /* Direction of the gradient */
                rgba(0, 0, 0, 0.8),
                /* Half-transparent black */
                rgba(0, 0, 0, 0.1)
                /* Fully transparent black */
            );
    }

    .menu {
        padding-inline-start: 0px;
    }

    .center {
        position: static;
        /* Remove absolute positioning */
        transform: none;
        /* Remove transform */
        margin: 5px 0;
        /* Optional margin between elements */
    }

    .left,
    .right {
        z-index: 1;
        margin: 5px 0;
        /* Optional margin between elements */
    }

    header .logo {
        font-size: 35px;
    }

    .container {
        justify-content: center;

    }

    .section-bg {
        min-height: 40vh;
    }

    .two-column {
        padding-top: 12vh;
        grid-template-columns: 1fr;
    }

    .three-column {
        padding-top: 16vh;
        grid-template-columns: 1fr;
    }

    .centered-text h1 {
        font-size: 36px;
    }

    .right-text {
        text-align: center;
    }

    .iframe-container {
        padding-bottom: 75%;
        /* 4:3 aspect ratio */
    }

    .concert-table {
        display: block;
        margin: 0 auto;
    }

    .concert-table thead {
        display: none;
    }

    .concert-table tbody,
    tr,
    td {
        padding: 15px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        border: none;

    }

}