:root {
    --primary: #ff3e00;
    --bg: #0a0a0a;
    --text: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    position: fixed;
    width: 80%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { color: white; text-decoration: none; font-weight: bold; }

.hero {
    height: 100 vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h1 { font-size: 5rem; margin: 0; letter-spacing: 5px; }

.section { padding: 5rem 10%; text-align: center; }

.btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333;
}

/* Contact Section Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1rem;
    color: white;
    border-radius: 5px;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.music-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Coming Soon Section */
.coming-soon-box {
    background: #111;
    border: 1px dashed #444;
    padding: 4rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.record-animation {
    font-size: 5rem;
    animation: rotate 4s linear infinite;
    display: inline-block;
    margin-bottom: 1rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pre-save {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

#newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

#newsletter-form input {
    width: 250px;
}

/* Adjust the Hero text too since you have no song yet */
.hero p {
    font-size: 1.5rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
}