/* Base Styles - Warm & Stylish "Kirin Ichiban" Feel */
:root {
    /* Color Palette */
    /* Primary: Deep Warm Gold/Amber - symbolizing premium beer/sunshine/warmth */
    --primary-color: #C09E38;
    --primary-hover: #A08226;

    /* Text: Soft Charcoal rather than stark black */
    --text-color: #3D3D3D;

    /* Backgrounds: Cream/Beige for warmth */
    --bg-color: #FDFBF7;
    --section-bg-alt: #F4F1EA;
    /* Slightly darker cream for alternate sections */

    /* Secondary/Accent: Deep Navy/Indigo used sparingly for trust/contrast */
    --secondary-color: #2C3E50;

    /* White */
    --white: #ffffff;

    /* Border */
    --border-color: #E0DAC5;

    --section-spacing: 100px;
    /* More breathing room */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    /* Relaxed line height */
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.section-title {
    font-family: 'Shippori Mincho', serif;
    /* Mincho for titles */
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

ul {
    list-style: none;
}
