/*
Theme Name: Pobite Talerze - Informacja
Description: Prosta strona informacyjna dla restauracji Pobite Talerze.
Author: Pobite Talerze
Version: 1.0
*/

* {
    box-sizing: border-box;
}

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

body {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    color: #f4f1ea;
    background-color: #0a0a0a;
    background-image: url('assets/tlo.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 0;
}

.card {
    position: relative;
    z-index: 1;
    max-width: 680px;
    width: 100%;
    background: rgba(10, 10, 10, 0.62);
    border: 1px solid rgba(244, 241, 234, 0.25);
    border-radius: 6px;
    padding: 56px 48px;
    text-align: center;
    backdrop-filter: blur(3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.card .divider {
    width: 70px;
    height: 1px;
    background: rgba(244, 241, 234, 0.5);
    margin: 22px auto;
}

.card h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 2.3rem;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
    color: #ffffff;
}

.card .subtitle {
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.7);
    margin-bottom: 8px;
}

.card .date-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8b96a;
    border: 1px solid rgba(232, 185, 106, 0.5);
    padding: 6px 16px;
    border-radius: 999px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.25rem;
    line-height: 1.65;
    margin: 18px 0;
    color: #f4f1ea;
}

.card p.lead {
    font-size: 1.4rem;
    color: #ffffff;
}

.card p.small {
    font-size: 1rem;
    color: rgba(244, 241, 234, 0.65);
    margin-top: 30px;
}

.card .signature {
    margin-top: 34px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(244, 241, 234, 0.85);
}

@media (max-width: 640px) {
    .card {
        padding: 40px 26px;
    }
    .card h1 {
        font-size: 1.8rem;
    }
    .card p {
        font-size: 1.1rem;
    }
    .card p.lead {
        font-size: 1.2rem;
    }
}
