body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #7e252b;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

header h1 {
    font-size: 2rem;
    margin: 0;
    font-family: "TASA Orbiter", sans-serif;
    font-weight: 700;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.header-nav li {
    display: inline-block;
    margin: 0.5rem;
}

.header-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: transform 0.2s;
    font-family: "TASA Orbiter", sans-serif;
    display: inline-block;
    font-weight: 700;
}

.header-nav a:hover {
    transform: scale(1.15) !important;
}

.logo {
    height: 176px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.logo-link {
    display: block;
}

.logo-link:hover .logo {
    transform: scale(1.08);
}

main {
    margin: 2rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.content-box {
    margin: 2rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.content-box.full-width {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.performance-item {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.performance-image {
    flex: 0 0 30%;
    margin-right: 1rem;
}

.performance-image img {
    width: 100%;
    aspect-ratio: 1 / 1.41421356;
    object-fit: cover;
    border-radius: 8px;
}

.performance-text {
    flex: 1;
    position: relative;
}

.performance-text h3 {
    margin-top: 0;
}

.continue-link {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #7e252b;
    text-decoration: none;
    font-weight: bold;
}

.continue-link:hover {
    text-decoration: underline;
}

.piece-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.piece-feature-image {
    flex: 0 0 35%;
}

.piece-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.image-credit {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.piece-feature-text {
    flex: 1;
    min-width: 0;
}

.piece-feature-text h3 {
    margin-top: 0;
}

@media (max-width: 600px) {
    .piece-feature {
        flex-direction: column;
    }

    .piece-feature-image {
        order: 2;
        flex-basis: auto;
    }

    .piece-feature-text {
        order: 1;
    }
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.photo-gallery img {
    width: calc(50% - 0.5rem);
    height: auto;
    border-radius: 8px;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: #7e252b;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 1rem;
    font-weight: bold;
}

input, select {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #7e252b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #9e2e35;
}

#reservation-form button,
#view-form button {
    background-color: #d3d3d3;
    color: #333;
}

#reservation-form button:hover,
#view-form button:hover {
    background-color: #b0b0b0;
}

#confirmation {
    text-align: center;
    margin-top: 2rem;
}

footer {
    text-align: center;
    display: none;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    color: #666;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.site-footer a {
    color: #666;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.tech-contact {
    margin: 0;
}

.todo-banner {
    background-color: #fff3cd;
    border: 1px solid #d4a017;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.placeholder {
    background-color: #fff3cd;
    border: 1px dashed #d4a017;
    border-radius: 3px;
    padding: 0 0.25rem;
}