body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    z-index: -1;
    background: url("../harpa_ceiling.webp") no-repeat center center;
    background-size: cover;
    transform: translateZ(0);
}

.container {
    margin: 0 auto;
    width: 70%;
    padding-top: 60px;
    position: relative;
}

h1 { font-size: 3em; margin-bottom: 0.5rem; }
p { font-size: 1.5em; line-height: 1.4em; color: #333; }
a { text-decoration: none; color: #0660FE; transition: color 0.2s; }
a:hover { text-decoration: underline; color: #0046cc; }

.divider {
    border: 0;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 3rem 0;
}


footer {
    margin-top: 50px;
    padding: 30px 0 60px;
    border-top: 1px solid #000;
}

footer ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}

footer ul li a {
    font-size: 1.3em;
    color: #333;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container { width: 90%; padding-top: 40px; }
    h1 { font-size: 2.2em; }
    p { font-size: 1.2em; }
}

#status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.visible-success { display: block !important; background: #d1fae5; color: #065f46; }
.visible-error { display: block !important; background: #fee2e2; color: #991b1b; }

.cf-turnstile {
    display: flex;
    width: 100%; /* Forces it to its own line for a cleaner look */
    margin-bottom: 10px;
}

.subscribe-break {
    background: var(--accent-color);
    color: white;
}

.subscribe-break h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2.5rem;
    margin-top: 0;
    text-transform: lowercase;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap; /* Allows Turnstile to wrap on smaller screens */
}

.subscribe-form input {
    padding: 15px 20px;
    border: none;
    width: 100%;       /* Change from 350px to 100% */
    max-width: 350px;  /* Keeps it from getting too wide on desktop */
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.subscribe-form button {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 1rem;
}