/*
Theme Name: gourmet.dk
Theme URI: https://gourmet.dk
Author: Sebastian Jensen
Description: Custom tema til gourmet.dk med fokus på videnskabelig madformidling, mad med kærlighed og mad med Wegovy.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: gourmetdk
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

a {
    color: #f97316;
}

.gourmet-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.gourmet-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.gourmet-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
}

.gourmet-hero-subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #cbd5f5;
}

.gourmet-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gourmet-card {
    border-radius: 1.2rem;
    padding: 1.4rem 1.3rem;
    background: radial-gradient(circle at top left, #1f2937, #020617);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.gourmet-card h2 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
}

.gourmet-card p {
    margin: 0;
    font-size: .95rem;
    color: #cbd5e1;
}

.gourmet-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.gourmet-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: .8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gourmet-brand {
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .86rem;
}

.gourmet-nav {
    display: flex;
    gap: 1rem;
    font-size: .9rem;
}

.gourmet-nav a {
    text-decoration: none;
    color: #e5e7eb;
    opacity: .9;
}

.gourmet-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.gourmet-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    font-size: .85rem;
    color: #9ca3af;
}

.gourmet-tagline {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fbbf24;
}

@media (max-width: 640px) {
    .gourmet-header-inner {
        flex-direction: column;
        gap: .4rem;
        align-items: flex-start;
    }
}
