* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #ffffff;
    line-height: 1.6;
}

/*///////////////////////NAVBAR STUFF/////////////////////////////*/

.navbar {
    background-color: #0077cc;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* space between logo and buttons */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logoImage {
    width: 200px;
    margin-top: -4px;
    margin-bottom: -14px;
}

/*Logo image phone adapted*/
@media only screen and (max-width: 600px) {
    .logoImage {
        width: 150px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}


.logo-link, .logo-link:hover, .logo-link:active, .logo-link:visited, .logo-link:link, .logo-link:target, .logo-link:focus {
    text-decoration: none;
    color: white;
}



/* HAMBURGER BUTTON */
.hamburger {
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    line-height: 5px;
}

/* OVERLAY (click outside to close) */
#sideMenuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 999;
}

/* SIDE MENU */
#sideMenu {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -3px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    transition: right .3s ease;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* CLOSE BUTTON */
.close-btn {
    color: #0077cc;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    float: right;
    width: 0;
}

.close-btn:hover {
    color: #004e86;
}


.side-menu-links {
    margin-top: 50px;
}


.inactivePage {
    color: #0077cc;
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 0 5px 15px;
    margin: 0 0 10px 10px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.inactivePage:hover {
    color: #004e86;
    transform: scale(1.1);
    transform: translateX(10px);
}



.activePage {
    color: #0077cc;
    filter: brightness(0.7);
    border-radius: 5px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 0 5px 15px;
    margin: 0 0 10px 10px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}



.side-menu-footer {
    margin-top: auto;
}

/* FOOTER LINKS AT BOTTOM */
.side-menu-footer a {
    display: block;
    font-size: 14px;
    padding: 5px 0;
    color: #666;
    text-decoration: none;
}

.side-menu-footer a:hover {
    color: #333;
}

/* WHEN MENU IS ACTIVE */
#sideMenu.active {
    right: 0;
}

#sideMenuOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hide menu instantly before JS runs */
#sideMenu,
#sideMenuOverlay {
    transition: right 0.3s ease, opacity 0.3s ease;
}

body.menu-preload #sideMenu {
    right: -50% !important; /* hide instantly */
    transition: none !important; /* disable animation */
}

body.menu-preload #sideMenuOverlay {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: none !important;
}

/* Desktop: Fixed-width menu */
@media (min-width: 700px) {
    #sideMenu {
        width: 350px;   /* pick any width you prefer */
        right: -350px;  /* hide completely off-screen */
    }

    #sideMenu.active {
        right: 0;
    }
}


/*///////////////////////NAVBAR STUFF END/////////////////////////////*/



.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: rgb(255, 255, 255);
    border:none;
}

.info {
    text-align: center;
    margin-bottom: 40px;
}

.info h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.info p {
    font-size: 18px;
    color: #555;
}


.cta-button {
    display: block;
    width: fit-content;
    margin: 20px auto 80px;
    background-color: #0077cc;
    color: white;
    padding: 15px 25px;
    font-size: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    filter: drop-shadow(0px 12px rgb(6, 0, 56));
    transition: transform 0.2s, filter 0.2s;
}

.cta-button:hover {
    background-color: #005fa3;
}

.cta-button:active {
    transform: translateY(12px);
    filter: drop-shadow(0px 0px rgb(6, 0, 56));
}


section {
    background: #fff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 0 16px 4px rgba(0, 0, 0, 0.2)
}


section h2 {
    font-size: 26px;
    color: #0077cc;
    margin-bottom: 15px;
}


ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    font-size: 18px;
    margin-bottom: 8px;
    position: relative;
}

ul li::before {
    content: "✔";
    color: #0077cc;
    font-weight: bold;
    margin-right: 10px;
}


.how-it-works p,
.contact p {
    font-size: 18px;
    margin-bottom: 10px;
}


.price {
    font-size: 1em;
    line-height: 1.4;
}

.rut-note {
    display: block;
    font-size: 0.85em;
    color: #5e5e5e;
    margin-top: 0.3em;
}

.normal-price {
    display: block;
    font-size: 0.8em;
    color: #5e5e5e;
    margin-top: 0.2em;
}

.contact strong {
    font-size: 18px;
    color: #333;
}

.contact a {
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

#existingBooking {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#existingBooking p, #existingBooking h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#ExistingBookingDivider {
    border: 0;
    height: 0.5px;
    background-color: #0077cc;
    padding: 0;
    margin: 10px 0;
}


.siteLinks {
    color: #0077cc;
}

.siteLinks:visited {
    color: #0077cc;
}

.siteLinks:hover {
    color: #004e86;
}

.siteLinks:active {
    color: #004e86;
}


/* --- FOOTER --- */
.footer {
    bottom: 0;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 0px;
    color: #555;
    font-size: 0.9em;
}

.footer p {
    margin: 2px 0px;
    padding: 0px 0px;
}


@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .info h1 {
        font-size: 28px;
    }

    .info p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 25px;
        padding: 12px 20px;
        margin: 20px auto 45px;
    }

    section h2 {
        font-size: 22px;
    }

    ul li {
        font-size: 16px;
    }
}