/* Add your desired styles here */
/* Header */
:root {
    --spacing-company: 3rem;
    --font-weight: 400;
    --border-radius: 0;
    --primary: #2f2f2f; /*Text Color*/
    --primary-hover: #792d33;
}

.hero {
    background-image: url("assets/Luftaufnahme_(c) Koblenz-Touristik, Dominik Ketz.jpg");
    background-position: center;
    background-size: cover;
}

header {
    padding: var(--spacing-company) 0;
}

    header hgroup {
        margin-bottom: var(--spacing-company);
    }

/* Nav */
summary[role="link"].contrast:is([aria-current],:hover,:active,:focus) {
    background-color: transparent;
    color: var(--primary-hover);
}

/* Main */
@media (min-width: 992px) {
    main .grid {
        grid-column-gap: var(--spacing-company);
        grid-template-columns: auto 33%;
    }
}

form.grid {
    grid-row-gap: 0;
}

#countdown {
    font-size: 36px; /* Change this value to your desired font size */
}

.timetable {
    max-width: 1200px;
    margin: 0 auto;
}

.day {
    border: 1px solid #2f2f2f;
    margin-bottom: 5px;
}

/* Style the indicator icon */
.accordion i {
    margin-left: 5px; /* Adjust the spacing as needed */
    transition: transform 0.5s ease; /* Add a smooth transition effect */
}

/* Rotate the indicator when the panel is open */
.accordion.active i {
    transform: rotate(180deg);
}

.accordion {
    background-color: #792d33;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

.panel {
    display: none;
    padding: 20px;
    background-color: #ffff;
}

.event {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
}

.event-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-name {
    font-weight: bold;
}

.event-time {
    font-size: 0.9em;
    color: #777;
}

.break {
    background-color: #9a2730;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}
