 
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+SK:wght@100..400&display=swap');


body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    position: relative;
    background: url('../assets/gal_5.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 0 0 25px 25px;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
}

.header-text {
    padding: 20px;
    text-align: right;
    margin-right: 20px;
}

.header-text h1 {
    color: #F3F3F3;
    font-size: 2em;
    margin: 0;
}

.events-content {
    padding: 40px 20px;
    background-color: #FAFAFA;
    flex: 1;
}

.event {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #FFF;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.event-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.event-details {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h3 {
    margin-top: 0;
}

.event-details p {
    font-size: 1em;
    line-height: 1.6;
}

.event-details strong {
    display: block;
    margin-top: 10px;
    font-size: 1.2em;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #FFF;
    box-sizing: border-box;
    font-size: 0.9em;
}

.bottom-footer p {
    margin: 0;
}

.bottom-footer a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
}

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

.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background-color: #ffbb00;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0056b3;
}

.btn-primary:focus, .btn-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #00336a;
    opacity: 0.65;
    cursor: not-allowed;
}

.reservation-button {
    position: absolute;
    top: 20px;
    left: 150px;
    padding: 10px 20px;
}

.reservation-button a {
    color: white;
    text-decoration: none;
padding: 10px;
}

.reservation-button a:hover {
    color: #ccc;
}

