/*
Theme Name: Queen Club
Theme URI: https://samarab.space
Description: Standalone Queen Club theme for the landing page and paid member community.
Author: Codex
Version: 0.1.0
Text Domain: queen-club
*/

:root {
    --queen-club-shell-max-width: 72rem;
    --queen-club-shell-padding: clamp(1.25rem, 3vw, 2.5rem);
    --queen-club-rose: #e8c9c5;
    --queen-club-burgundy: #681d32;
    --queen-club-wine: #461321;
    --queen-club-ink: #241716;
    --queen-club-cream: #fffaf2;
    --queen-club-gold: #b28b52;
    --queen-club-border: rgba(70, 19, 33, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--queen-club-cream);
    color: var(--queen-club-ink);
    font-family: "Jost", system-ui, sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-shell__header,
.site-shell__footer {
    width: min(100% - (2 * var(--queen-club-shell-padding)), var(--queen-club-shell-max-width));
    margin: 0 auto;
}

.site-shell__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    min-height: 4.25rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--queen-club-border);
}

.site-shell__brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--queen-club-wine);
    text-decoration: none;
}

.site-shell__brand-mark {
    display: grid;
    width: 2.1rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--queen-club-gold);
    border-radius: 50%;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
}

.site-shell__brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-shell__brand-copy strong {
    font: 500 .7rem "Fraunces", Georgia, serif;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-shell__brand-copy small {
    margin-top: .3rem;
    color: var(--queen-club-gold);
    font-size: .4rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.site-shell__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.site-shell__nav a {
    color: var(--queen-club-wine);
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-shell__member-link {
    padding: .7rem 1rem;
    border: 1px solid var(--queen-club-burgundy);
}

.site-shell__main {
    flex: 1;
    width: min(100% - (2 * var(--queen-club-shell-padding)), var(--queen-club-shell-max-width));
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.site-card {
    background: #fff;
    border: 1px solid var(--queen-club-border);
    border-radius: 2px;
    box-shadow: 0 18px 55px rgba(70, 19, 33, .05);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.entry-title,
.page-title {
    margin-top: 0;
    color: var(--queen-club-wine);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 300;
    line-height: 1.05;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.site-shell__footer {
    border-top: 1px solid var(--queen-club-border);
    padding: 1.5rem 0 2rem;
    font-size: 0.95rem;
    color: rgba(43, 22, 34, 0.72);
}

.site-shell__footer p {
    margin: 0;
}

@media (max-width: 720px) {
    .site-shell__header {
        gap: .75rem;
    }

    .site-shell__nav {
        justify-content: flex-start;
    }

    .site-shell__nav > a:not(.site-shell__member-link) {
        display: none;
    }
}
