/*
Theme Name: De Laer - Under Construction
Theme URI: https://www.cafedelaer.nl
Author: Brasserij de Laer
Author URI: https://www.cafedelaer.nl
Description: Custom under-construction theme voor Brasserij de Laer. Toont de "De website is bijna KLAER..." landingspagina met exacte brand fonts (Anivers, Athelas) en Pantone kleuren.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: delaer
*/

/* ============================================
   BRAND VARIABLES
   ============================================ */
:root {
    /* Exact Pantone brand colors from logo spec PDF */
    --teal: #003f53;      /* Pantone 2168  C91 M44 Y30 K57 */
    --orange: #f26721;    /* Pantone 7579  C0 M74 Y100 K0 */
    --burgundy: #741915;  /* Pantone 181   C21 M93 Y88 K50 */
    --beige: #bdb0a3;     /* Pantone 7529  C7 M14 Y20 K22 — logo on dark bg */
    --cream: #faf6f1;
    --warm-white: #fff9f3;
    --dark: #1a1a1a;

    /* Font stacks: self-hosted Anivers → Google fallbacks → system */
    --font-title: 'Anivers', 'Jost', 'Futura', sans-serif;
    --font-body: 'Athelas', 'Lora', 'Palatino', Georgia, serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ============================================
   HERO — exact PDF layout with food background
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-bg-image) center/cover no-repeat;
    filter: brightness(0.22) saturate(0.4);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 63, 83, 0.15) 0%, rgba(116, 25, 21, 0.10) 100%);
    z-index: 0;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

/* — Logo (left side) with frosted backdrop — */
.hero-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    user-select: none;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: -1;
}

.logo-svg { height: 5.5rem; width: auto; }

/* — Burgundy message block (right side) — */
.hero-message {
    background: var(--burgundy);
    padding: 3.5rem 3.5rem 3.5rem 5.5rem;
    position: relative;
    clip-path: polygon(26% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation: fadeIn 1.2s ease-out 0.2s both;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2.4rem;
    color: #ffffff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.hero-title .orange { color: var(--orange); }

.hero-title .dots {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
}

.hero-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.55;
    margin-bottom: 0.2rem;
}

.hero-sub a { color: #ffffff; text-decoration: none; }
.hero-sub a:hover { color: var(--orange); }
.hero-sub .underline { text-decoration: underline; text-underline-offset: 3px; }
.hero-menu-link { margin-top: 1.6rem; }

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    background: var(--warm-white);
    padding: 5rem 2rem;
    text-align: center;
}

.section-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.menu-card {
    background: #ffffff;
    border: 1px solid rgba(116, 25, 21, 0.1);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-card:hover { box-shadow: 0 8px 30px rgba(116, 25, 21, 0.1); transform: translateY(-3px); }
.menu-card:hover::before { transform: scaleX(1); }

.menu-card-icon { display: none; }

.menu-card-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--burgundy);
    margin-bottom: 0.4rem;
}

.menu-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #5a5a5a;
    font-style: italic;
}

.menu-card-dl {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.photo-strip-img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }

.photo-strip-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    padding: 3rem;
}

.photo-strip-text { text-align: center; color: #ffffff; }

.photo-strip-text h2 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.photo-strip-text p {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: #ffffff;
    padding: 3.5rem 2rem;
    text-align: center;
}

.footer-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.footer-logo .logo-svg { height: 2.5rem; width: auto; }

.footer-info {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.footer-info a { color: var(--orange); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }

.footer-divider { width: 60px; height: 2px; background: var(--burgundy); margin: 1.5rem auto; }

.footer-copy {
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero { padding: 3rem 1.5rem; min-height: 100vh; }
    .hero-layout { flex-direction: column; align-items: center; gap: 2.5rem; }
    .hero-logo { padding-right: 0; }
    .logo-svg { height: 4rem; }
    .hero-message {
        clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
        padding: 2.5rem 2rem 2.5rem 3.5rem;
        width: 100%; max-width: 420px; min-height: auto;
    }
    .hero-title { font-size: 2rem; letter-spacing: 1px; }
    .photo-strip { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .logo-svg { height: 3rem; }
    .hero-title { font-size: 1.6rem; }
    .hero-message { padding: 2rem 1.8rem 2rem 2.8rem; }
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .menu-card { padding: 1.2rem 1rem; }
}
