/* Import futuristic fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;600&display=swap');

:root {
    --primary-color: #00f5ff;
    --secondary-color: #ff00d4;
    --dark-bg: #0a0a0f;
    --light-text: #f5f5f5;
    --accent-gradient: linear-gradient(90deg, #00f5ff, #ff00d4);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

/* HEADER */
header {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.artist-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-email {
    font-size: 1rem;
    color: var(--primary-color);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(20, 20, 30, 0.9);
}

.social-icons img {
    height: 25px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--secondary-color);
}

/* BANNER */
.banner {
    width: 100%;
    max-height: 480px;     /* Limit banner section height */
    overflow: hidden;
}

.banner img {
    width: 100%;           /* Always stretch full width */
    height: auto;          /* Maintain aspect ratio */
    max-height: 480px;     /* Never exceed 480px in height */
    display: block;        /* Removes inline gaps */
}


/* ABOUT SECTION */
.about-artist {
    text-align: center;
    padding: 60px 20px;
}

.about-artist h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-artist p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
}

.about-artist .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.about-artist .btn:hover {
    transform: scale(1.05);
}

/* COUNTER SECTION */
.counter {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: rgba(15, 15, 25, 0.9);
}

.counter-box {
    text-align: center;
}

.counter-box h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
}

.counter-box p {
    font-size: 1rem;
    color: var(--light-text);
}

/* ALBUM SECTION */
.albums {
    padding: 60px 20px;
    text-align: center;
}

.albums h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.album img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.album img:hover {
    transform: scale(1.05);
}

.album p {
    margin-top: 10px;
    font-size: 1rem;
}

/* PARTNER SECTION */
.partners {
    padding: 50px 20px;
    text-align: center;
    background: rgba(20, 20, 30, 0.9);
}

.partners h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.partner-logos img {
    height: 60px;
    margin: 0 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(10, 10, 15, 0.95);
    border-top: 2px solid var(--primary-color);
    font-size: 0.9rem;
}

/* ABOUT PAGE */
.about-page {
    padding: 60px 20px;
    background: rgba(15, 15, 25, 0.9);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.about-image img {
    max-width: 350px;
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 0, 212, 0.6);
}

.about-text {
    max-width: 700px;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* JOURNEY TIMELINE */
.journey {
    padding: 60px 20px;
    text-align: center;
}

.journey h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.timeline-item {
    background: rgba(20, 20, 30, 0.9);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CONTACT PAGE */
.contact-page {
    padding: 60px 20px;
    background: rgba(15, 15, 25, 0.9);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
}

.contact-info {
    flex: 1 1 300px;
    color: var(--light-text);
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info ul {
    list-style: none;
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* CONTACT FORM */
.contact-form {
    flex: 1 1 400px;
    background: rgba(20, 20, 30, 0.9);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 0, 212, 0.4);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 6px;
    background: #111;
    color: var(--light-text);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--secondary-color);
}

.contact-form .btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form .btn:hover {
    transform: scale(1.05);
}

/* MUSIC PAGE */
.music-page {
    padding: 60px 20px;
    text-align: center;
}

.music-page h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.album {
    background: rgba(20, 20, 30, 0.9);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 0, 212, 0.4);
}

.album img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.album p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.album audio {
    width: 100%;
}

/* SPOTIFY SECTION */
.spotify-section {
    padding: 60px 20px;
    text-align: center;
    background: rgba(15, 15, 25, 0.9);
}

.spotify-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.spotify-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

