
/*------------------------------------*\

- Alan Colquhoun
- A00390667

\*------------------------------------*/

/*------------------------------------*\
	General
\*------------------------------------*/

* {
    box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}
html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}
body {
	color: #868F9B;
	background-color: #fff;
    font-family: 'Varela Round', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
	margin: 0
}
a, #port a {
    color: #6195FF;
    text-decoration: none;
    transition: 0.2s opacity;
    -webkit-transition: 0.2s opacity
}
a:visited, #port a:visited {
    color: orange
}
a:hover, #port a:hover {
    color: yellow
}
a:active, #port a:active {
	color: silver
}
#extlinks a {
    color: #0000EE;
    text-decoration: none;
    transition: 0.2s opacity;
	-webkit-transition: 0.2s opacity
}
#extlinks a:visited {
    color: green
}
#extlinks a:hover {
    color: red
}
#extlinks a:active {
	color: silver
}
ul {
	list-style: none;
    margin: 0;
    padding: 0
}
h1, h2, h3 {
	color: #10161A;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px
}
h1 {
    font-size: 54px
}
h2 {
    font-size: 36px
}
h3 {
    font-size: 21px
}
.clearbth {
	clear: both
}

/*------------------------------------*\
	Header
\*------------------------------------*/

header {
    position: relative
}
#home {
    height: 100vh;   
	/* 1vh = 1% of viewport height. */
}

/* --  background image  -- */

.bg-img {
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
	background-image: url('../img/background1.jpg')
}

.bg-img .overlay {
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    opacity: .8;
    background: #1C1D21;
}

.bg-img .overlay2 {
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    opacity: .95;
    background: #1C1D21;
}

#date {
	position: absolute;
	top: 125px;
	left: 582px;
	color: white
}
	
/* --  Navigation  -- */

#nav { 
	background-color: #fff;
	position: fixed;
	width: 100%;
	height: 75px;
	z-index: 10000;
    padding: 12px 0px;	
	border-bottom: 2px solid gray;
    transition: 0.2s padding;	
    -webkit-transition: 0.2s padding;
}
#nav.navbar {
	margin-bottom: 0;
    border-radius: 0
}

/* -- mobile nav -- */

@media only screen and (max-width: 767px) {
    #nav {
        padding: 0px 0px
    }
	.navbar-brand {
		margin-top: 10px
	}	
    .main-nav {
        position: fixed;
        right: 0;
		margin: 0;
		width: 0;
		-webkit-transition: 0.2s all;
        transition: 0.2s all;
        -webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
        box-shadow: 0px 80px 0px 0px #1C1D21;
        overflow-y: auto
    }
    .main-nav li a {
        display: block;
        color: #FFF;
        -webkit-transition: 0.2s all;
        transition: 0.2s all
    }
    .main-nav > li.active {
        border-left: 6px solid #6195FF
    }
}

/* -- logo-area & logo -- */

.logo-area {
	position: fixed;
	margin-left: 40px;
    padding: 2px 0
}
.logo-area .logo {
	max-height: 50px;
    display: block
}

/* -- navbar-collapse -- */

.nav-collapse {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 15px;
    margin-right: 15px;
    padding-right: 15px;
    padding-left: 15px;
    cursor: pointer;
    z-index: 99999
}
.nav-collapse span {
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px
}
.nav-collapse span:before, .nav-collapse span:after {
    content: "";
    display: block
}
.nav-collapse span,
.nav-collapse span:before, .nav-collapse span:after {
    height: 4px;
    background: #10161A;
    -webkit-transition: 0.2s all;
    transition: 0.2s all
}
.nav-collapse span:before {
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px)
}
.nav-collapse span:after {
    -webkit-transform: translate(0%, -14px);
    -ms-transform: translate(0%, -14px);
    transform: translate(0%, -14px)
}
@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-right: 0;
        padding-left: 0
    }
    .navbar-nav {
        float: left;
		margin-top: 12px
    }
    .navbar-nav > li {
        float: left
    }
    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

/* -- default nav -- */

@media only screen and (min-width: 768px) {
    .nav-collapse {
        display: none
    }
	.main-nav {
		position: fixed;
		margin-left: 513px      /* 400 */
	}
    .main-nav li {
        padding: 0px 15px;
		color: black
    }
	.main-nav li:last-child {
		padding: 0
	}
    .main-nav li a {
        font-size: 14px;
        -webkit-transition: 0.2s color;
        transition: 0.2s color
    }
    .main-nav > li > a {
        color: #10161A;
        padding: 15px 0px
    }
    .main-nav > li > a:hover,
	.main-nav > li > a:focus,
	.main-nav > li.active > a {
        background: transparent;
        color: #6195FF
    }
    .main-nav > li > a:after {
        content: "";
        display: block;
        background-color: #6195FF;
        height: 2px;
        width: 0%;
    }
    .main-nav > li > a:hover:after,
	.main-nav > li.active > a:after {
        width: 100%
    }
}

/* -- home-wrapper -- */

.white-text {
    color: #fff
}
#home .home-wrapper {
    position: absolute;
    left: 0px; right: 0px;
    top: 55%;
    text-align: center;	
    transform: translateY(-50%);	
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%)
}
#home .home-content h1 {
  text-transform: uppercase
}

/*------------------------------------*\
	About
\*------------------------------------*/

/* -- section, md-padding -- */

.section {
    position: relative
}
.md-padding {
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 650px 
}

/* -- section header -- */

.section-header {
    position: relative;
    margin-bottom: 60px
}
.section-header .title {
    text-transform: capitalize
}
#bck {
	text-align: center;
	text-decoration: underline
}	
#about_p {
	font-size: 20px;
	font-weight: 700;
	text-align: center
}	
	
/* -- about area -- */

.about {
	height: 265px;
    position: relative;
    text-align: center;
    margin: 15px 0px;
    padding: 40px 20px 0 20px;
    border: 1px solid #ccc
}
.about:after {
	width: 0;
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0; bottom: 0;
    z-index: -1;
	transition: 0.2s width;
    -webkit-transition: 0.2s width;
}
.about:hover:after {
    width: 100%
}
.about i {
	color: #6195FF;
    font-size: 36px;
    margin-bottom: 20px
}
.about h3 {
    transition: 0.2s color;
    -webkit-transition: 0.2s color
}
.about:hover h3 {
    color: #fff
}

/*------------------------------------*\
	Interests Section
\*------------------------------------*/

.detail {
    margin: 0px 50px 0px 50px
}
.detail i {
    float: left;
	color: #6195FF;
    margin-right: 5px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #6195FF
}
#interests {
	width: 100%;
	height: 1110px;
	background-color: black
}
#interests h2 {
	color: white
}
#interests h2, #interests p {
	margin-left: 50px
}
#int {
	text-align: center;
	text-decoration: underline
}	
#int_p {
	font-size: 20px;
	font-weight: 700;
	text-align: center
}	
#beatles {
	margin-top: -40px
}	
#music-img {
	padding-top: 20px;
	padding-left: 35px
}
#animwbd {
	margin-left: 15px;
	padding-top: 25px
}	
#port {
	margin-top: -35px;
	margin-left: 50px;
	margin-right: 75px
}
#instr {
	margin-left: 50px;
	margin-right: 75px
}

/*------------------------------------*\
	Links Section
\*------------------------------------*/

.linkcol {
	margin-top: -40px
}
.links {
	margin-left: 50px
}
.wp_sites {
	padding-top: 35px;
	padding-bottom: 15px
}	
.smalltext  {
	font-size: 18px;
	margin-left: 60px;
	margin-right: 60px;
	padding: 15px;
	border: 2px solid orange;
}
#extlinks {
	width: 100%;
	background-color: white
}
#extlinks h2 {
	color: black;
	margin-left: 50px
}
#extlinks p {
	font-size: 20px;
	font-weight: 700;
	margin-left: 65px;
	margin-right: 65px
}
#extlinks.section-header2 {
    margin-bottom: 0px
}
#hdr, #hdr3 {
	text-align: center;
	text-decoration: underline
}
#hdr2, #hdr4 {
	text-align: center;
	margin-left: 50px;
	padding-bottom: 25px
}
	
#hrprj {
	width: 90%;
	margin-top: 60px;
	margin-bottom: 50px
}	
#img-center {
  display: block;
  margin-top: 35px;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
  width: 50%
}
#webtech {
	text-align: center;
    padding-top: 15px
}	
#port40 {
	padding-bottom: 15px
}	
	
/*------------------------------------*\
	Footer
\*------------------------------------*/

.sm-padding {
    padding-top: 60px;
    padding-bottom: 60px
}
.bg-dark {
    background-color: #1C1D21
}
.footer-nmdt p {
	height: 15px;
	font-size: 14px;
    text-align: center;
    text-transform: uppercase
}
#footer {
	height: 165px;
    position: relative
}

/*------------------------------------*\
	Columns
\*------------------------------------*/

.col-md-4, .col-md-5, .col-md-6, .col-md-10, .col-md-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}
@media (min-width:992px){
    .col-md-4, .col-md-5, .col-md-6, .col-md-10, .col-md-12 {
        float: left
    }
    .col-md-4 {
        width: 33.33333333%
    }
	.col-md-5 {
		width:41.66666667%
	}	
	.col-md-6 {
        width: 50%
    }
    .col-md-10 {
        width: 83.33333333%
    }
	.col-md-12 {
		width: 100%;
	}	
    .col-md-offset-1 {
        margin-left: 8.33333333%
    }
}

/* Added Styles for Error Page */

.mtop    { margin-top: 25px }
.adjmg  { font-size: 24px; margin: -20px 10px 40px 10px }
