/*basic styles*/
html {
    font-size: 10px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    background-color: #000;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/*normal styles*/
h1, h2, h3{
    font-family: 'Barlow Condensed', 'Helvetica', sans-serif;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

h3{
    font-size: 2.7rem;
    padding-bottom: 0.3rem;
    text-transform:uppercase; 
}

p, label, input, textarea, figcaption{
    font-size: 2.5rem;
    line-height: 1.5;
    padding-bottom: 1.7rem;
    font-family: 'Barlow Condensed', 'Georgia', serif;
}

a:link{
    color: #f17105;
    text-decoration: underline;
}

a:visited{
    color: #974703;
}

a:hover{
    text-decoration: none;
}

a:active{
    
}



/*nav styles*/
nav{
    position:fixed;
    top:0;
    background-color: #F17105;
    width: 100%;
}

.nav-item a{
    font-family: 'Barlow Condensed', 'Georgia', serif;
    font-size: 2rem;
}

.nav-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;;
}

nav ul{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

nav li{
    display: inline;
    font-size: 2rem;
}

.nav-item a{
    padding: 1rem;
    height: 100px;
    text-decoration: underline;
    color: #03070d;
    text-decoration: none;

}

.nav-item a:hover{
    text-shadow: 1px 1px #E6E6E9;
}

.logo{
    padding: 0.5rem 0;
    width: 100px;
    transition: 0.3s ease all;
}

nav.scrolled .logo{
    width: 50px;
}

/*main styles*/
header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #03070d;
    color: white;
    
    /*
    background-image: url(img/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    */
}

.header-content{
    text-align: center;
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
}

header h1{
    font-weight: 300;
    font-size: 8rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 1000;
    flex: 0 0 100%;
    align-self: flex-end;
    text-shadow: -5px 5px #03070d;
    -webkit-text-stroke: 2px #F17105;
    letter-spacing: 2px;
}

header p{
    padding: 0;
}


.start{
    padding: none;
    text-decoration: none;
    padding: 2rem;
    align-self: flex-end;
}

.start img{
    width: 3rem;
}

section{
    padding: 7.5rem 0;
}

main section:nth-child(odd){
    background-color: #222;
    color: white;
}

main section:nth-child(even){
    background-color: #151515;
    color:white;
}

.content{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    background-color: #03070d;
    color: #F17105;
}

/*gallery*/
.photos{
    max-width: 1200px;
}

figure{
    padding: 1.2rem;
    background-color: #f2f2ff;
    margin-bottom: 1rem;
}

figcaption{
    color: black;
    padding: 0;
}

.gallery{
}


/*form style*/

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

textarea{
    height: 300px;
    max-height: 700px;
}

input[type=submit] {
  background-color: #03070d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
    background-color: #F17105;
    color: #03070d;
}