/******************************************************************************
* Title: styling.css
* Author: Hunter Schoonver ~ Web Designer ~ hunter@skoonie.com
* 
* Purpose:
* 
* This cascading stylesheet provides styling for the index/home page, which is
* why it is in the root folder.
*
* Example usage:
* 		<link rel="stylesheet" href="styling.css">
*
*/

body {
    background-attachment: fixed;
    background-color: rgb(246, 246, 246);
	background-image: url('sitewide/background.jpg');
	background-repeat: no-repeat;
}

#container {
	background-color: rgba(0, 0, 0, 0.3); 
    display: table;
	position: relative;
	text-align: left; 
}

#title {
    width: 500px;
    color: #fff;
    display: table-cell;
    font-family: "SegoeScript";
    font-size: 70px;
    font-weight: bold;
    padding: 30px;
    text-align: left;
    text-shadow: 2px 2px 3px #000;
}

#menu {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.row {
    width: 100%;
    display: inline-block;
}

.square {
    width: 260px;
    height: 200px;
    border: 1px #fff solid;
    cursor: pointer;
    display: inline-block;
    font-size: 35px;
    overflow: hidden;
    text-align: center;
    transition: all 250ms linear;
    vertical-align: center;
}
.square:hover {
    background-color: rgba(0, 0, 0, 0.3); 
    transition: all 250ms linear;
}

.square a {
    height: 100%;
    color: #fff;
    display: block;
    padding: 70px 0;
    text-decoration: none;
}
.square a:hover {
    color: #fff;
    text-decoration: none;
}

.invisible {
    border: 0;
    cursor: default;
    
}
.invisible:hover {
    background: none;
}

.smallSquareFiller {
    width: 20px;
    height: 200px;
    display: inline-block;
    vertical-align: top;
}

.squareFiller {
    width: 230px;
    height: 200px;
    display: inline-block;
    vertical-align: top;
}

/* Styling for when narrower than 590px */
@media (max-width: 590px) {
    
    .square {
        width: 100%;
    }
    
    .smallSquareFiller {
        display: none;
        visibility: none;
    }
    
    .squareFiller {
        display: none;
        visibility: none;
    }
    
    #title {
        font-size: 40px !important;
        padding: 30px 0;
    }
    
}

/* Styling for when narrower than 850px */
@media (max-width: 850px) {
    
    .square {
        width: 180px;
        height: 150px;
        font-size: 25px;
    }
    
    .square a {
        padding: 55px 0;
    }
    
    .smallSquareFiller {
        height: 150px;
    }
    
    .squareFiller {
        width: 180px;
        height: 150px;
    }
    
    #title {
        font-size: 50px;
    }
    
}

/* Styling for when narrower than 1350px */
@media (max-width: 1350px) {
    
    #menu {
        width: 100%;
        display: inline-block;
        padding: 0 20px 50px 20px;
    }
    
    #title {
        width: 100%;
        display: inline-block;
        text-align: center;
    }
    
}