@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #090510;
    color: #e2def0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER & NAVIGATION (Mobil og Tablet standard-layout)
   ========================================================================== */
header {
    display: flex;
    justify-content: center; /* Centrerer logoet perfekt på mobil/tablet */
    align-items: center;
    padding: 0 5%;
    background-color: rgba(14, 9, 24, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    height: 80px;
}

header .logo {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

header .logo span {
    color: #c5a059;
}

/* Skjul altid computer-menuen på mindre skærme */
.nav-desktop {
    display: none;
}

.menu-toggle {
    display: none;
}

/* Burger-knap (Kun synlig på mobil/tablet) */
.burger-btn {
    position: absolute;
    left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c5a059;
    transition: all 0.3s ease;
}

/* Mobil-menu der slider ind fra venstre */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #110a1f;
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    flex-direction: column;
    padding: 110px 30px;
    gap: 25px;
    transition: left 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    z-index: 1001;
    box-shadow: 20px 0 50px rgba(0,0,0,0.7);
}

.nav-menu a {
    text-decoration: none;
    color: #a39cb4;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #c5a059;
}

.nav-menu a.btn-nav {
    border: 1px solid #c5a059;
    padding: 12px 20px;
    border-radius: 25px;
    color: #c5a059;
    text-align: center;
    margin-top: 15px;
}

/* Aktiver mobil-slide */
.menu-toggle:checked ~ .nav-menu {
    left: 0;
}

/* Burger animation til 'X' */
.menu-toggle:checked ~ .burger-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle:checked ~ .burger-btn span:nth-child(2) { opacity: 0; }
.menu-toggle:checked ~ .burger-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ==========================================================================
   COMPUTER-LAYOUT (Skærme over 992px bredde)
   ========================================================================== */
@media (min-width: 992px) {
    header {
        justify-content: space-between; /* Skubber logo til venstre og menu til højre */
        padding: 0 8%;
    }

    /* Skjul ALT mobil-relateret på computeren */
    .burger-btn, 
    .nav-menu, 
    .menu-toggle {
        display: none !important;
    }

    /* Vis den organiske computer-menu i stedet */
    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .nav-desktop a {
        margin-left: 35px;
        text-decoration: none;
        color: #a39cb4;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .nav-desktop a:hover, .nav-desktop a.active {
        color: #c5a059;
    }

    .nav-desktop a.btn-nav {
        border: 1px solid #c5a059;
        padding: 8px 22px;
        border-radius: 20px;
        color: #c5a059;
        transition: all 0.3s;
    }

    .nav-desktop a.btn-nav:hover {
        background-color: #c5a059;
        color: #090510;
    }
}

/* ==========================================================================
   INDHOLD & SIDER
   ========================================================================== */
.hero {
    text-align: center;
    padding: 140px 20px 90px 20px;
    background: radial-gradient(circle at center, #1b0f2e 0%, #090510 100%);
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a059;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(197, 160, 89, 0.05);
}

.hero h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
}

.hero p {
    font-size: 16px;
    color: #a39cb4;
    margin-bottom: 35px;
}

.wrapper {
    padding: 40px 6%;
    max-width: 1250px;
    margin: 0 auto;
    flex: 1;
}

.section-title {
    text-align: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 600px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
    background-color: #120b21;
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.3);
}

.card-icon {
    font-size: 30px;
    color: #c5a059;
    margin-bottom: 15px;
}

.card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 18px;
}

.card p {
    color: #a39cb4;
    font-size: 14px;
}

/* Formular-sider */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 4%;
    flex: 1;
}

.form-container {
    background-color: #110a1f;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    text-align: center;
}

.form-badge {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a059;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.form-container h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #a39cb4;
    font-size: 14px;
    margin-bottom: 35px;
}

.auth-form { text-align: left; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.form-group label {
    display: block;
    color: #c5a059;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 13px 16px;
    background-color: #080410;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: #c5a059;
}

.checkbox-group { display: flex; gap: 12px; margin: 25px 0; }
.checkbox-group input { width: auto; margin-top: 4px; accent-color: #c5a059; }
.checkbox-group label { color: #a39cb4; font-size: 14px; text-transform: none; }

.btn-block { width: 100%; padding: 15px; text-transform: uppercase; }
.form-footer-text { margin-top: 25px; font-size: 14px; color: #a39cb4; }
.form-footer-text a { color: #c5a059; text-decoration: none; font-weight: 600; }

/* Footer */
footer {
    background-color: #05030a;
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
    font-size: 14px;
    color: #5c556b;
}

.footer-links a { color: #a39cb4; text-decoration: none; margin: 0 10px; }
.footer-links a:hover { color: #c5a059; }
/* Styling af fil-upload knapper */
.form-group input[type="file"] {
    background-color: #080410;
    border: 1px dashed rgba(197, 160, 89, 0.4);
    padding: 10px;
    color: #a39cb4;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
}

.form-group input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #bfa060 0%, #d9b873 100%);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    color: #090510;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #fff;
}

/* ==================================================
   RETTELSE – FASE 2 FÆLLESSKAB
   Overskriver de gamle medlemskort-regler
================================================== */

.community-page.wrapper{
    width:min(1500px, 94%);
    max-width:1500px;
    margin:0 auto;
    padding:70px 0 100px;
}

/* Filterområdet */
.community-page .community-filter{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr)) auto;
    gap:16px;
    align-items:end;
    width:100%;
    padding:22px;
    margin:0 0 28px;
    background:linear-gradient(145deg, #151119, #0f0c12);
    border:1px solid rgba(201, 156, 74, 0.22);
    border-radius:14px;
    box-shadow:0 18px 45px rgba(0,0,0,0.24);
}

.community-page .filter-group{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin:0;
}

.community-page .filter-group label{
    display:block;
    margin:0;
    color:#cfa85f;
    font-size: 14px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.community-page .filter-group select{
    width:100%;
    height:50px;
    padding:0 14px;
    color:#f7f2f8;
    background:#09070c;
    border:1px solid rgba(201, 156, 74, 0.24);
    border-radius:8px;
    outline:none;
    font-family:inherit;
    font-size:14px;
}

.community-page .filter-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.community-page .filter-button,
.community-page .filter-reset{
    min-height:50px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    font-family:inherit;
    font-size: 14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    text-decoration:none;
    cursor:pointer;
}

.community-page .filter-button{
    color:#09070c;
    background:#cfa85f;
    border:1px solid #cfa85f;
}

.community-page .filter-reset{
    color:#cfa85f;
    background:transparent;
    border:1px solid rgba(207,168,95,0.6);
}

/* Fire profiler pr. række */
.community-page .members-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
    width:100%;
}

/* Nulstiller de gamle medlemskort */
.community-page .member-card{
    padding:0;
    overflow:hidden;
    text-align:left;
    background:linear-gradient(155deg, #17131b, #100d13);
    border:1px solid rgba(201,156,74,0.2);
    border-radius:14px;
    box-shadow:0 14px 32px rgba(0,0,0,0.28);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.community-page .member-card:hover{
    transform:translateY(-6px);
    border-color:rgba(207,168,95,0.65);
    box-shadow:0 22px 46px rgba(0,0,0,0.4);
}

/* Store firkantede billeder */
.community-page .member-images{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    height:270px;
    margin:0;
    background:#08070a;
}

.community-page .member-images.is-pair{
    grid-template-columns:1fr 1fr;
}

.community-page .avatar-box{
    width:100%;
    height:100%;
    min-width:0;
    min-height:0;
    overflow:hidden;
    border:0;
    border-radius:0;
    box-shadow:none;
    transform:none;
    background:#08070a;
}

.community-page .member-images.is-pair .avatar-box:nth-child(1),
.community-page .member-images.is-pair .avatar-box:nth-child(2){
    transform:none;
    border:0;
}

.community-page .avatar-box img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:0;
}

.community-page .member-info{
    padding:20px;
    text-align:left;
}

.community-page .member-info h3{
    margin:0 0 9px;
    color:#fff;
    font-size:20px;
}

.community-page .profile-tag{
    display:inline-block;
    margin:0 0 15px;
    color:#d7ad5f;
    font-size: 14px;
    font-weight:600;
}

.community-page .member-geo,
.community-page .member-age{
    margin:7px 0;
    color:#bcb3bf;
    font-size:14px;
}

.community-page .btn-member{
    width:100%;
    min-height:44px;
    margin-top:17px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d7ad5f;
    background:transparent;
    border:1px solid rgba(215,173,95,0.75);
    border-radius:7px;
    text-decoration:none;
    font-size: 14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.community-page .btn-member:hover{
    color:#0b090d;
    background:#d7ad5f;
}

/* Tablet */
@media (max-width:1150px){
    .community-page .community-filter{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .community-page .members-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
}

@media (max-width:850px){
    .community-page .members-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width:650px){
    .community-page.wrapper{
        width:min(92%, 600px);
        padding-top:45px;
    }

    .community-page .community-filter{
        grid-template-columns:1fr;
        padding:18px;
    }

    .community-page .filter-actions{
        width:100%;
    }

    .community-page .filter-button,
    .community-page .filter-reset{
        flex:1;
    }

    .community-page .members-grid{
        grid-template-columns:1fr;
    }

    .community-page .member-images{
        height:340px;
    }
}
/* ==================================================
   FÆLLESSKAB – SAMME LILLA FARVER SOM FORSIDEN
================================================== */

/* Lilla baggrund på hele fællesskabssiden */
body:has(.community-page){
    background:
        radial-gradient(
            circle at top center,
            #1b0f2e 0%,
            #110a1f 38%,
            #090510 78%
        );
    background-attachment:fixed;
}

/* Selve siden skal være gennemsigtig,
   så den lilla baggrund kan ses */
.community-page.wrapper{
    background:transparent;
}

/* Søge- og filterboksen */
.community-page .community-filter{
    background:
        linear-gradient(
            145deg,
            #160d27 0%,
            #110a1f 55%,
            #0c0714 100%
        );
    border-color:rgba(197,160,89,0.25);
}

/* Felterne i filteret */
.community-page .filter-group select,
.community-page .multi-select-button{
    background:#080410;
    color:#ffffff;
    border-color:rgba(197,160,89,0.28);
}

/* Dropdown til flere aldersvalg */
.community-page .multi-select-menu{
    background:#110a1f;
    border-color:rgba(197,160,89,0.35);
}

/* Profilkort */
.community-page .member-card{
    background:
        linear-gradient(
            155deg,
            #160d27 0%,
            #110a1f 60%,
            #0c0714 100%
        );
    border-color:rgba(197,160,89,0.22);
}

/* Området bag profilbilleder */
.community-page .member-images,
.community-page .avatar-box{
    background:#080410;
}

/* Felt ved manglende profilbillede */
.community-page .no-avatar{
    background:
        linear-gradient(
            145deg,
            #1b0f2e,
            #0b0612
        );
}

/* Boksen ved ingen søgeresultater */
.community-page .community-empty{
    background:#110a1f;
    border-color:rgba(197,160,89,0.25);
}
/* ==================================================
   FÆLLESSKAB – TOP OG ALDERSFILTER
================================================== */

.community-page .community-header{
    max-width:820px;
    margin:0 auto 42px;
    text-align:center;
}

.community-page .community-header .hero-badge{
    margin-bottom:18px;
}

.community-page .community-header h2{
    margin:0 0 10px;
    color:#ffffff;
    font-size:clamp(36px, 4vw, 54px);
    font-weight:700;
    letter-spacing:-1px;
    line-height:1.15;
}

.community-page .community-header p{
    max-width:680px;
    margin:0 auto;
    color:#a39cb4;
    font-size:15px;
    line-height:1.7;
}

.age-filter-group{
    position:relative;
}

.multi-select{
    position:relative;
    width:100%;
}

.multi-select-button{
    width:100%;
    height:50px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:#ffffff;
    background:#080410;
    border:1px solid rgba(197,160,89,0.28);
    border-radius:8px;
    font-family:inherit;
    font-size:14px;
    text-align:left;
    cursor:pointer;
    outline:none;
}

.multi-select-button:hover,
.multi-select.is-open .multi-select-button{
    border-color:#c5a059;
}

.multi-select.is-open .multi-select-button{
    box-shadow:0 0 0 3px rgba(197,160,89,0.1);
}

.multi-select-arrow{
    flex-shrink:0;
    color:#c5a059;
    font-size: 14px;
    transition:transform 0.2s ease;
}

.multi-select.is-open .multi-select-arrow{
    transform:rotate(180deg);
}

.multi-select-menu{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    z-index:300;
    display:none;
    padding:12px;
    background:#110a1f;
    border:1px solid rgba(197,160,89,0.35);
    border-radius:10px;
    box-shadow:0 22px 50px rgba(0,0,0,0.6);
}

.multi-select.is-open .multi-select-menu{
    display:block;
}

.multi-select-description{
    margin:2px 6px 10px;
    color:#8f879d;
    font-size: 14px;
    line-height:1.5;
}

.multi-select-option{
    width:100%;
    min-height:42px;
    margin:0;
    padding:9px 10px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#d9d3e1;
    border-radius:7px;
    font-size: 14px;
    font-weight:500;
    letter-spacing:0;
    text-transform:none;
    cursor:pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.multi-select-option:hover{
    color:#ffffff;
    background:rgba(197,160,89,0.09);
}

.multi-select-option input{
    width:17px;
    height:17px;
    flex-shrink:0;
    margin:0;
    accent-color:#c5a059;
    cursor:pointer;
}

.multi-select-clear{
    width:100%;
    min-height:38px;
    margin-top:10px;
    color:#c5a059;
    background:transparent;
    border:1px solid rgba(197,160,89,0.35);
    border-radius:7px;
    font-family:inherit;
    font-size: 14px;
    font-weight:700;
    letter-spacing:0.8px;
    text-transform:uppercase;
    cursor:pointer;
}

.multi-select-clear:hover{
    color:#090510;
    background:#c5a059;
}

.community-page .community-filter{
    position:relative;
    z-index:200;
}

.community-page .members-grid{
    position:relative;
    z-index:1;
}

@media (max-width:650px){
    .community-page .community-header{
        margin-bottom:30px;
    }

    .community-page .community-header h2{
        font-size:34px;
    }

    .multi-select-menu{
        position:static;
        margin-top:8px;
    }
}
/* ==================================================
   FASE 3 – PROFILSIDE
================================================== */

.profile-page{
    width:min(1350px, 92%);
    margin:0 auto;
    padding:45px 0 100px;
}

.profile-back-row{
    margin-bottom:24px;
}

.profile-back-link{
    color:#c5a059;
    text-decoration:none;
    font-size: 14px;
    font-weight:600;
    letter-spacing:0.4px;
}

.profile-back-link:hover{
    color:#ffffff;
}

.profile-hero-card{
    display:grid;
    grid-template-columns:minmax(0, 1.15fr) minmax(340px, 0.85fr);
    overflow:hidden;
    background:
        linear-gradient(
            145deg,
            #160d27 0%,
            #110a1f 55%,
            #0c0714 100%
        );
    border:1px solid rgba(197,160,89,0.25);
    border-radius:20px;
    box-shadow:0 25px 65px rgba(0,0,0,0.48);
}

.profile-gallery{
    display:grid;
    grid-template-columns:1fr;
    min-height:560px;
    background:#080410;
}

.profile-gallery.is-pair{
    grid-template-columns:1fr 1fr;
}

.profile-main-image{
    min-width:0;
    min-height:0;
    overflow:hidden;
    background:#080410;
}

.profile-main-image img{
    width:100%;
    height:100%;
    min-height:560px;
    display:block;
    object-fit:cover;
}

.profile-no-image{
    width:100%;
    height:100%;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c5a059;
    font-size:70px;
    background:
        radial-gradient(
            circle at center,
            #1b0f2e 0%,
            #090510 100%
        );
}

.profile-details{
    padding:60px 48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.profile-exclusive-badge,
.profile-section-label{
    display:inline-flex;
    align-self:flex-start;
    color:#c5a059;
    background:rgba(197,160,89,0.06);
    border:1px solid rgba(197,160,89,0.28);
    border-radius:20px;
    padding:6px 14px;
    font-size: 14px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.profile-details h1{
    margin:22px 0 10px;
    color:#ffffff;
    font-size:clamp(38px, 4vw, 62px);
    line-height:1.05;
    letter-spacing:-1.5px;
}

.profile-type-badge{
    align-self:flex-start;
    margin-bottom:32px;
    color:#d8b66c;
    font-size:14px;
    font-weight:600;
}

.profile-facts{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
    margin-bottom:32px;
}

.profile-fact{
    padding:16px;
    background:rgba(8,4,16,0.55);
    border:1px solid rgba(197,160,89,0.14);
    border-radius:12px;
}

.profile-fact-label{
    display:block;
    margin-bottom:5px;
    color:#857d90;
    font-size: 14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.profile-fact strong{
    color:#ffffff;
    font-size:14px;
    font-weight:600;
}

.profile-actions{
    display:grid;
    grid-template-columns:1fr 56px;
    gap:12px;
}

.profile-primary-button,
.profile-favorite-button{
    min-height:52px;
    border-radius:10px;
    font-family:inherit;
    font-weight:700;
    cursor:pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.profile-primary-button{
    color:#090510;
    background:
        linear-gradient(
            135deg,
            #bfa060 0%,
            #d9b873 100%
        );
    border:1px solid #c5a059;
    text-transform:uppercase;
    letter-spacing:1px;
}

.profile-favorite-button{
    color:#c5a059;
    background:transparent;
    border:1px solid rgba(197,160,89,0.55);
    font-size:25px;
}

.profile-primary-button:hover,
.profile-favorite-button:hover{
    transform:translateY(-2px);
}

.profile-favorite-button:hover{
    color:#090510;
    background:#c5a059;
}

.profile-coming-soon{
    margin-top:14px;
    color:#71697d;
    font-size: 14px;
    line-height:1.5;
}

.profile-content-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    margin-top:24px;
}

.profile-content-card{
    padding:34px;
    background:#110a1f;
    border:1px solid rgba(197,160,89,0.2);
    border-radius:16px;
    box-shadow:0 18px 45px rgba(0,0,0,0.28);
}

.profile-content-card h2{
    margin:17px 0 12px;
    color:#ffffff;
    font-size:23px;
}

.profile-content-card p{
    margin:0;
    color:#a39cb4;
    font-size:14px;
    line-height:1.8;
}

@media (max-width:1000px){
    .profile-hero-card{
        grid-template-columns:1fr;
    }

    .profile-gallery,
    .profile-main-image img,
    .profile-no-image{
        min-height:480px;
    }
}

@media (max-width:700px){
    .profile-page{
        width:min(92%, 600px);
        padding-top:30px;
    }

    .profile-gallery{
        min-height:400px;
    }

    .profile-gallery.is-pair{
        grid-template-columns:1fr 1fr;
    }

    .profile-main-image img,
    .profile-no-image{
        min-height:400px;
    }

    .profile-details{
        padding:36px 24px;
    }

    .profile-details h1{
        font-size:38px;
    }

    .profile-facts{
        grid-template-columns:1fr;
    }

    .profile-content-grid{
        grid-template-columns:1fr;
    }

    .profile-content-card{
        padding:26px;
    }
}
/* =========================================================
   FASE 3B – OM MIG-FELT PÅ PROFILSIDEN
   Bevarer Fristet.dk's mørke lilla/guld-design
========================================================= */

.profile-about-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.profile-about-form label {
    display: block;
    color: #f8f3ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.profile-about-form textarea {
    display: block;
    width: 100%;
    min-height: 190px;
    padding: 18px 20px;
    border: 1px solid rgba(210, 168, 85, 0.45);
    border-radius: 16px;
    outline: none;
    resize: vertical;

    background:
        linear-gradient(
            145deg,
            rgba(28, 13, 43, 0.98),
            rgba(15, 7, 26, 0.98)
        );

    color: #f8f3ff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.65;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 28px rgba(0, 0, 0, 0.16);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.profile-about-form textarea::placeholder {
    color: rgba(213, 202, 223, 0.55);
}

.profile-about-form textarea:hover {
    border-color: rgba(210, 168, 85, 0.7);
}

.profile-about-form textarea:focus {
    border-color: #d2a855;

    box-shadow:
        0 0 0 3px rgba(210, 168, 85, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 32px rgba(0, 0, 0, 0.2);
}

.profile-textarea-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 2px;
}

.profile-character-counter {
    color: rgba(215, 204, 224, 0.72);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.profile-about-form .profile-primary-button {
    width: auto;
    min-width: 190px;
    min-height: 48px;
    padding: 13px 24px;
    margin: 0;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.profile-about-text {
    margin: 18px 0 0;
    color: rgba(236, 228, 241, 0.84);
    font-size: 16px;
    line-height: 1.8;
    white-space: normal;
    overflow-wrap: anywhere;
}

.profile-success-message,
.profile-error-message {
    margin: 16px 0 4px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.profile-success-message {
    color: #f6e8bd;
    background: rgba(210, 168, 85, 0.1);
    border: 1px solid rgba(210, 168, 85, 0.35);
}

.profile-error-message {
    color: #ffd9df;
    background: rgba(164, 48, 75, 0.14);
    border: 1px solid rgba(213, 91, 120, 0.35);
}

@media (max-width: 650px) {
    .profile-textarea-bottom {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .profile-about-form .profile-primary-button {
        width: 100%;
    }

    .profile-about-form textarea {
        min-height: 170px;
        padding: 16px;
    }
}

/* =========================================================
   FÆLLESSKAB – LIGE NU SOM SMÅ RUNDE AKTIVITETSBADGES
   ÉN SAMLET VERSION – PC, TABLET OG MOBIL
========================================================= */

.community-live-section,
.community-live-empty {
    width: 100%;
    margin: 26px 0 30px;
    padding: 18px 20px 20px;

    overflow: hidden;

    border: 1px solid rgba(211, 169, 88, 0.17);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at top right,
            rgba(84, 41, 91, 0.14),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(24, 11, 35, 0.98),
            rgba(12, 6, 20, 0.99)
        );
}

.community-live-heading,
.community-live-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.community-live-heading {
    margin-bottom: 15px;
}

.community-live-label,
.community-live-empty span {
    display: block;
    margin-bottom: 4px;

    color: #d7ae62;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.community-live-heading h3,
.community-live-empty h3 {
    margin: 0;

    color: #f8f1fa;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.community-live-create,
.community-live-empty > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 39px;
    padding: 8px 14px;

    border: 1px solid rgba(211, 169, 88, 0.52);
    border-radius: 999px;

    background: rgba(211, 169, 88, 0.08);
    color: #e4c177;

    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.community-live-window {
    display: block;
    width: 100%;
    margin: 0;
    padding: 3px 2px 8px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.community-live-track,
.community-live-track.is-static {
    display: flex;
    align-items: center;

    width: max-content;
    min-width: 100%;

    gap: 12px;
    margin: 0;
    padding: 0 10px 0 0;

    animation: none;
    transform: none;
}

.community-live-card {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 240px;
    min-width: 240px;
    max-width: 240px;
    min-height: 78px;
    flex: 0 0 240px;

    margin: 0;
    padding: 9px 12px;

    overflow: hidden;

    border: 1px solid rgba(211, 169, 88, 0.3);
    border-radius: 999px;

    background:
        radial-gradient(
            circle at right center,
            rgba(104, 51, 109, 0.2),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            rgba(44, 20, 53, 0.98),
            rgba(20, 8, 30, 0.99)
        );

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    scroll-snap-align: start;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.community-live-card:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 169, 88, 0.72);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.26);
}

.community-live-profile {
    display: flex;
    align-items: center;

    width: auto;
    flex: 0 0 auto;

    margin: 0;
    padding: 0;

    color: inherit;
    text-decoration: none;
}

.community-live-profile-text {
    display: none;
}

.community-live-avatar {
    display: grid;
    grid-template-columns: 1fr;

    width: 56px;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    flex: 0 0 56px;

    overflow: hidden;

    border: 2px solid rgba(211, 169, 88, 0.54);
    border-radius: 50%;

    background: #15091f;

    box-shadow:
        0 0 0 3px rgba(211, 169, 88, 0.06);
}

.community-live-avatar.is-pair {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.community-live-avatar > div {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    height: 100%;

    color: rgba(211, 169, 88, 0.52);
}

.community-live-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-live-bubble {
    position: static;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    width: auto;
    min-height: 0;
    flex: 1 1 auto;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;

    color: inherit;
    text-decoration: none;
    transform: none;
}

.community-live-bubble::before,
.community-live-bubble::after {
    display: none;
    content: none;
}

.community-live-bubble:hover {
    transform: none;
    border: 0;
    box-shadow: none;
}

.community-live-bubble h4 {
    display: -webkit-box;
    overflow: hidden;

    margin: 0 0 4px;
    padding: 0;

    color: #f0ce7c;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.community-live-bubble h4 span {
    margin-right: 4px;
}

.community-live-bubble p {
    display: none;
}

/* Sted */
.community-live-bubble p:nth-of-type(2) {
    display: block;

    overflow: hidden;

    margin: 0;
    padding: 0;

    color: rgba(231, 220, 237, 0.7);
    font-size: 14px;
    line-height: 1.3;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.community-live-countdown {
    display: block;

    overflow: hidden;

    margin: 5px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;

    color: #d7ae62 !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.community-live-open {
    display: none;
}

.community-live-track.is-static {
    width: 100%;
}

.community-live-track.is-static .community-live-card {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    flex-basis: 240px;
}

.community-live-window::-webkit-scrollbar {
    height: 4px;
}

.community-live-window::-webkit-scrollbar-track {
    background: transparent;
}

.community-live-window::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(211, 169, 88, 0.25);
}

/* Tablet */

@media (max-width: 1000px) {
    .community-live-section,
    .community-live-empty {
        margin: 23px 0 28px;
        padding: 17px;
    }

    .community-live-heading h3,
    .community-live-empty h3 {
        font-size: 21px;
    }

    .community-live-card {
        width: 225px;
        min-width: 225px;
        max-width: 225px;
        min-height: 74px;
        flex-basis: 225px;
    }

    .community-live-track.is-static .community-live-card {
        width: 225px;
        min-width: 225px;
        max-width: 225px;
        flex-basis: 225px;
    }

    .community-live-avatar {
        width: 52px;
        min-width: 52px;
        max-width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .community-live-bubble h4 {
        font-size: 14px;
    }
}

/* Mobil */

@media (max-width: 650px) {
    .community-live-section,
    .community-live-empty {
        margin: 20px 0 24px;
        padding: 15px;

        border-radius: 16px;
    }

    .community-live-heading,
    .community-live-empty {
        align-items: stretch;
        flex-direction: column;
        gap: 11px;
    }

    .community-live-heading {
        margin-bottom: 13px;
    }

    .community-live-heading h3,
    .community-live-empty h3 {
        font-size: 20px;
    }

    .community-live-create,
    .community-live-empty > a {
        width: 100%;
    }

    .community-live-track {
        gap: 9px;
    }

    .community-live-card {
        width: 210px;
        min-width: 210px;
        max-width: 210px;
        min-height: 70px;
        flex-basis: 210px;

        padding: 8px 10px;
    }

    .community-live-track.is-static .community-live-card {
        width: min(210px, 100%);
        min-width: min(210px, 100%);
        max-width: min(210px, 100%);
        flex-basis: min(210px, 100%);
    }

    .community-live-avatar {
        width: 48px;
        min-width: 48px;
        max-width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .community-live-bubble h4 {
        font-size: 14px;
    }

    .community-live-bubble p:nth-of-type(2) {
        font-size: 14px;
    }

    .community-live-countdown {
        font-size: 14px;
    }
}


/* =========================================================
   FRISTET.DK – GLOBAL STØRRE OG SKARPERE TYPOGRAFI
   Gælder hele siden på computer, tablet og mobil.
   Farver, layout og eksisterende design bevares.
========================================================= */

html {
    font-size: 17px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-size: 17px;
    line-height: 1.7;
}

/* Header og navigation */

header .logo {
    font-size: 28px;
}

.nav-menu a {
    font-size: 18px;
}

@media (min-width: 992px) {
    .nav-desktop a {
        font-size: 16px;
    }

    .nav-desktop a.btn-nav {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* Generelle overskrifter */

h1,
.hero h1 {
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.08;
}

h2,
.section-title {
    font-size: clamp(31px, 3.4vw, 46px);
    line-height: 1.18;
}

h3 {
    font-size: 22px;
    line-height: 1.28;
}

p {
    font-size: 16px;
}

/* Hero */

.hero {
    padding-top: 150px;
}

.hero-badge,
.form-badge {
    font-size: 14px;
}

.hero p {
    font-size: 18px;
    line-height: 1.72;
}

/* Kort og almindeligt indhold */

.card h3 {
    font-size: 22px;
}

.card p {
    font-size: 16px;
    line-height: 1.68;
}

.card-icon {
    font-size: 35px;
}

/* Formularer */

.form-container {
    max-width: 620px;
}

.form-container h2 {
    font-size: 39px;
}

.form-subtitle {
    font-size: 17px;
    line-height: 1.65;
}

.form-group label {
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 52px;
    font-size: 17px;
}

.checkbox-group label {
    font-size: 15px;
    line-height: 1.55;
}

.btn-main,
.btn-block,
button,
input[type="submit"] {
    font-size: 15px;
}

.form-footer-text {
    font-size: 16px;
}

/* Footer */

footer {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links a {
    font-size: 14px;
}

/* Fællesskab / Fristelser */

.community-page .community-header h2 {
    font-size: clamp(46px, 5vw, 68px);
}

.community-page .community-header p {
    font-size: 17px;
    line-height: 1.75;
}

.community-page .filter-group label {
    font-size: 14px;
}

.community-page .filter-group select,
.community-page .multi-select-button {
    min-height: 54px;
    font-size: 16px;
}

.community-page .filter-button,
.community-page .filter-reset {
    min-height: 54px;
    font-size: 14px;
}

.community-page .member-info h3 {
    font-size: 27px;
}

.community-page .profile-tag {
    font-size: 15px;
}

.community-page .member-geo,
.community-page .member-age {
    font-size: 16px;
}

.community-page .btn-member {
    min-height: 50px;
    font-size: 14px;
}

.multi-select-description {
    font-size: 14px;
}

.multi-select-option {
    min-height: 46px;
    font-size: 15px;
}

.multi-select-clear {
    min-height: 42px;
    font-size: 14px;
}

/* Profilside */

.profile-back-link {
    font-size: 15px;
}

.profile-exclusive-badge,
.profile-section-label {
    font-size: 14px;
}

.profile-details h1 {
    font-size: clamp(49px, 5vw, 72px);
}

.profile-type-badge {
    font-size: 17px;
}

.profile-fact-label {
    font-size: 14px;
}

.profile-fact strong {
    font-size: 17px;
}

.profile-primary-button {
    font-size: 15px;
}

.profile-coming-soon {
    font-size: 14px;
}

.profile-content-card h2 {
    font-size: 30px;
}

.profile-content-card p,
.profile-about-text {
    font-size: 17px;
    line-height: 1.78;
}

.profile-about-form label {
    font-size: 17px;
}

.profile-about-form textarea {
    font-size: 17px;
}

.profile-character-counter {
    font-size: 14px;
}

.profile-success-message,
.profile-error-message {
    font-size: 16px;
}

/* Lige nu / Fristelser */

.community-live-label,
.community-live-empty span {
    font-size: 14px;
}

.community-live-heading h3,
.community-live-empty h3 {
    font-size: 28px;
}

.community-live-create,
.community-live-empty > a {
    min-height: 43px;
    font-size: 14px;
}

.community-live-card {
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    min-height: 88px;
    flex-basis: 275px;
}

.community-live-track.is-static .community-live-card {
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    flex-basis: 275px;
}

.community-live-avatar {
    width: 62px;
    min-width: 62px;
    max-width: 62px;
    height: 62px;
    flex-basis: 62px;
}

.community-live-bubble h4 {
    font-size: 18px;
}

.community-live-bubble p:nth-of-type(2) {
    font-size: 14px;
}

.community-live-countdown {
    font-size: 14px;
}

/* Tablet */

@media (max-width: 1000px) {
    html {
        font-size: 16px;
    }

    body {
        font-size: 16px;
    }

    .nav-menu a {
        font-size: 17px;
    }

    .community-live-card {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        min-height: 82px;
        flex-basis: 250px;
    }

    .community-live-track.is-static .community-live-card {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        flex-basis: 250px;
    }

    .community-live-avatar {
        width: 58px;
        min-width: 58px;
        max-width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .community-live-bubble h4 {
        font-size: 17px;
    }
}

/* Mobil */

@media (max-width: 650px) {
    html {
        font-size: 16px;
    }

    body {
        font-size: 16px;
    }

    header .logo {
        font-size: 25px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero h1,
    h1 {
        font-size: 40px;
    }

    h2,
    .section-title {
        font-size: 30px;
    }

    h3 {
        font-size: 21px;
    }

    p,
    .hero p,
    .card p,
    .form-subtitle {
        font-size: 16px;
    }

    .form-container {
        padding: 38px 22px;
    }

    .form-container h2 {
        font-size: 34px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .community-page .community-header h2 {
        font-size: 40px;
    }

    .community-page .community-header p {
        font-size: 16px;
    }

    .community-page .member-info h3 {
        font-size: 26px;
    }

    .community-page .profile-tag,
    .community-page .member-geo,
    .community-page .member-age {
        font-size: 15px;
    }

    .profile-details h1 {
        font-size: 43px;
    }

    .profile-content-card h2 {
        font-size: 27px;
    }

    .profile-content-card p,
    .profile-about-text {
        font-size: 16px;
    }

    .community-live-heading h3,
    .community-live-empty h3 {
        font-size: 25px;
    }

    .community-live-card {
        width: 235px;
        min-width: 235px;
        max-width: 235px;
        min-height: 78px;
        flex-basis: 235px;
    }

    .community-live-track.is-static .community-live-card {
        width: min(235px, 100%);
        min-width: min(235px, 100%);
        max-width: min(235px, 100%);
        flex-basis: min(235px, 100%);
    }

    .community-live-avatar {
        width: 54px;
        min-width: 54px;
        max-width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .community-live-bubble h4 {
        font-size: 16px;
    }

    .community-live-bubble p:nth-of-type(2) {
        font-size: 14px;
    }

    .community-live-countdown {
        font-size: 14px;
    }
}

/* =========================================================
   FRISTET.DK – DESIGN SYSTEM 1.0
   Fælles typografi og læsbarhed på alle sider.
   Minimum skriftstørrelse: 14px.
========================================================= */

:root {
    --fristet-font-heading: "Playfair Display", Georgia, serif;
    --fristet-font-body: "Montserrat", Arial, sans-serif;

    --fristet-text-min: 14px;
    --fristet-text-small: 14px;
    --fristet-text-body: 16px;
    --fristet-text-large: 18px;

    --fristet-heading-card: clamp(21px, 2vw, 25px);
    --fristet-heading-section: clamp(28px, 3vw, 38px);
    --fristet-heading-page: clamp(42px, 5vw, 64px);
    --fristet-heading-hero: clamp(48px, 6vw, 72px);
}

html {
    font-family: var(--fristet-font-body);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body,
input,
select,
textarea,
button {
    font-family: var(--fristet-font-body);
}

body {
    font-size: var(--fristet-text-body);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-title,
.form-container h2,
.community-page .community-header h2,
.community-page .member-info h3,
.profile-details h1,
.profile-content-card h2,
.community-live-heading h3,
.community-live-empty h3,
.community-live-bubble h4 {
    font-family: var(--fristet-font-heading);
    font-weight: 600;
}

h1,
.hero h1,
.profile-details h1,
.community-page .community-header h2 {
    font-size: var(--fristet-heading-page);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: var(--fristet-heading-hero);
}

h2,
.section-title,
.form-container h2,
.profile-content-card h2 {
    font-size: var(--fristet-heading-section);
    line-height: 1.18;
}

h3,
.card h3,
.community-page .member-info h3,
.community-live-heading h3,
.community-live-empty h3 {
    font-size: var(--fristet-heading-card);
    line-height: 1.25;
}

p,
li,
label,
input,
select,
textarea,
button,
a,
small,
time,
figcaption,
th,
td,
dt,
dd {
    line-height: 1.6;
}

p,
li,
input,
select,
textarea {
    font-size: var(--fristet-text-body);
}

small,
label,
time,
figcaption,
.form-group label,
.form-badge,
.hero-badge,
.profile-exclusive-badge,
.profile-section-label,
.profile-fact-label,
.profile-coming-soon,
.profile-character-counter,
.community-page .filter-group label,
.community-page .profile-tag,
.community-page .member-geo,
.community-page .member-age,
.multi-select-description,
.multi-select-option,
.multi-select-clear,
.community-live-label,
.community-live-empty span,
.community-live-bubble p:nth-of-type(2),
.community-live-countdown,
footer,
.footer-links a {
    font-size: var(--fristet-text-min);
}

button,
input[type="submit"],
.btn-main,
.btn-block,
.btn-nav,
.community-page .filter-button,
.community-page .filter-reset,
.community-page .btn-member,
.community-live-create,
.community-live-empty > a,
.profile-primary-button {
    font-size: var(--fristet-text-body);
    line-height: 1.2;
}

.nav-menu a,
.nav-desktop a {
    font-family: var(--fristet-font-heading);
    font-size: var(--fristet-text-large);
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: none;
}

header .logo {
    font-family: var(--fristet-font-heading);
}

@media (max-width: 650px) {
    :root {
        --fristet-heading-card: 21px;
        --fristet-heading-section: 30px;
        --fristet-heading-page: 40px;
        --fristet-heading-hero: 42px;
    }

    body,
    p,
    li,
    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }

    .nav-menu a {
        font-size: 18px;
    }
}
