:root {
    --bg: #0d0d0f;
    --bg-alt: #15151a;
    --text: #f2f2f2;
    --muted: #b3b3b3;
    --accent: #ff3b9b;   /* rosa */
    --accent2: #ff6fc4;  /* ljusare rosa */
    --border: #2a2a33;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #20202a 0, #050509 55%);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent2);
}

/* NAV */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(5, 5, 10, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(255, 59, 155, 0.6);
}

.brand-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--accent);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    font-size: 0.95rem;
}

nav a {
    position: relative;
    padding-bottom: 0.2rem;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 0.2s ease-out;
}

nav a:hover::after {
    width: 100%;
}

@media (max-width: 720px) {
    .nav-container {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
    }

    nav ul {
	flex-wrap: wrap;
	gap: 0.6rem;
    }
}

/* LAYOUT */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.2rem 3rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

h1, h2, h3 {
    color: var(--accent);
}

/* HERO */

#hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 18px;
    background:
	radial-gradient(circle at top left, rgba(255, 59, 155, 0.18), transparent 55%),
	radial-gradient(circle at bottom right, rgba(255, 111, 196, 0.18), transparent 55%),
	var(--bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

#hero-left h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

#hero-left .tagline {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #111;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.7);
}

#hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    max-width: 260px;
}

@media (max-width: 860px) {
    #hero {
	grid-template-columns: minmax(0, 1fr);
	padding: 1.8rem 1.4rem;
    }

    #hero-right {
	order: -1;
    }

    #hero-left h1 {
	font-size: 2.2rem;
    }
}

@media (max-width: 520px) {
    #hero {
	padding: 1.4rem 1rem;
    }

    .hero-logo {
	width: 150px;
	height: 150px;
    }
}

/* ABOUT */

#about {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
}

#about-text p {
    margin-bottom: 0.6rem;
}

#about-text p strong {
    font-weight: 600;
}

#about-band {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
}

#about-band h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#about-band ul {
    list-style: none;
    font-size: 0.9rem;
}

#about-band li {
    margin-bottom: 0.4rem;
}

@media (max-width: 860px) {
    #about {
	grid-template-columns: minmax(0, 1fr);
    }
}

/* MUSIC */

#music-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 1.2rem 1.3rem 1.4rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

#music-card p {
    margin-bottom: 0.8rem;
}

#music iframe {
    border-radius: 12px;
    border: none;
    width: 100%;
    max-width: 100%;
}

/* GALLERY */

#gallery .section-subtitle {
    max-width: 520px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.gallery-placeholder {
    height: 120px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    padding: 0.6rem;
}

/* LIGHTBOX OVERLAY */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);

    justify-content: center;
    align-items: center;
}

/* LIGHTBOX IMAGE */
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    object-fit: contain;
}

/* BUTTONS */
.lightbox .close,
.lightbox .next,
.lightbox .prev {
    position: absolute;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 0.4rem 0.8rem;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    transition: background 0.2s;
}

.lightbox .close:hover,
.lightbox .next:hover,
.lightbox .prev:hover {
    background: rgba(255,255,255,0.2);
}

.btn-primary {
    background: var(--accent);
    color: #111;
    border: 1px solid var(--accent);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #111;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-secondary {
    background: #111;
    color: var(--accent);
    border: 1px solid var(--accent);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #111;
}

.btn-primary,
.btn-secondary,
.lyrics-link {
    border: 2px solid var(--accent);
    border-radius: 12px;
    outline: 2px solid rgba(255, 59, 155, 0.5);
    outline-offset: -4px;
}

.btn-primary:hover,
.btn-secondary:hover,
.lyrics-link:hover {
    box-shadow: 0 0 25px rgba(255, 59, 155, 1);
}

/* Placering */
.lightbox .close {
    top: 20px;
    right: 30px;
}

.lightbox .next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* LYRICS */

#lyrics-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.lyrics-icon {
    font-size: 1.6rem;
}

.lyrics-text {
    flex: 1 1 220px;
    font-size: 0.95rem;
}

.lyrics-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    background: #111;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lyrics-link:hover {
    background: var(--accent);
    color: #111;
}


/* CONTACT */

#contact-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 1.3rem 1.4rem;
    border: 1px solid var(--border);
}

#contact-card p {
    margin-bottom: 0.6rem;
}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.6rem;
}

.contact-email {
    font-size: 0.95rem;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.social-pill {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border);
}

.social-pill:hover {
    border-color: var(--accent);
}

@media (max-width: 720px) {
    .contact-main {
	flex-direction: column;
	align-items: flex-start;
    }
}

/* FOOTER */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 1.2rem 1.6rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}
