:root {
    --burnt-orange: #d35400; /* */
    --gold: #c5a059; /* */
    --deep-teal: #001f24;
    --text-white: #ffffff;
    --charcoal: #0a0a0a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--charcoal); color: var(--text-white); scroll-behavior: smooth; overflow-x: hidden; }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); text-decoration: none; letter-spacing: 2px; font-weight: 700; }
.nav-links a { color: white; text-decoration: none; margin-left: 2rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; transition: 0.3s; }
.nav-links a:hover { color: var(--burnt-orange); opacity: 1; }

/* Sections */
section { padding: 120px 10%; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 4rem; text-align: center; color: var(--gold); }

/* Hero Section */
.hero {
    background-image: url('../img/mr-carol-city-southern-soul-miami.png'); /* */
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
}
.hero::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 650px; }
h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--gold); line-height: 1; margin-bottom: 20px; }
.tagline { color: var(--burnt-orange); font-weight: 600; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 10px; }
.hero-sub { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; font-weight: 300; }

/* Hero Buttons Alignment */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary { 
    background: var(--burnt-orange); padding: 18px 40px; color: white; text-decoration: none; 
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s ease; 
    border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: #e67e22; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }

.btn-text-link {
    color: var(--text-white); text-decoration: none; font-size: 0.85rem; font-weight: 600; 
    text-transform: uppercase; letter-spacing: 2px; position: relative; transition: 0.3s;
}
.btn-text-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0; background-color: var(--gold); transition: 0.3s; }
.btn-text-link:hover { color: var(--gold); }
.btn-text-link:hover::after { width: 100%; }

/* Music & Bio Grid Layouts */
#music { background: var(--deep-teal); }
.music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.player-card { background: rgba(0,0,0,0.4); padding: 40px; border-left: 4px solid var(--gold); }
.music-text { font-size: 1.5rem; font-family: 'Playfair Display', serif; font-style: italic; opacity: 0.9; line-height: 1.8; }

#videos { background: #000; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

#bio { background: var(--charcoal); }
.bio-flex { display: flex; gap: 80px; align-items: center; }
.bio-img { flex: 1; width: 100%; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); }
.bio-text { flex: 1.2; line-height: 1.8; font-weight: 300; }

#connect { background: var(--deep-teal); text-align: center; }
.form-container { max-width: 500px; margin: 0 auto; width: 100%; }
input[type="email"] { width: 100%; padding: 18px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: white; text-align: center; font-family: 'Inter'; }

footer { padding: 60px; text-align: center; font-size: 0.7rem; color: #444; border-top: 1px solid #111; letter-spacing: 1px; }

/* Mobile Optimization */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    .hero { background-position: 75% center; }
    .hero-btns { flex-direction: column; align-items: flex-start; gap: 20px; }
    .music-grid, .bio-flex { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
}