/* General Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Metal Mania', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #ff0000; /* Red color for links */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Metal Mania', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    color: #ff0000;
}

header {
    background-color: #111111;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #ff0000;
}

header img {
    width: 200px;
}

nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    margin: 0 15px;
    font-size: 18px;
}

footer {
    background-color: #111111;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #ff0000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #888888;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff0000;
}

.container {
    padding: 20px;
}

button {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-family: 'Metal Mania', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #ffffff;
    color: #ff0000;
}

hr {
    border: 0;
    height: 1px;
    background: #ff0000;
    margin: 20px 0;
}

.embed-container {
    margin: 10px;
    padding: 10px;
    display: inline-block;
}

iframe {
    width: 360px;
    height: 200px;
}

/* Specific styling for Spotify embed iframe */
.spotifyembed iframe {
    width: 100%;
    height: 352px;
    border-radius: 12px;
}

.spotifyembed {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    display: block;
}

/* Styling for map links */
.map-link {
    font-weight: bold;
    text-decoration: underline; /* Ensure it's clear that the text is a link */
    position: relative;
    display: inline-flex; /* Align items next to each other */
    align-items: center; /* Vertically align items */
}

/* Google Maps icon */
.map-link::after {
    content: url('https://www.google.com/maps/vt/icon/name=assets/icons/spotlight/spotlight_pin_v4_outline-2-medium.png,assets/icons/spotlight/spotlight_pin_v4-2-medium.png,assets/icons/spotlight/spotlight_pin_v4_dot-2-medium.png&highlight=c5221f,ea4335,b31412?scale=1');
    display: inline-block;
    margin-left: 5px; /* Space between text and icon */
    width: 14px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align the icon with the text */
}