body {
    margin: 0;
    font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #1a103d 0%, #050816 55%, #02010a 100%);
    color: #e5e5e5;
}

/* HEADER */
.top-bar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: linear-gradient(90deg, #050816, #120d2b); 
    color: #fff; 
    padding: 10px 20px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain; /* keeps aspect ratio inside the box */
}

.branding { 
    display: flex; 
    align-items: center; gap: 10px; /* space between logo and name */
}

.artist-name { 
    font-size: 1.2rem; 
    font-weight: bold; 
    color: #fff; 
}

.contact a { 
    color: #fff; 
    text-decoration: none;
} 

.contact a:hover { 
    text-decoration: underline; 
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050816;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-bar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-bar ul li a { 
    color: #e5e5e5; 
    text-decoration: none; 
    font-weight: bold;
    letter-spacing: 0.04em;
}

.nav-bar ul li a:hover { 
    color: #00f5d4; 
    text-decoration: none;
}

/* Social Icons */
.social-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;  /* keeps aspect ratio inside the box */
    margin-right: 10px;
}

/* Banner */
.banner { 
    width: 100%; 
    margin: 0 auto; /* Center the banner */ 
} 
.banner img { 
    width: 100%; /* Scale to container width */ 
    height: 100%; 
    max-height: 480px; /* Limit height */ 
    display: block; /* Removes inline spacing */ 
}

/* Profile */
.profile, .albums, .partners, .music {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background: radial-gradient(circle at top left, rgba(0,245,212,0.08), rgba(5,8,22,0.96));
    border-radius: 18px;
    border: 1px solid rgba(0,245,212,0.12);
    box-shadow: 0 24px 50px rgba(0,0,0,0.8);
}

/* Album Slider */
.album-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.album-slider img {
    width: 200px;
    border-radius: 10px;
}

/* Partner Grid */
.partner-grid {
    display: flex;              /* line up logos side by side */
    flex-wrap: wrap;            /* allow wrapping on smaller screens */
    justify-content: center;    /* center them horizontally */
    gap: 10px;                  /* 10px margin between logos */
}

.partner-grid img {
    height: 100px;              /* cap height */
    width: auto;                /* keep aspect ratio */
    border: 2px solid #ccc;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* Counters Section */
.counters {
    padding: 60px 20px;
    background: radial-gradient(circle at top, #10142a 0%, #050816 55%, #000000 100%);
    color: #fff;
    text-align: center;
}

.counters h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffcc00; /* highlight color */
}

/* Grid Layout */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.counter {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.counter:hover {
    transform: translateY(-5px);
}

.count {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffcc; /* neon accent */
    display: block;
    margin-bottom: 10px;
}

.counter p {
    font-size: 1rem;
    color: #ddd;
}

/* Contact Form */
.contact-form {
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: radial-gradient(circle at top left, rgba(0,245,212,0.08), rgba(5,8,22,0.96));
    border-radius: 18px;
    border: 1px solid rgba(0,245,212,0.12);
    box-shadow: 0 24px 50px rgba(0,0,0,0.8);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: navy;
}

.contact-form p {
    margin-bottom: 30px;
    color: #555;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: navy;
    outline: none;
}

.btn-submit {
    background: navy;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: purple;
}

/* Music Section */
.music {
    padding: 60px 20px;
    text-align: center;
}

.music h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #00f5d4;
}

.music p {
    margin-bottom: 32px;
    color: #c3c3d7;
}

/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.album-grid iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-grid iframe:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.album-item {
    text-align: center;
}

.album-item img {
    display: block;
    margin: 0 auto;
}

.album-item .release-date {
    font-size: 14px;
    color: #c3c3d7;
    margin-top: 5px;
}

.music-container {
    max-width: 1200px;
    margin: 0 auto;
}

.music-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.music-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #c3c3d7;
}

.music-section {
    margin-bottom: 50px;
    text-align: left;
}

.music-section h2 {
    font-size: 1.6rem;
}

.music-section p {
    max-width: 640px;
}

.music-placeholder {
    padding: 24px;
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.25);
    color: #c3c3d7;
    font-size: 0.95rem;
}

.single-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.single-card {
    background: radial-gradient(circle at top, rgba(0,245,212,0.06), rgba(0,0,0,0.8));
    border-radius: 14px;
    border: 1px solid rgba(0,245,212,0.28);
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0,0,0,0.65);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.single-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    border-color: #00f5d4;
}

.single-cover img {
    width: 100%;
    display: block;
}

.single-meta {
    padding: 16px 18px 18px;
}

.single-meta h3 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: #ffffff;
}

.single-date {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ea4c7;
}

@media (max-width: 768px) {
    .top-bar,
    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-icons img {
        width: 32px;
        height: 32px;
        margin-right: 6px;
    }

    .album-slider {
        flex-wrap: wrap;
        justify-content: center;
    }

    .profile, .albums, .partners, .music {
        padding: 30px 16px;
    }
}
