@import url('https://fonts.googleapis.com/css?family=Montserrat');

body{
	padding: 0;
	margin: 0;
	background:#f4f4f4;
}

html,h1,h2,h3,h4,h5,h6,a{
	font-family: "Montserrat", sans-serif;
}

/*Navigation*/

.navbar{
	position: fixed;
	background:#ffffff;
}

.nav-link , .navbar-brand{
	color: #926EBF;
	cursor: pointer;
}

.nav-link{
	margin-right: 1em !important;
}

.nav-link:hover{
	background: #f4f4f4;
	color: #926EBF;
}

.navbar-collapse{
 justify-content: flex-end;
}

.navbar-toggler{
  background:#926EBF !important;
}

/*Hero*/

.hero-container {
    max-width: 1200px;
    margin:4em auto;
    padding:4em;
}

.hero-content {
    flex:1;
    display:flex;
    justify-content: center;
    align-content: center;
}

.hero-image {
    max-width: 100%;
    border-radius: 60%;
}

.space-nocolor{
    max-width:100%;
    min-height:10vh;
    background-size: cover;
}

.imgHolder {
    align-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
}


/*About*/

.about-container {
    max-width: 1200px;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap:10px;
    margin:4em auto;
    padding:4em;
}

.two-columns {
   display:flex;
   gap:20px;
   flex-wrap:wrap;
}

.columns {
    flex:1;
    min-width:250px;
    padding: 15px;
}

.columns p {
    margin-bottom: 1em;
    font-size: 18px;
    line-height: 1.5;
    color: #555555;
    font-weight: 200;
}


.about-container h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    color: #926EBF;
    margin-left: 1em;
    margin-bottom: 2em;
}


/*Portfolio*/

.portfolio-container {
	max-width: 1200px;
    display:flex;
    justify-content: space-evenly;
    gap:10px;
    margin:4em auto;
    padding:4em;
}

.portfolio-content {
    flex: 1;
}

.portfolio-content h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    color: #926EBF;
    margin-bottom: 4em;
}

.portfolio .row {
    gap:15px;
    flex-wrap: nowrap;
    justify-content: center;
}

.portfolio .row img {
    width: 100%;
}


/* The Modal (background) */

.modal {
  display:none;
  position:fixed;
  z-index:1;
  padding-top:80px;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgba(0,0,0,0.9);
}

/* Modal Content */

.modal-content {
  position:relative;
  background-color:#fefefe;
  margin:auto;
  padding:0;
  max-width:100%;
  max-height:100%;
}

.modal .column {
  float:none;
  width:25%;
}


/* The Close Button */

.close {
  color:white;
  position:absolute;
  top:40px;
  right:25px;
  font-size:35px;
  font-weight:bold;
}

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

.mySlides {
    margin: auto;
    justify-content: center;
}

.cursor {
  cursor:pointer;
}

/* Next & previous buttons */

.prev,
.next {
  cursor:pointer;
  position:absolute;
  top:50%;
  width:auto;
  padding:16px;
  margin-top:-50px;
  color:white;
  font-weight:bold;
  font-size:20px;
  transition:0.6s ease;
  border-radius:0 3px 3px 0;
  user-select:none;
  -webkit-user-select:none;
}

/* Position the "next button" to the right */

.next {
  right:0;
  border-radius:3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
  background-color:rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */

.numbertext {
  color:#555555;
  font-size:12px;
  padding:8px 12px;
  position:absolute;
  top:0;
}

.modal img{
    height:100%;
    width:auto;
}

img {
    margin:auto;
}

.caption-container {
  text-align:center;
  background-color:black;
  padding:2px 16px;
  color:white;
}

.demo {
  opacity:0.6;
}

.active,
.demo:hover {
  opacity:1;
}

img.hover-shadow {
  transition:0.3s;
}

.hover-shadow:hover {
  box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/*Contact*/

.contact-form{
	margin:6em 0;
	padding:1em;
	position:relative;
	top:20%;
}

.contact-form h1{
	padding:2em 1px;
	color:#926EBF;
}
.contact-form .right{
	max-width:600px;
}
.contact-form .right .btn-secondary{
	background:#926EBF;
	color:#fff;
	border:0;
}
.contact-form .right .form-control::placeholder{
	color:#888;
	font-size:16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

label {
    font-weight: bold;
}

input[type="name"],
input[type="email"],
textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    flex:1;
}

textarea {
    resize:vertical;
}

button {
    margin-top: 1rem;
    padding:0.75rem 1.5rem;
    background-color: #926EBF;
    color:white;
    border:none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color:#3D3E74;
}


/*Footer*/

footer .container {
    max-width: 1200px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
    height:50px;
    margin: 6em auto;
    padding: 10px;
}

footer .two-columns {
   flex: 1;
   gap:20px;
   flex-wrap:wrap;
   margin:2em;
}

footer .columns {
    min-width:350px;
    padding: 10px;
    text-align: center;
}

footer .columns p {
    margin-bottom: 1em;
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
    font-weight: 200;
}

footer ul.social-buttons{
	margin-bottom:0;
}

footer ul.social-buttons li a{
	font-size:20px;
	line-height:50px;
	display:block;
	width:50px;
	height:50px;
	-webkit-transition:all .3s;
	transition:all .3s;
	color:#fff;
	border-radius:100%;
	outline:0;
	background-color:#212529;
}

footer ul.social-buttons li a:active,ul.social-buttons li a:focus,ul.social-buttons li a:hover{
	background-color:#3D3E74;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    .container.gallery-container {
        border-radius: 0;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-image {
        max-width:100%;
    }
    .about-container {
        flex-direction: column;
        text-align: left;
    }
    .about-content {
        max-width: 100%;
    }
    .portfolio .row {
        flex-direction: column;
        max-width: 100%;
    }
    .contactform-container {
        flex-direction: column;
        text-align: left;
        max-width: 500px;
    }
    .contentform-content {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) { 
    .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 60%;
    }
    .img {
      max-width:100%;
      height:auto;
      display: block;
    }
    .modal img {
      max-width:100%;
      height:auto;
      display: block;
    }
    .imgHolder {
    align-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
    height: auto;
    display: block;
    }
}
