body {
    font-family: Raleway, sans-serif;
    background: #1c1c1d;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Headings */
h1, h2, h3, h5 {
    text-align: center;
    font-style: italic;
    color: whitesmoke;
}

h1 {
    font-weight: bold;
    letter-spacing: 4px;
    font-size: clamp(1.5rem, 2vw + 1.5rem, 2.5rem);
    color:rgb(211, 127, 24);
}

h2 {
    font-size: 22px;
    padding: 0px;
    margin: 0 5px 5px;
    font-family: Merriweather, sans-serif;
    text-shadow: 0px 2px #1c1c1d;
    border-radius: 10px;
}

h3 {
    font-weight: bold;
    margin-top: 3px;
    font-size: calc(1rem + 1vw);
}

h5 {
    font-weight: bold;
    margin-top: 10px;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 4px 0px #5f5d5d63;
}

p {
    text-align: center;
    color: whitesmoke;
    font-size: 18px;
}

/* Logo */
.LOGO {
    width: 80%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 10px auto;
}

/* Layout */
.container {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    max-width: 700px;
    background-color: #af9d8015;
    border-radius: 15px;
}

header {
    margin-bottom: 20px;
}

/* Cancel and Search Containers */
.cancel-container, .search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px;
    margin: 0 auto;
    width: 70%;
    max-width: 500px;
}

/* Forms */
#cancel-form, #search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#booking-id, #refund-required, #email  {
    min-height: 30px;
    min-width: 300px;
    width: 50%;
    font-size: 18px;
    padding: 5px;
    margin: 5px;
    margin-bottom: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

button {
    background-color: #2d7027;
    padding: 10px;
    min-width: 30%;
    border-radius: 10px;
    color: whitesmoke;
    font-family: Merriweather, sans-serif;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin: 10px auto;
    text-shadow: 0px 2px #0f0f0f;
}

button:hover {
    background-color: #2b8e14;
}

/* Messages */
#message, #search-message {
    font-size: 36px;
    font-family: Merriweather, sans-serif;
    text-transform: capitalize;
    text-align: center;
}

/* Booking entries */
.booking-entry {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: whitesmoke;
}

.booking-entry:hover {
    border-color: #0056b3;
    cursor: pointer;
    background-color: #4c4a4a;
}

.booking-entry span.email {
    font-weight: bold;
    color: #8a2828;
}

/* Footer */
.site-footer {
    background-color: #1c1c1d;
    color: whitesmoke;
    padding: 20px 0;
    text-align: center;
    font-family: Merriweather, sans-serif;
    width: 100%;
}

.footer-content {
    max-width: 90%;
    margin: 0 auto;
}

.footer-content p {
    margin: 0;
    font-size: 16px;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: whitesmoke;
    text-decoration: none;
    margin: 0 5px;
    font-size: 16px;
}

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

/* Media Queries */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .footer-nav a {
        display: block;
        margin: 5px 0;
    }
}
