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

/* GLOBAL */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #0b0b0f;
    color: #f5f5f5;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.social-icons {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 109, 0.2);
}

.social-icons .icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1); /* makes icons white */
    transition: 0.3s ease;
    opacity: 0.8;
}

.social-icons .icon img:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* OPTIONAL HOVER COLORS */
.social-icons .instagram:hover img {
    filter: drop-shadow(0 0 6px #ff4d6d);
}

.social-icons .tiktok:hover img {
    filter: drop-shadow(0 0 6px #00f2ea);
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 5px rgba(255, 77, 109, 0.3); }
    50% { text-shadow: 0 0 15px rgba(255, 77, 109, 0.7); }
    100% { text-shadow: 0 0 5px rgba(255, 77, 109, 0.3); }
}

.artist-name::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    margin: 6px auto 0;
    background: linear-gradient(90deg, transparent, #ff4d6d, transparent);
}

.artist-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: glowPulse 3s infinite ease-in-out;
    font-family: 'Orbitron', sans-serif;

    background: linear-gradient(90deg, #ffffff, #ff4d6d, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 
        0 0 8px rgba(255, 77, 109, 0.4),
        0 0 16px rgba(255, 77, 109, 0.2);

    position: relative;
}

.contact a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact a:hover {
    color: #ff4d6d;
}

/* BANNER */
.banner {
    position: relative !important;
    width: 100% !important;
    height: 150px !important;
    max-height: 150px !important;
    overflow: hidden !important;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    display: block !important;
}

.banner-overlay {
    position: absolute;
    inset: 0;               /* replaces top/left/width/height */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.45);
    text-align: center;
}

.banner-overlay h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 77, 109, 0.5);
    margin-bottom: 5px;
}

.banner-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.35);

    color: #ff4d6d;
    opacity: 0.9;

    text-shadow: 0 0 8px rgba(255, 77, 109, 0.4);
}

.banner-overlay p {
    margin-top: 10px;
    color: #ff4d6d;
}

/* CONTENT */
.content {
    padding: 60px 0;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-left: 4px solid #ff4d6d;
    padding-left: 10px;
}

/* BIO */
.bio p {
    margin-bottom: 15px;
    color: #ccc;
}

/* PRE-SAVE */
.presave {
    margin-top: 40px;
}

.presave-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.presave-card {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 77, 109, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;

    backdrop-filter: blur(8px);
}

.presave-card:hover {
    transform: translateY(-5px);
    border-color: #ff4d6d;
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.2);
}

/* IMAGE */
.presave-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT */
.presave-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.release-date {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 10px;
}

/* CTA */
.cta {
    font-size: 0.75rem;
    color: #ff4d6d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: 1px solid #ff4d6d;
    color: #ff4d6d;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background: #ff4d6d;
    color: #fff;
}

/* MUSIC */
.music {
    margin-top: 50px;
}

.spotify-embed {
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    background: #050507;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #777;
    border-top: 1px solid #222;
}