body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.glow-on-hover {
    width: 200px;
    height: 50px;
    border: none;
    outline: none;
    color: #ffd700;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    margin: 10px 0;
    font-size: 24px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:active:after {
    background: transparent;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.soundcloud-wrapper {
    background-color: #111;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 15px #ffd700;
    overflow: hidden;
}

.profile-img {
    max-width: 50%;
    border: 4px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 0 25px #ffd700;
    margin-bottom: 20px;
}

.bio-text {
    color: #ffd700;
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
    padding: 0 10px;
}

header {
    width: 100%;
    height: 15%;
    background-color: #000000;
    text-align: center;
    padding: 20px 0;
    color: #ffd700;
    box-sizing: border-box;
    position: fixed;
    z-index: 1;
    border-bottom: 2px solid #ffd700;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('metal.png');
    background-repeat: repeat-x;
    background-size: auto;
    background-position: top center;
}

nav {
    width: 12%;
    height: calc(100vh - 15%);
    position: fixed;
    top: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('metal.png');
    background-repeat: repeat-x;
    background-size: auto;
    background-position: top center;
    border-right: 2px solid #ffd700;
    z-index: 2;
}

section {
    margin-left: 12%;
    margin-top: 7.5%;
    height: auto;
    width: 88%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background-image: url('src/Background_1.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 12px;
    margin-left: 8%;
    width: 60%;
    min-height: 600px;
}

aside img {
    margin-top: 20px;
    width: 100%;
    height: auto;
    max-height: none;
}

.form-container {
    margin-top: 5%;
    padding: 40px;
    min-height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('src/festival.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 0 20px #ffd700;
}

form {
    background-color: #222;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px #ffd700;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

label {
    color: #ffd700;
    font-size: 16px;
}

input, select, textarea {
    padding: 10px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    background-color: #333;
    color: #ffd700;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"] {
    width: auto;
    padding: 12px 25px;
    background-color: #ffd700;
    border: none;
    color: #000000;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

input[type="submit"]:hover {
    background-color: #ff0000;
    transform: scale(0.9);
}

input[type="submit"]:active {
    background-color: #ffd700;
    transform: scale(1);
}

input[type="submit"]:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: #ffd700;
    transition: all 0.4s ease;
    border-radius: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
}

input[type="submit"]:hover:before {
    width: 0;
    height: 0;
    opacity: 1;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 15%;
    padding: 20px;
    margin-top: 10%;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 85%;
}

.image-item {
    width: calc(33.33% - 20px);
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .image-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .image-item {
        width: 100%;
    }
}
