@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-Light.ttf") format("truetype");
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-LightItalic.ttf") format("truetype");
    font-weight: 300; /* Light */
    font-style: italic;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-LightCondensed.ttf") format("truetype");
    font-weight: 300; /* Light Condensed */
    font-style: normal;
}

@font-face {
    font-family: "Amble";
    src: url("../fonts/Amble-LightCondensedItalic.ttf") format("truetype");
    font-weight: 300; /* Light Condensed */
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Amble", "Space Mono", monospace;
    margin: 0;
    padding: 0;
    /* padding-top: 58px !important; */
    background-color: #282c34;
    color: #ffffff;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1c1e22;
    z-index: 1000;
    padding: 8px 0;
    height: 50px;
    box-sizing: border-box;
    border-bottom: 3px solid #1c1e22;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #61dafb;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

header {
    background: #1c1e22;
    position: static;
    padding: 0;
    padding-top: 50px;
    margin: 0;
    text-align: center;
    border-bottom: 3px solid #61dafb;
    width: 100%;
}
.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.top-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.head-left {
    display: flex;
    align-items: center;
}
.head-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Ensure text is centered */
}
.head-left img {
    height: 100%;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}
.head-left,
.head-right {
    padding: 10px 0;
}
h1 {
    font-size: 2.5em;
    margin: 0;
}
h2 {
    display: flex;
    align-items: center;

    font-size: 2em;
    margin: 20px 0;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

h2:before,
h2:after {
    content: "";
    flex: 1;
    /* display: inline-block; */
    /* width: 30%; */
    height: 2px;
    background: #61dafb;
    /* vertical-align: middle; */
    margin: 0 10px;
}

section,
footer {
    padding: 20px;
    margin: 20px auto;
    background: #353b45;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.members,
.songs,
.shows,
.merch {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.merch-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.merch-item {
    flex: 1 1 200px;
    max-width: 300px;
    margin: 10px;
    text-align: center;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #61dafb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}
.merch-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: contain;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.merch-container > p {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#songs,
#merch {
    text-align: center;
}
.songs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.songs iframe {
    max-width: 100%;
}
.songs > p {
    margin: 0;
    margin-top: -10px;
}
.sender-form-field {
    width: 100%;
}

.member,
.merch,
.song,
.shows {
    margin: 10px;
    flex: 1 1 200px;
    text-align: center;
}
.member img,
.merch img,
.song img {
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid #61dafb;
}
form {
    display: flex;
    flex-direction: column;
}
input,
textarea {
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #61dafb;
    border-radius: 4px;
    background: #444b52;
    color: #ffffff;
}
button {
    padding: 10px;
    background: #61dafb;
    color: #282c34;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
button:hover {
    background: #4db8e6;
}

#members {
    text-align: center;
}

a {
    text-decoration: none;
    color: #61dafb;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}

input[name="user_postcode"] {
    display: none;
}

#songs p {
    /* margin-top: 20px; */
    clear: both;
}

#about p,
#responseMessage p {
    width: 60%;
    margin: auto;
    background-color: #1e1e1e; /* Dark background */
    padding: 15px; /* Space inside each show box */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #61dafb; /* Blue border */
}

.show,
.merch,
.member {
    background-color: #1e1e1e; /* Dark background */
    padding: 15px; /* Space inside each show box */
    margin: 10px 0; /* Space between each show */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #61dafb; /* Blue border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

@media (max-width: 600px) {
    body {
        /* padding-top: 40px !important; */
    }
    header {
        padding: 8px 0;
        padding-top: 40px;
        /* margin-top: 40px; */
        top: 0;
    }
    .header-wrapper {
        padding: 0 10px;
    }
    nav {
        height: 40px;
        padding: 5px 0;
    }

    .top-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
        align-items: center;
        text-align: center;
    }
    .head-left {
        order: 1;
    }
    .head-right {
        order: 2;
        text-align: center;
    }
    h1 {
        font-size: 1.8em !important;
    }

    nav li {
        margin-right: 10px;
    }

    .head-left img {
        display: none;
        /* max-width: 60px; /* Slightly smaller logo on mobile */
        margin-bottom: 15px;
        width: auto; */
    }

    h2 {
        font-size: 1.5em; /* Adjust the font size for smaller screens */
    }
    h2:before,
    h2:after {
        width: 20%; /* Reduce line width for mobile */
    }
    .merch-item {
        max-width: 100%; /* Full width on mobile */
        flex: 1 1 100%;
    }

    .members,
    .merch .songs {
        flex-direction: column;
        align-items: center;
    }
}

p.bb {
    border-bottom: 2px solid #61dafb;
    padding-bottom: 15px;
    margin-top: 5px;
    margin-bottom: 15px;
}
