:root {
    --background-color: #faf4e2; /* White */
    --text-color: #000000; /* Black */
    --accent-color-1: #ff8000; /* Classic Red */
    --accent-color-2: #000000; /* Vibrant Orange */
    --accent-color-3: #ff5100; /* Burnt Orange */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Neon';
    src: url('neon.ttf') format('truetype');
}

html, body {
    height: 100%;
}

body {
    background-color: var(--background-color);
    font-family: 'Roboto Serif', serif;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 1rem;
}

.band-title {
    font-family: 'Neon', cursive;
    font-size: clamp(2.5rem, 12vw, 8rem);
    font-weight: 400;
    text-align: center;
    cursor: default;
    line-height: 1.1;
    color: var(--text-color);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color-1);
}

.social-links a i {
    font-size: 36px;
}

.contact-container {
    text-align: center;
}

.contact-container h1 {
    font-family: 'Neon', cursive;
    font-size: clamp(2.5rem, 12vw, 8rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-container a {
    color: var(--text-color);
    text-decoration: none;
}

.site-footer {
    padding: 2rem 1rem;
}

.home-link a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.home-link a:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

@media (max-width: 600px) {
    .band-title .title-part-2 {
        display: block;
        text-align: center;
    }
    .social-links a i {
        font-size: 24px;
    }
}