/* Template 69 - Cherry Blossom / Spring Japanese */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&family=Zen+Maru+Gothic:wght@300;400;500&display=swap');

:root {
    --sakura-light: #fef6f9;
    --sakura-pink: #ffb7c5;
    --sakura-deep: #e8a0b0;
    --blossom: #f8c8d8;
    --branch-brown: #8b7355;
    --leaf-green: #7a9e7e;
    --ink-black: #2d2d2d;
    --paper-cream: #fdfbf7;
    --gold-accent: #c9a959;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.9;
    color: var(--ink-black);
    background: var(--paper-cream);
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--sakura-pink) 0%, 
        transparent 30%,
        transparent 70%,
        var(--blossom) 100%);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Japanese */
.site-header {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    z-index: 1000;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--sakura-deep) 30%, 
        var(--sakura-deep) 70%, 
        transparent 100%);
}

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

.site-logo a {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink-black);
    text-decoration: none;
    position: relative;
    padding-left: 2.5rem;
}

.site-logo a::before {
    content: '\2740';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--sakura-pink);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.site-nav a {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--ink-black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '\2740';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    color: var(--sakura-pink);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.site-nav a:hover {
    color: var(--sakura-deep);
}

.site-nav a:hover::after {
    transform: translateX(-50%) scale(1);
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.section.head::before {
    content: '\685C';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Serif JP', serif;
    font-size: 4rem;
    color: var(--sakura-pink);
    opacity: 0.3;
}

.section.head h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--ink-black);
    letter-spacing: 0.1em;
}

.section.head p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.05rem;
    color: var(--ink-black);
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 183, 197, 0.1) 0%, 
        rgba(248, 200, 216, 0.15) 100%);
    border-radius: 4px;
    position: relative;
}

.section.head p::before {
    content: '\300C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.5rem;
    color: var(--sakura-deep);
}

.section.head p::after {
    content: '\300D';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--sakura-deep);
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section header {
    text-align: center;
    margin-bottom: 4rem;
}

.section header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--ink-black);
    letter-spacing: 0.1em;
}

.section header h2::before,
.section header h2::after {
    content: '\2014';
    margin: 0 1rem;
    color: var(--sakura-pink);
}

.section header p {
    font-size: 1rem;
    color: var(--ink-black);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--sakura-light);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--sakura-pink), 
        var(--blossom), 
        var(--sakura-deep));
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    font-family: 'Noto Serif JP', serif;
    color: var(--ink-black);
    line-height: 2;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--ink-black);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--sakura-deep);
}

.footer-links a:hover::before {
    content: '\2740 ';
    color: var(--sakura-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--blossom);
}

.copyright a {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--ink-black);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Animations */
@keyframes petalFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: softRise 0.8s ease forwards;
}

@keyframes softRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink-black);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    padding-left: 1rem;
    border-left: 3px solid var(--sakura-pink);
}
