/* Hyper Minimalism Style - Dark Theme */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    background: #000;
    max-width: 680px;
    margin: 0;
    padding: 80px 24px 120px 48px;
}

/* Typography */
h1 {
    font-weight: 200;
    font-size: 42px;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: #fff;
}

h2 {
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 48px;
    padding-bottom: 0;
    border: none;
    display: block;
}

h3 {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

p {
    color: #888;
    margin-bottom: 0;
}

/* Intro Section */
.intro {
    margin-bottom: 80px;
    padding-bottom: 0;
    border: none;
}

.intro h2 {
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 24px;
}

.intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #999;
}

/* Sections */
section {
    margin-bottom: 80px;
}

section > h2 {
    margin-bottom: 40px;
    position: relative;
}

section > h2::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: #333;
    margin-top: 16px;
}

/* Place Cards - Hyper Minimal */
.place {
    margin-bottom: 48px;
    padding: 0;
    background: transparent;
    border: none;
}

.place:last-child {
    margin-bottom: 0;
}

.place h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.place p {
    font-size: 15px;
    line-height: 1.85;
    color: #aaa;
}

/* Category Labels - Subtle */
.category {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 8px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.category.landmark { color: #444; }
.category.nature { color: #444; }
.category.culture { color: #444; }
.category.local { color: #444; }

/* Navigation - Minimal Fixed Menu */
.menu {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #0a0a0a;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    border: 1px solid #1a1a1a;
    z-index: 100;
}

.menu-title {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 4px;
}

.menu a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: #fff;
}

#back-to-top {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #1a1a1a;
    color: #888;
    font-size: 12px;
}

#back-to-top:hover {
    color: #fff;
}

#home-link {
    margin-top: 4px;
    padding-top: 0;
    color: #888;
    font-size: 12px;
}

#home-link:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 48px 20px 140px;
    }

    h1 {
        font-size: 32px;
    }

    .intro {
        margin-bottom: 60px;
    }

    section {
        margin-bottom: 60px;
    }

    .menu {
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 16px 20px;
        border: none;
        border-top: 1px solid #1a1a1a;
    }

    .menu-title {
        display: none;
    }

    #back-to-top {
        margin: 0;
        padding: 0;
        border: none;
    }

    #home-link {
        margin: 0;
        padding: 0;
    }
}

/* Selection styling */
::selection {
    background: #fff;
    color: #000;
}

/* Link styling within content */
.place a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: border-color 0.2s ease;
}

.place a:hover {
    border-color: #fff;
}

/* ===========================================
   Extended Components for onepage & general
   =========================================== */

/* Section dividers */
section {
    margin-bottom: 80px;
}

section:last-of-type {
    margin-bottom: 0;
}

.section {
    margin-bottom: 64px;
    padding-bottom: 0;
    border: none;
}

.section:last-child {
    margin-bottom: 0;
}

/* Lists - Minimal */
ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 1px;
    background: #444;
}

ul li strong {
    color: #ccc;
    font-weight: 500;
}

/* Cards - Hyper Minimal */
.card {
    background: transparent;
    border: none;
    border-left: 1px solid #222;
    padding: 0 0 0 20px;
    margin-bottom: 32px;
}

.card h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.card p {
    margin: 4px 0;
    font-size: 14px;
    color: #999;
}

.card a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.card a:hover {
    color: #fff;
}

.card .icon {
    color: #444;
    margin-right: 6px;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

/* Emergency Card - Subtle accent */
.card.emergency {
    border-left: 1px solid #444;
}

.card.emergency h4 {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.emergency-number {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
}

/* Phrases Table - Minimal */
.phrases-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.phrases-table th {
    text-align: left;
    padding: 12px 0;
    background: transparent;
    border-bottom: 1px solid #333;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

.phrases-table td {
    padding: 14px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
    color: #999;
}

.phrases-table tr:hover {
    background: transparent;
}

.phrases-table tr:hover td {
    color: #888;
}

.phrases-table .czech {
    color: #fff;
    font-weight: 400;
}

.phrases-table .pronunciation {
    color: #888;
    font-style: normal;
    font-size: 13px;
}

/* Facts - Minimal */
.fact {
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
}

.fact:last-child {
    border-bottom: none;
}

.fact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.fact strong {
    color: #fff;
    font-weight: 500;
}

/* Prague Time - Minimal */
.prague-time {
    background: transparent;
    border: none;
    border-left: 1px solid #333;
    padding: 16px 0 16px 20px;
    display: block;
    margin-top: 24px;
    font-size: 14px;
    color: #888;
}

.prague-time .time {
    font-size: 28px;
    font-weight: 200;
    color: #fff;
    letter-spacing: 2px;
    display: block;
    margin-top: 4px;
}

/* Links in content */
a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
}

/* Nested lists in cards */
.card ul {
    margin: 12px 0 0 0;
}

.card ul li {
    margin-bottom: 8px;
    padding-left: 12px;
}

.card ul li::before {
    width: 3px;
    top: 10px;
}
