/*
Theme Name: Local Legend Research Society
Theme URI: https://example.com/
Author: You
Author URI: https://example.com/
Description: Custom dark theme for the Local Legend Research Society.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: llrs
*/

:root {
    --llrs-bg: #060608;
    --llrs-bg-alt: #101018;
    --llrs-bg-band: #08090f;
    --llrs-text: #f5f3e8;
    --llrs-muted: #b7b1a0;
    --llrs-accent: #c2aa73; /* matches the logo's tan-ish tone */
    --llrs-accent-dark: #8f7b4a;
    --llrs-danger: #c24848;
    --llrs-border: #2a2a36;
    --llrs-radius: 12px;
}

/* Reset-ish basics */

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

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    background-color: var(--llrs-bg);
    color: var(--llrs-text);
    line-height: 1.6;
}

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

a {
    color: var(--llrs-accent);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #f8e9b8;
}

/* Layout */

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

.site-main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

.site-header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--llrs-border);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--llrs-border);
}

.site-title {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.site-description {
    margin: 0;
    font-size: 0.75rem;
    color: var(--llrs-muted);
}

/* Nav */

.primary-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.primary-nav a {
    position: relative;
    padding-bottom: 0.1rem;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    background: var(--llrs-accent);
    transition: width 0.2s ease-out;
}

.primary-nav a:hover::after {
    width: 100%;
}

/* Hero */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--llrs-text);
    background-color: #020308;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(20, 18, 10, 0.75), transparent 55%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.96));
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 4rem 1.5rem 5rem;
    text-align: center;
}

.hero-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--llrs-muted);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 30rem;
    margin: 0 auto 2rem;
    color: var(--llrs-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease-out, color 0.15s ease-out,
        transform 0.1s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
    background: var(--llrs-accent);
    color: #0b0905;
    border-color: var(--llrs-accent-dark);
}

.btn-primary:hover {
    background: #f2d79a;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--llrs-text);
    border-color: var(--llrs-border);
}

.btn-ghost:hover {
    border-color: var(--llrs-accent);
    transform: translateY(-1px);
}

/* Sections */

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--llrs-bg-alt);
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--llrs-muted);
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* About block */

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--llrs-muted);
}

.about-badge {
    border-radius: 50%;
    border: 1px solid var(--llrs-border);
    padding: 1.25rem;
    background: radial-gradient(circle at center, #1a1710, #060608);
}

/* Cards (Field Reports) */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.card {
    background: var(--llrs-bg-band);
    border-radius: var(--llrs-radius);
    border: 1px solid var(--llrs-border);
    padding: 1.5rem 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-title {
    font-size: 1.1rem;
}

.card-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--llrs-muted);
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--llrs-muted);
    flex: 1;
}

/* Video section */

.video-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    align-items: center;
}

.video-embed {
    aspect-ratio: 16 / 9;
    border-radius: var(--llrs-radius);
    overflow: hidden;
    border: 1px solid var(--llrs-border);
}

.video-copy p {
    color: var(--llrs-muted);
}

/* Join band */

.join-band {
    text-align: center;
    padding: 3rem 1.5rem;
    background: radial-gradient(circle at top, #1b160c, #05040a);
    border-top: 1px solid var(--llrs-border);
    border-bottom: 1px solid var(--llrs-border);
}

.join-band h2 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
}

.join-band p {
    max-width: 30rem;
    margin: 0 auto 1.5rem;
    color: var(--llrs-muted);
}

/* Footer */

.site-footer {
    background: #020209;
    border-top: 1px solid var(--llrs-border);
    padding: 1.5rem 1.5rem 2rem;
    font-size: 0.8rem;
    color: var(--llrs-muted);
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* Responsive tweaks */

@media (max-width: 900px) {
    .about-grid,
    .video-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .primary-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-inner {
        padding-top: 5.5rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section {
        padding: 2.75rem 0;
    }
	
	/* Remove bullet/dot from menu items */
.primary-nav,
.primary-nav ul,
.primary-nav li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

	.primary-nav li {
    padding-left: 0 !important;
    margin-left: 0 !important;
}
}
