
* {
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
    margin: 0;
}

table, th, td {
    border: 1px dotted;
    padding: 2px 4px 2px 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
}



/* Header*/
.header {
    text-align: center;
    background: url(../images/gallery/CabinInTheWoods_Aug2023.jpg) no-repeat center;
    background-color: #474747;
    color: black;
}

a:hover {
    background-color: #eeeeee;
}


/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
    overflow: hidden;
    background-color: #6a818c;
    position: sticky;
    position: -webkit-sticky;
    font-size: 16px;
    top: 0;
    border-bottom: dotted gray 1px;
    border-top: dotted gray 1px;
}

    /* Style the navigation bar links */
    .navbar a {
        float: right;
        display: block;
        color: navy;
        text-align: left;
        padding: 5px 15px 5px 15px;
        text-decoration: none;
    }


/* Right-aligned text */
.navbar-right {
    float: right;
    padding: 5px 15px 5px 15px;
    color: #d1ebed;
    font-style: italic;
    font-size: 13px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
    font-size: 15px;
    cursor: pointer;
    background-color: #6a818c;
    font-weight: bold;
    color: navy;
    padding: 5px 15px 5px 15px;
    border: none;
}

    .openbtn:hover {
        background-color: #ddd;
    }



/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: navy;
}

/* Active/current link */
.navbar a.active {
    background-color: #6a818c;
    color: navy;
}


/* Calendar CSS */
.responsiveCal {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

    .responsiveCal iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

@media all and (min-width: 768px) {
    .deskContent {
        display: block;
    }

    .phoneContent {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .deskContent {
        display: none;
    }

    .phoneContent {
        display: block;
    }
}


/* --------END Calendar CSS */





/* Column container */
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    background-color: #a3d8db;
    padding: 20px;
    text-align: left;
}

    .side a {
        text-decoration: none;
    }

/* Main column */
.main {
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: #d1ebed;
    padding: 20px;
}

    .main a {
        text-decoration: none;
    }


/* Footer */
.footer {
    text-align: center;
    padding: 50px 0px 50px 0px;
    background: url(../images/Footer_U_Truckee.jpg) no-repeat top;
    background-color: #5a544e;
    color: black;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}




/* The sidepanel menu */
.sidepanel {
    height: 300px; /* Specify a height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #a87675; /* Dark Green*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 50px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
    /* border:dotted gray 1px; */
    /* box-shadow: 5px 10px #888888; */
}


    /* The sidepanel links */
    .sidepanel a {
        padding: 4px 8px 0px 32px;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        color: navy;
        display: block;
        transition: 0.3s;
    }


        /* When you mouse over the navigation links, change their color */
        .sidepanel a:hover {
            background-color: #ddd;
        }

    /* Position and style the close button (top right corner) */
    .sidepanel .closebtn {
        background-color: #a87675; /* Dark Green*/
        position: absolute;
        top: 0;
        right: 25px;
        color: navy;
        font-size: 30px;
        margin-left: 50px;
        border: none;
    }

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    #myImg:hover {
        opacity: 0.7;
    }

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(8,5,2); /* Fallback color */
    background-color: rgba(8,5,2,0.95); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ccc;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
