body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: lightgreen;
    color: #ff44;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #333;
    color: white;
}


.logo {
    width: 120px;
}

.logo-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
}

.logo-title-top,
.logo-title-bottom {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: #008000;
}


.header-container .logo {
    width: 132px;
    height: 60px;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
}

.logo-title-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.header-container nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 10px;
}

.header-container nav ul li {
    margin: 0 15px;
}

.header-container nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 20px;
}


.nav-menu {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    background-color: #333;

}

.nav-menu:hover {
    color: #f1c40f;
}

.nav-menu.show {
    display: flex;

}

.auth-buttons {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}


.auth-buttons .btn_nav,
.auth-buttons .contact {
    margin: 5px 0;
    width: 100%;
    text-align: center;
}


.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.auth-buttons .btn_nav {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 5px;
    transition: 0.3s;
}

.auth-buttons .btn_nav:hover {
    background: white;
    color: #333;
}

.contact {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.nav-bar {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
}

.nav-bar.active {
    display: flex;
}



.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 10px;
}

.nav-bar ul li {
    margin: 0 15px;
}

.nav-bar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.nav-bar .logo {
    width: 132px;
    height: 60px;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
}

.contact-button a {
    background-color: #f1c40f;
    padding: 0.5em 1em;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


.hero {
    position: relative;
    height: 400px;
    background-size: cover;
    color: #fff;
}
.hero h1 p{
    font-style:italic;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    padding: 5em 1em;
    font-weight: lighter;
    font: size 26px;
    margin-top: 20px;
}

.cta-button {
    background-color: #f1c40f;
    padding: 0.5em 1.5em;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.booking-section {
    padding: 30px;
    background-color: #f8f8f8;
}

.booking-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.booking-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus {
    border-color: #f1c40f;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(241, 196, 15, 0.5);
}

.booking-button {
    background-color: #f1c40f;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-button:hover {
    background-color: #dab90f;
}

.swish-payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #56cbbe;
    border-radius: 10px;
    margin: 2em auto;
    max-width: 90%;
    height: 680px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swish-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.swish-details {
    flex: 1;
    min-width: 250px;
}

.swish-qr {
    flex: 1;
    min-width: 250px;
    text-align: center;
    color: #000
}

.swish-qr img {
    max-width: 220px;
    height: auto;
    color: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.swish-details h2 {
    color: #000;
    font-size: 24px;
    margin-bottom: 1em;
}

.swish-details h2 a {
    text-decoration: none;
}

.swish-details h3 {
    color: #000;
    font-size: 18px;
    margin-top: 1em;
    font-weight: bold;
}

.swish-details p {
    color: #008000;
    font-size: 18px;
    margin-top: 1em;
    font-weight: bold;
}

.policy-link {
    text-align: center;
    margin-top: 1em;
    color: #000000
}

.policy-link a {
    color: #008000;
    text-decoration: underline;
    font-weight: bold;
}


.section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 2em 0;
}

.section-box {
    flex: 1;
    max-width: 30%;
    padding: 1.5em;
    background-color: #56cbbe;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.section-box h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 0.5em;
}


.section-box p,
.section-box ul {
    font-size: 1em;
    color: #000;
    line-height: 1.5;
    text-align: left;
}

.booking-info {
    text-align: center;
    padding: 2em;
    background-color: #f1c40f;
    font-size: 1.5em;
    color: #000;
    height: 98px;
}

.booking-info h2 a {
    text-decoration: none;
}

.booking-number {
    color: blue;
    font-size: 1em;
    font-weight: bold;
    
}

.app-info {
    padding: 2em;
    text-align: center;
}

.app-info ul {
    list-style: none;
    padding: 0;
}

.app-info ul li {
    margin: 0.5em 0;
}

.download-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.5em 1em;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}


footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1em;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    display: inline;
    margin-right: 1em;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 1em;
}

.cookie-policy-section {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: skyblue;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-policy-section h1 {
    font-size: 2em;
    color: #008000;
    margin-bottom: 1em;
    text-align: center;
}

.cookie-policy-section h2 {
    color: #008000;
    font-size: 1.5em;
    margin-top: 1.5em;
}

.cookie-policy-section p,
.cookie-policy-section ul {
    font-size: 1em;
    color: #000;
    line-height: 1.6;
    margin-top: 0.5em;
}

.cookie-policy-section ul {
    margin-left: 20px;
    list-style-type: disc;
}

.cookie-policy-section a {
    color: #008000;
    text-decoration: none;
    font-weight: bold;
}

.cookie-policy-section a:hover {
    text-decoration: underline;
}

.privacy-section {
    max-width: fit-content;
    padding: 10px;
    background-color: lightblue;
    color: green;
}

.footer-container {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    display: inline;
    margin: 0 28px;
}

.footer-container ul li a {
    color: skyblue;
    text-decoration: none;
    font-weight: bold;
}


.cookie-notice button {
    background-color: #f1c40f;
    border: none;
    padding: 0.5em;
    margin-left: 1em;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
}

.payment {
    text-align: center;
    padding: 2em;
    background-color: #f9f9f9;
}

.payment form {
    margin: 1em auto;
    max-width: 400px;
    padding: 1em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.payment input {
    display: block;
    width: 100%;
    margin: 0.5em 0;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#pay-button {
    background-color: #f1c40f;
    color: #000;
    border: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    cursor: pointer;
}

#pay-button:hover {
    background-color: #dab90f;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;

    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    /* .auth-buttons {
        display: none;
    } */

    .nav-toggle {
        display: block;
    }

    footer{
        
        padding-top: 4px;
        margin-top: 40px;
    }

    .booking-info {
        font-size: 1em;
        padding-bottom: 28px;
        
    }
    
}

/* Responsive Design */
@media (max-width: 576px) {
    body {

        font-size: 0.9rem;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-container nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        background-size: contain; /* Scale the background to fit within the container */
        height: auto; /* Adjust height to fit content */
        background-position: center; /* Center the image */
        background-repeat: no-repeat; /* Prevent tiling */
        padding: 4px 2px; /* Add some padding for smaller screens */
    }

    .hero-content {
        text-align:center;
        padding: 8px 6px;
        font-size: 1.2rem;
    }

    .section-box {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .booking-container {
        padding: 10px;
        width: 100%;
    }

    .swish-payment {
        flex-direction: column;
        height: auto;
    }

    .swish-details,
    .swish-qr {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .section-container {
        flex-direction: column;
        gap: 20px;
        align-items: center; /* Optional: Center the sections */
    }

    .section-box {
        max-width: 90%; /* Ensures the sections take up most of the screen width */
    }

    .form-group input {
        font-size: 14px;
        padding: 10px;
    }

    .booking-button {
        font-size: 16px;
        padding: 10px;
    }

    .nav-toggle {
        cursor: pointer;
        font-size: 24px;
        color: #fff;
    }

    .nav-bar {
        width: 100%;
        padding: 10px;
    }

    .booking-info {
        font-size: 1em;
        padding-bottom: 20px;
        
    }

    .footer-container ul li {
        margin: 0 32px;
    }

}

@media (max-width: 480px) {
    .booking-info {
        padding-bottom: 60px;
        padding-top:0px;
    }

    .booking-info a {
        padding-bottom: 60px;
        padding-top:0px;
    }

    footer{
        
        padding-top: 2px;
        margin-top: 20px;
    }

    .hero-content {
        margin: 0px;
        
    }
}