/* mujun.cafe */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #d4c5a9;
    color: #2d2416;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(45, 36, 22, 0.02) 35px, rgba(45, 36, 22, 0.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(45, 36, 22, 0.02) 35px, rgba(45, 36, 22, 0.02) 70px);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #d4c5a9;
}

.hero-content {
    text-align: center;
}

.coffee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
}

.coffee-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 60px;
    left: 15px;
    top: 10px;
    border: 3px solid #8b5e3c;
    border-radius: 0 0 8px 8px;
    background: rgba(139, 94, 60, 0.05);
}

.coffee-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 35px;
    right: 10px;
    top: 25px;
    border: 3px solid #8b5e3c;
    border-left: none;
    border-radius: 0 20px 20px 0;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    color: #8b5e3c;
    margin-top: 1rem;
    font-style: italic;
}

.menu {
    max-width: 550px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 100vh;
}

.paper-card {
    background: #c4b495;
    border: 2px solid #a89474;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(45, 36, 22, 0.08);
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(45, 36, 22, 0.01) 2px, rgba(45, 36, 22, 0.01) 4px);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d2416;
}

.card-text {
    font-size: 0.95rem;
    color: #4a3820;
    line-height: 1.7;
}

.napkin-note {
    background: #c4b495;
    border: 1px dashed #a89474;
    padding: 1.5rem;
    max-width: 280px;
    margin: 0.5rem auto;
    box-shadow: 0 2px 6px rgba(45, 36, 22, 0.06);
}

.napkin-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: #6b5234;
}

.chalkboard {
    background: #2d2416;
    color: #e8dcc8;
    text-align: center;
    padding: 8rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chalk-title {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d4c5a9;
    letter-spacing: 2px;
}

.chalk-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(1.3rem, 4vw, 2rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.close {
    text-align: center;
    padding: 4rem 2rem;
    background: #d4c5a9;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.open-label {
    font-size: 1rem;
    color: #8b5e3c;
    letter-spacing: 1px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2d2416;
    display: block;
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
