//* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Vancouver skyline background */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: url("./images/vancouver.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Homepage overlay */
.overlay {
    text-align: center;
    padding: 2rem 3rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid #333;
    max-width: 480px;
}

.site-logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 1rem;
}

.overlay p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ccc;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #e53935;
    color: #fff;
    border: 1px solid #b71c1c;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
    background: #ff5252;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Inner pages */
.page {
    max-width: 960px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    border: 1px solid #333;
}

.page h1 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.page p {
    margin-bottom: 0.75rem;
    color: #ddd;
}

.page a {
    color: #ff5252;
    text-decoration: none;
}

.page a:hover {
    text-decoration: underline;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.card {
    background: #1b1b1b;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 1rem;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card .meta {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

