/*
 Theme Name: Jstyle Portal
 Theme URI: https://jstyle.se
 Author: Jstyle
 Description: Mörkt, minimalistiskt premiumtema för Jstyle Universe.
 Version: 1.0
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #050608;
    color: #f9fafb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* Layout generellt */

.jstyle-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / footer (enkelt – du har OceanWP header utöver detta om du vill) */

.jstyle-site-footer {
    border-top: 1px solid #161921;
    padding: 18px 0 24px 0;
    margin-top: 40px;
    font-size: 12px;
    color: #9ca3af;
}

/* HERO */

.jstyle-hero {
    position: relative;
    padding: 80px 0 56px 0;
    background: radial-gradient(circle at top left, #111827 0, #050608 55%);
    border-bottom: 1px solid #161921;
}

.jstyle-hero-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, #22d3ee, #facc15, #22d3ee);
    opacity: 0.7;
    animation: jstyle-line 3s ease-in-out infinite;
}

@keyframes jstyle-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

.jstyle-portal-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.6fr);
    gap: 40px;
    align-items: flex-start;
}

/* Hero text */

.jstyle-hero-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 10px;
}

.jstyle-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.jstyle-hero-title span {
    color: #facc15;
}

.jstyle-hero-sub {
    font-size: 14px;
    color: #e5e7eb;
    max-width: 520px;
}

/* Hero highlight */

.jstyle-hero-highlight {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #1f2937;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.jstyle-hero-highlight span::before {
    content: "•";
    margin-right: 4px;
    color: #facc15;
}

/* Buttons */

.jstyle-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.jstyle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}

.jstyle-btn-primary {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #050608;
    font-weight: 600;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.jstyle-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}

.jstyle-btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border-color: #374151;
}

.jstyle-btn-secondary:hover {
    border-color: #facc15;
    color: #facc15;
    transform: translateY(-1px);
}

/* Spotify block */

.jstyle-spotify-block {
    margin-top: 28px;
}

.jstyle-spotify-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 10px;
}

.jstyle-spotify-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1f2937;
    box-shadow: 0 12px 24px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.jstyle-spotify-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.6);
    border-color: #facc15;
}

/* Portal cards (högerkolumn) */

.jstyle-portal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.jstyle-portal-card {
    display: block;
    border-radius: 16px;
    padding: 14px 14px 12px 14px;
    background: radial-gradient(circle at top left, #111827 0, #020617 65%);
    border: 1px solid #1f2937;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.25s ease;
}

.jstyle-portal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.jstyle-portal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.6);
    border-color: #facc15;
}

.jstyle-portal-card:hover::before {
    opacity: 1;
}

.jstyle-portal-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.jstyle-portal-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
}

.jstyle-portal-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5e7eb;
    opacity: 0.7;
}

.jstyle-portal-title {
    font-size: 14px;
    margin: 4px 0 2px 0;
    color: #e5e7eb;
}

.jstyle-portal-text {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 8px 0;
}

.jstyle-portal-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #facc15;          /* INGEN BLÅ – bara guld */
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.jstyle-portal-card:hover .jstyle-portal-link {
    color: #fb923c;
}

.jstyle-portal-link::after {
    content: "→";
    font-size: 10px;
}

/* Thumb i cards (om du lägger in utvalda bilder) */

.jstyle-portal-thumb {
    margin: 4px 0 6px 0;
    border-radius: 10px;
    overflow: hidden;
}

.jstyle-portal-thumb img {
    width: 100%;
    display: block;
}

/* Sektion under – “Vad Jstyle är” */

.jstyle-section {
    padding: 44px 0 34px 0;
}

.jstyle-section-header {
    margin-bottom: 20px;
}

.jstyle-section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 4px;
}

.jstyle-section-title {
    font-size: 20px;
    margin: 0 0 4px 0;
}

.jstyle-section-sub {
    font-size: 14px;
    color: #9ca3af;
    max-width: 520px;
}

/* Grid */

.jstyle-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Bottom cards */

.jstyle-card {
    border-radius: 14px;
    border: 1px solid #1f2937;
    background: radial-gradient(circle at top left, #0b1120 0, #020617 65%);
    padding: 16px 16px 14px 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.25s ease;
}

.jstyle-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.jstyle-card:hover {
    transform: translateY(-2px);
    border-color: #22d3ee;
    box-shadow: 0 12px 24px rgba(0,0,0,0.55);
}

.jstyle-card:hover::before {
    opacity: 1;
}

.jstyle-card-title {
    font-size: 15px;
    margin: 0 0 4px 0;
}

.jstyle-card-text {
    font-size: 13px;
    color: #d1d5db;
}

/* Responsivitet */

@media (max-width: 1024px) {
    .jstyle-portal-grid {
        grid-template-columns: 1.4fr 1.6fr;
        gap: 26px;
    }
}

@media (max-width: 860px) {
    .jstyle-portal-grid {
        grid-template-columns: 1fr;
    }
    .jstyle-portal-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .jstyle-portal-card {
        flex: 1 1 240px;
    }
}

@media (max-width: 640px) {
    .jstyle-hero {
        padding-top: 64px;
    }
    .jstyle-hero-title {
        font-size: 24px;
    }
    .jstyle-hero-sub {
        font-size: 13px;
    }
    .jstyle-grid-3 {
        grid-template-columns: 1fr;
    }
}
.jstyle-sub-hero {
    padding: 60px 0 60px 0;
    background: radial-gradient(circle at top left, #111827 0, #050608 55%);
}

.jstyle-sub-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.jstyle-sub-main {
    max-width: 620px;
}

.jstyle-breadcrumb {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.jstyle-sub-title {
    font-size: 28px;
    margin: 0 0 10px 0;
}

.jstyle-sub-intro p {
    font-size: 14px;
    color: #d1d5db;
}

.jstyle-sub-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 26px 0;
}

.jstyle-sub-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #374151;
    color: #9ca3af;
}

.jstyle-sub-artists-block {
    margin-top: 10px;
}

.jstyle-sub-artists-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.jstyle-sub-artists-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Högerkolumnen på undersidor */
.jstyle-sub-sidebar .jstyle-portal-card {
    margin-bottom: 14px;
}

/* Responsiv */
@media (max-width: 900px) {
    .jstyle-sub-grid {
        grid-template-columns: 1fr;
    }
}
/* Subpages – Jstyle Portal */

.jstyle-hero--sub {
    padding-top: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #16191f;
    background: radial-gradient(circle at top left, #111827 0, #050608 55%);
}

.jstyle-sub-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jstyle-sub-chips {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.jstyle-sub-chips span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    border: 1px solid #374151;
    padding: 4px 8px;
    color: #9ca3af;
}

.jstyle-section--sub {
    padding-top: 30px;
}

.jstyle-page-content {
    max-width: 720px;
    font-size: 14px;
}/* Global layout */

.jstyle-site-main {
    min-height: 100vh;
}

/* Top line animation – nu global eftersom den ligger i headern */

.jstyle-top-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #facc15, #22d3ee, #f97316);
    opacity: 0.6;
    position: relative;
    overflow: hidden;
}

.jstyle-top-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: translateX(-100%);
    animation: jstyle-line-pulse 4s infinite;
}

@keyframes jstyle-line-pulse {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translateX(100%); opacity: 1; }
    100% { opacity: 0; }
}

/* Portal subpages */

.jstyle-page-hero {
    padding: 80px 0 60px 0;
    background: radial-gradient(circle at top left, #111827 0, #050608 55%);
}

.jstyle-page-main {
    max-width: 540px;
}

.jstyle-breadcrumb {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 12px;
}

.jstyle-page-title {
    font-size: 26px;
    margin: 0 0 8px 0;
}

.jstyle-page-intro {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 20px;
}

/* Content på artistsidan – loggor etc */

.jstyle-page-content {
    margin-top: 10px;
}

.jstyle-page-content img {
    max-width: 220px;
    height: auto;
    display: inline-block;
    margin: 0 16px 24px 0;
}

/* Justera rubriken "Här hittar du alla..." om du använder den som block */

.jstyle-page-content h2,
.jstyle-page-content h3 {
    margin-top: 24px;
}/* Subpage hero (samma känsla som front-page) */

.jstyle-sub-hero {
    padding: 80px 0 32px 0;
    background: radial-gradient(circle at top left, #111827 0, #050608 55%);
}

.jstyle-breadcrumb {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 10px;
}

.jstyle-sub-title {
    font-size: 28px;
    margin: 0 0 6px 0;
}

.jstyle-sub-lead {
    font-size: 14px;
    color: #d1d5db;
    max-width: 520px;
    margin: 0;
}

/* Pulserande linje under headern */

.jstyle-hero-divider {
    margin-top: 20px;
    height: 2px;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(90deg, #111827, #d1aa4a, #111827);
    position: relative;
    overflow: hidden;
}

.jstyle-hero-divider::before {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    width: 30%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    mix-blend-mode: screen;
    animation: jstyle-hero-pulse 2.4s infinite;
}

@keyframes jstyle-hero-pulse {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(400%);
        opacity: 0;
    }
}

/* Layout för undersidor (vänster innehåll, höger cards) */

.jstyle-sub-section {
    border-top: 1px solid #16191f;
    padding: 40px 0 60px 0;
}

.jstyle-subgrid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: flex-start;
}

.jstyle-sub-main img {
    max-width: 220px;
    height: auto;
    margin-right: 12px;
}

.jstyle-sub-sidebar .jstyle-portal-card {
    margin-bottom: 16px;
}

/* Ta bort extra linje när sektionen är sist på sidan */
.jstyle-sub-section:last-of-type {
    border-bottom: none;
}

@media (max-width: 900px) {
    .jstyle-subgrid {
        grid-template-columns: 1fr;
    }
    .jstyle-sub-main img {
        max-width: 160px;
        margin-bottom: 10px;
    }
}/* Portal subpages */

.jstyle-subpage {
    padding: 80px 0 60px 0;
    background: radial-gradient(circle at top left, #111827 0, #050608 55%);
    border-bottom: 1px solid #16191f;
}

.jstyle-subpage-line {
    width: 100%;
    height: 1px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #17e0ff 0, rgba(23, 224, 255, 0) 100%);
    transform-origin: left center;
    animation: jstyle-line-pulse 2.4s ease-in-out infinite alternate;
}

@keyframes jstyle-line-pulse {
    0% {
        opacity: 0.35;
        transform: scaleX(0.6);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.jstyle-subpage-main {
    padding-right: 40px;
}

.jstyle-subpage-title {
    font-size: 28px;
    margin: 0 0 8px 0;
}

.jstyle-subpage-intro {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 18px;
}

.jstyle-subpage-content {
    font-size: 14px;
    color: #e5e7eb;
}

.jstyle-subpage-content img {
    max-width: 100%;
    height: auto;
}

/* Liten justering på mindre skärmar */
@media (max-width: 900px) {
    .jstyle-subpage-main {
        padding-right: 0;
        margin-bottom: 24px;
    }
}/* ===== Jstyle – länkar i blogg/nyheter ===== */
.jstyle-page-content a,
.jstyle-page-content a:visited,
.jstyle-post-teaser a,
.jstyle-post-teaser a:visited,
.jstyle-post-single a,
.jstyle-post-single a:visited,
.jstyle-hero-sub a,
.jstyle-hero-sub a:visited {
    color: #ffffff;          /* vit text */
    text-decoration: none;   /* ingen ful standard-underline */
}

.jstyle-page-content a:hover,
.jstyle-post-teaser a:hover,
.jstyle-post-single a:hover,
.jstyle-hero-sub a:hover {
    color: #f5d13b;          /* samma gula känsla som övriga sidan */
    text-decoration: underline;
}/* ===== Sticky header för Jstyle Portal ===== */

.jstyle-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.96); /* samma mörka bakgrund, lätt overlay */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #161921;
}

/* Header-innehållet – lite tajtare och snyggare */
.jstyle-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logotyp / sitetitle justeras lite */
.jstyle-site-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #f9fafb;
}

.jstyle-site-title:hover {
    color: #facc15;
}

/* Se till att huvudytan inte hamnar under headern på små skärmar */
.jstyle-site-main {
    min-height: 100vh;
}/* ===== Sticky header för Jstyle Portal ===== */

.jstyle-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.96); /* samma mörka bakgrund, lätt overlay */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #161921;
}

/* Header-innehållet – lite tajtare och snyggare */
.jstyle-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logotyp / sitetitle justeras lite */
.jstyle-site-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #f9fafb;
}

.jstyle-site-title:hover {
    color: #facc15;
}

/* Se till att huvudytan inte hamnar under headern på små skärmar */
.jstyle-site-main {
    min-height: 100vh;
}/* ===== HEADER / MENY ===== */

.jstyle-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #050608;
}

/* Rad med logo + meny */
.jstyle-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

/* Menylista desktop */
.jstyle-nav {
    display: flex;
}

.jstyle-nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jstyle-nav-list li a {
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5e7eb;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.jstyle-nav-list li a:hover {
    color: #facc15;
    border-color: #facc15;
}

/* Hamburger – dold på desktop */
.jstyle-nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
}

.jstyle-nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    background: #f9fafb;
}

/* Mobilbreakpoint */
@media (max-width: 840px) {
    .jstyle-nav {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: #050608;
        border-bottom: 1px solid #161921;
        width: 100%;
    }

    .jstyle-nav.is-open {
        display: block;
    }

    .jstyle-nav-list {
        flex-direction: column;
        gap: 0;
        padding: 12px 24px 16px 24px;
    }

    .jstyle-nav-list li a {
        padding: 8px 0;
        border-bottom: none;
    }

    .jstyle-nav-toggle {
        display: block;
    }
}/* ===== Jstyle – header och huvudmeny ===== */

.jstyle-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 6, 8, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #161921;
}

.jstyle-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
}

/* Logotyp / titel */

.jstyle-site-branding img {
    height: 48px;
    width: auto;
}

.jstyle-site-title {
    font-size: 18px;
    font-weight: 700;
    color: #f9fafb;
    text-decoration: none;
}

/* Desktopmeny */

.jstyle-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    font-size: 14px;
}

.jstyle-main-menu > li > a {
    text-decoration: none;
    color: #e5e7eb;
    padding: 4px 0;
    position: relative;
    text-transform: none;
}

.jstyle-main-menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, #22d3ee, #facc15, #fb923c);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.jstyle-main-menu > li > a:hover::after,
.jstyle-main-menu > li.current-menu-item > a::after,
.jstyle-main-menu > li.current-page-ancestor > a::after {
    transform: scaleX(1);
}

.jstyle-main-menu > li > a:hover {
    color: #facc15;
}

/* Hamburgermenyn */

.jstyle-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #374151;
    background: rgba(15, 23, 42, 0.9);
    cursor: pointer;
}

.jstyle-nav-toggle-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5e7eb;
}

.jstyle-nav-bar {
    display: block;
    width: 16px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Ikon-animation när menyn är öppen */

.jstyle-nav-toggle.is-open .jstyle-nav-bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.jstyle-nav-toggle.is-open .jstyle-nav-bar:nth-child(2) {
    opacity: 0;
}

.jstyle-nav-toggle.is-open .jstyle-nav-bar:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Responsiv – mobilmeny */

@media (max-width: 900px) {
    .jstyle-nav-toggle {
        display: inline-flex;
    }

    .jstyle-main-menu {
        position: absolute;
        right: 24px;
        top: 100%;
        margin-top: 8px;
        flex-direction: column;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 14px;
        background: radial-gradient(circle at top left, #111827 0, #020617 65%);
        border: 1px solid #1f2937;
        box-shadow: 0 12px 24px rgba(0,0,0,0.65);
        min-width: 190px;

        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .jstyle-main-menu.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}/* Jstyle header – höjd och vertikal centrering */

.jstyle-site-header {
    background: #050608;     /* samma bakgrund som resten */
    border-bottom: 1px solid #161921;
}

/* Grundhöjd på alla skärmar */
.jstyle-header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 70px;        /* lite högre än nu */
}

/* Extra luft på desktop */
@media (min-width: 1024px) {
    .jstyle-header-inner {
        min-height: 88px;    /* öka eller minska efter smak */
    }
}