* {
    box-sizing: border-box;
    touch-action: manipulation;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
    font-family: sans-serif;
    background-color: #F2F1EE;
}

body {
  overscroll-behavior: none;
}

.burger_menu {
    /* Dimensions */
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: transparent;
    border: none;
    padding: 0;

    cursor: pointer;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}



.home_header {
    display: grid;
    height: 10vh;
    grid-template-columns: 1fr 2fr 7fr;
    align-items: center;
    justify-items: start;
    padding: 0px 5vh;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    grid-column: 1;
    height: 80%;
    width: auto;
    object-fit: contain;
}

.burger_menu {
    display: none;
}

.nav_menu {
    display: none;
}

@media (max-width: 768px) {
    .home_layout {
        display: flex;
        flex-direction: column;
    }

    .home_header {
        display: flex;
        height: 10vh;
        align-items: center;
        justify-content: space-between;
        padding: 0px 40px;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    }

    .logo {
        padding: 15px 0px;
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .burger_menu {
        display: flex;
    }

    .nav_menu {
        display: none;
    }

    .home_content {
        display: grid;
        grid-template-rows: 3fr 1fr;
        height: 100%;
        width: 100%;
    }

    .slideshow_container {
        display: flex;
        grid-row: 1;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .slideshow_container__image {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 3;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    }

    .cta_container {
        display: flex;
        grid-row: 2;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .book_button, .gallery_button{
        /* --- Visuals --- */
        display: inline-block;
        /* Ensures padding and margins work, good for <a> tags */
        background-color: #F2F1EE;
        color: #000000;
        /* Black text */
        border: none;

        /* --- Spacing & Shape --- */
        /* This padding is what makes it look like a button */
        padding: 12px 28px;
        border-radius: 50px;
        /* This creates the "pill" shape */

        /* --- Typography --- */
        font-size: 16px;
        font-weight: 600;
        /* Bolder text for a CTA */
        text-decoration: none;
        /* Removes underline if it's an <a> tag */

        /* --- Interaction --- */
        cursor: pointer;
        transition: all 0.2s ease-in-out;

        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1),
            0 0 20px 0 rgba(0, 0, 0, 0.08);

    }

    .book_button:active, .gallery_button:active {
        /* Click-down effect */
        transform: scale(0.98);
    }

}