@charset "UTF-8";
/* CSS Document */
/* Tom Hunter Photography © */



/* TOP OF PAGE BUTTON */

/* 1. Prepare your main content container */
.main-content {
    position: relative;
    /* This acts as an anchor for the button */
}

/* 2. Update your button styles */
#toppage {
    z-index: 7;
    min-height: 50px;
    height: 80px;
    width: 80px;

    /* CHANGE THIS: Keeps it pinned to the bottom-right of the main content */
    position: fixed;
    right: 20px;
    /* Distance from the right edge of the main content */
    bottom: 20px;
    /* Distance from the bottom of the main content */

    /* Keep your existing styling */
    background-image: url(text/top80wht.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #026b96;

    /* Clean up unused desktop margins */
    margin-bottom: 0;
    margin-right: 0;
    clear: both;
}

#toppage:hover {
    background-color: #9b968c;




}



/* 3. Adjust for mobile inside your existing media query */
@media screen and (max-width: 750px) {
    #toppage {
        right: 45px;
        /* Pulls it slightly closer to the edge on mobile */
        bottom: 45px;

        background-size: contain;
    }
}



/* NAVAGATION TAGS */


#rephototag {
    /* CHANGE THIS: Keeps it pinned to the bottom-right of the main content */
    z-index: 7;
    position: fixed;
    left: 0px;
    /* Distance from the right edge of the main content */
    top: 175px;
    /* Distance from the bottom of the main content */
    height: 100px;
    width: 70px;
    margin-top: 75px;
    background: url(icons/homeicon.png);
    background-repeat: no-repeat;
    background-size: 55px 55px;
    background-attachment: fixed;
    background-position: center;
    background-color: #026b96;
    clear: both;
}

#rephototag:hover {
    background-color: #9b968c;
}


#vrtourtag {
    /* CHANGE THIS: Keeps it pinned to the bottom-right of the main content */
    z-index: 7;
    position: fixed;
    left: 0px;
    /* Distance from the right edge of the main content */
    top: 300px;
    /* Distance from the bottom of the main content */
    height: 100px;
    width: 70px;
    margin-top: 75px;
    background: url(icons/360icon2.png);
    background-repeat: no-repeat;
    background-size: 55px 55px;
    background-attachment: fixed;
    background-position: center;
    background-color: #026b96;
    clear: both;
}

#vrtourtag:hover {
    background-color: #9b968c;
}


#vidtourtag {
    /* CHANGE THIS: Keeps it pinned to the bottom-right of the main content */
    z-index: 7;
    position: fixed;
    left: 0px;
    /* Distance from the right edge of the main content */
    top: 425px;
    /* Distance from the bottom of the main content */
    height: 100px;
    width: 70px;
    margin-top: 75px;
    background: url(icons/videocam.png);
    background-repeat: no-repeat;
    background-size: 55px 55px;
    background-attachment: fixed;
    background-position: center;
    background-color: #026b96;
    clear: both;
}

#vidtourtag:hover {
    background-color: #9b968c;
}


#proptag {
    /* CHANGE THIS: Keeps it pinned to the bottom-right of the main content */
    z-index: 7;
    position: fixed;
    left: 0px;
    /* Distance from the right edge of the main content */
    top: 550px;
    /* Distance from the bottom of the main content */
    height: 100px;
    width: 70px;
    margin-top: 75px;
    background: url(icons/websiteicon.png);
    background-repeat: no-repeat;
    background-size: 55px 55px;
    background-attachment: fixed;
    background-position: center;
    background-color: #026b96;
    clear: both;
}

#proptag:hover {
    background-color: #9b968c;
}


/* NAVAGATION TAGS */

/* Blue Button (css) with link */

.bluebutton {
    background-color: #026b96;
    color: white;
    cursor: pointer;
    width: 80%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 18px;
    border-radius: .8em .8em .8em .8em;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
    /* Icon settings */
    background-image: url('icons/link_wht.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    /* Places icon on the right */
    background-size: 20px 20px;
    /* Size of your tiny image */

}

.bluebutton:hover {
    background-color: #9b968c;
}