/* --- VARIABLES --- 
   Change these colors to match your band's branding! */
:root {
    --bg-color: #E9CDA5;
    --text-color: #472D53;
    --accent-color: #E3AE3E; /* This is the hover/highlight color */
    --btn-bg: #BC5748;
    --btn-hover: #BC5748;
}

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

body {
    /* Uses the native system font for maximum speed */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 1.5rem;
}

.container {
    width: 100%;
    max-width: 500px; /* Keeps it looking like a neat column on desktop */
    text-align: center;
}

/* --- HEADER & LOGO --- */
header {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 120px;
    height: auto;
    border-radius: 50%; /* Remove this line if your logo isn't meant to be circular */
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- LINKS --- */
.link-tree {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.link-btn {
    display: block;
    background-color: var(--btn-bg);
    color: var(--text-color);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

/* Hover effect for desktop */
.link-btn:hover {
    background-color: var(--btn-hover);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* --- FOOTER / CONTACT --- */
footer {
    border-top: 1px solid #333;
    padding-top: 2.5rem;
}

footer h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
}

.email-link:hover {
    text-decoration: underline;
}

footer p {
    font-size: 0.8rem;
    color: #333333;
}
