:root {
    --swiss-red: #D52B1E;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--swiss-red);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.lang-switch {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.lang-switch a {
    color: var(--white);
    text-decoration: none;
    margin: 0 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lang-switch a:hover {
    opacity: 1;
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

section {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: var(--swiss-red);
    border-bottom: 2px solid var(--swiss-red);
    padding-bottom: 0.5rem;
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Honeypot field - hidden from humans */
.hp-field {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

button[type="submit"] {
    background-color: var(--swiss-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #b02318;
}

.message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    text-align: center;
    padding: 0;
    color: #fff;
    font-size: 0.9rem;
}

.footer-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-bg {
    width: 100%;
    height: auto;
    display: block;
}

.footer-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.footer-content a {
    color: #fff;
    text-decoration: underline;
}

.lineup-image {
    margin-top: 2rem;
    text-align: center;
}

.lineup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.detailed-programme ul {
    list-style-type: none;
    padding: 0;
}

.detailed-programme li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--swiss-red);
    display: flex;
    align-items: baseline;
}

.detailed-programme .time-slot {
    flex: 0 0 60px;
    margin-right: 1rem;
    font-weight: bold;
}

.detailed-programme li span {
    flex: 1;
}

.detailed-programme h3 {
    margin-top: 1.5rem;
    color: var(--swiss-red);
}
