/* 
COLORS
brown - #735443
white - #F2EBDC
light pink - #fbeeee
dark pink - #ffd0d0
*/

* {
    box-sizing: border-box;
}
body {
    font-family: "Libre Caslon Text", serif;
    color: #000000;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    margin: 0;
    contain: paint;
}
p, ul, ol, h1, h2, h3, h4, h5, h6 {
    margin:0;
    font-family: "Raleway", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.25em;
}
h2 {
    line-height: 1.25;
}


div.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #E9DBEE;
    display: none;
}

header div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5em;
}
nav ul {
    display:flex;
    flex-direction: row;
    list-style: none;
    gap: 40px;
    font-weight: 600;
    padding-top: 2em;
    padding-bottom: 2em;
}

nav a:link, nav a:visited {
    color: #640023;
    text-decoration: none;
    transition: .5s;
}
nav a:hover {
    color: #8E7F36;
    transition: .5s;
}
p.name {
    font-size: 30px;
    margin: .75em;
    line-height: 1em;
}
.initial img {
    width: 200px;
}

.nav-bar header {
    display: none;
    /* display: flex; */
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    background-color: #E9DBEE;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

/* Hero Styles*/
#hero {
    min-height: 600px;
    background-color: #640023;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    text-align: left;
}

#hero h1 {
    display: flex;
    position: relative;
    z-index: 100;
    font-family: "Libre Caslon Text", serif;
    font-size: 20em;
    font-weight: 400;
    font-style: italic;
    color: #E9DBEE;
    margin-left:.1em;
    padding-top: .3em;
    /* margin: 1em 3em 2em; */
}
#hero p {
    position: relative;
    font-size: 1.2em;
    color: #E7E4D8;
    margin-bottom: 1em;
    width: 100%;
    max-width: 18em;
    margin-left: 60rem;
    margin-top: -4em;
}
#hero img{
    display: flex;
    width: 50%;
    margin-top: -27em;
}
#dots-left{
    position: absolute;
    left:-1em;
}
#dots-right{
    position: absolute;
    right: -26em;
}



/*about section*/
#about {
    min-height: 600px;
    background-color:#F2EBDC;
}
#about div.wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 70px;
}
div.about-left {
    width: 50%;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
div.about-left img {
    width: 100%;
    
}
div.about-right {
    width: 50%;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #8E7F36;
}
div.about-right h2{
    font-family: "Libre Caslon Text", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 3em;
}
div.about-right p {
    font-weight: 400;
    font-style: normal;
    max-width: 450px;
}
/*Gallery Section*/

#gallery  {
    background-image: url(assets/gallery/striped-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100rem;
    margin-bottom:-1em;
}
#gallery h2{
    display: none;
}
#gallery div.wrapper{
    padding-top: 15em;
    padding-bottom: 15em;
}
/* #gallery h2 {
    font-size: 40px;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1em;
    margin-top: .5em;
} */
div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div.gallery a {
    width: 50%;
    transition: .7s;
}
div.gallery img {
    width: 100%;
    padding: 1em;
    /* height: 300px;
    object-fit: cover; */
    /* border-style: solid;
    border-color: #735443;
    border-width: 5px; */
}
div.gallery a:hover {
    scale: 105%;
    transition: .2s;
}

/* Inspo Section*/

/* #inspo {
    min-height: 600px;
    background-color: #735443;
    padding: 60px 0;
    color:#F2EBDC;
    text-align: center;
} */
/* p.quote {
    font-size: 2.25em;
    line-height: 1.25em;
    margin-bottom: 1em;
    font-style: italic;
} */
/* p.credit {
    font-weight: 400;
} */
/* #inspo div.wrapper {
    background-image: url(assets/inspo/quotations.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 120px 20px;
} */

/*Projects Section*/

/* #projects {
    background-color: #ffdfe6;
    padding: 96px 20px; 
    margin: 0;  
} */
/* #projects h2 {
    font-size: 2em;
    color: #735443;
    text-align: center;
    margin: 50px;
    font-style: italic;
} */
/* div.cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
} */
/* .card {
    display: flex;
    flex-direction: row;
    text-decoration: none;
} */
/* .card img {
    padding-left: 180px;
    width: 40%;
    object-fit: cover;
} */
/* div.card-text {
    background-color: rgb(242, 235, 220, .6);
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
} */
/* div.card-text h4 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    color: #735443;
} */
/* a.card {
    scale: 1;
    transition: 0.7s;
    color: #735443;
    text-decoration: none;
} */
/* a.card p {
    font-size: 1em;
    font-weight: 500;
} */
/* a.card h5 {
    font-style: italic;
    margin-bottom: 1em;
} */
/* a.card:hover {
    scale: 110%;
    transition: 0.7s;
} */

/* Thank you */
/* #thanks {
    min-height: 600px;
    background-color: #640023;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    text-align: left;
} */
/* #thanks h1{
    display: flex;
    position: absolute;
    z-index: 100;
    font-family: "Libre Caslon Text", serif;
    font-size: 15em;
    font-weight: 400;
    font-style: italic;
    color: #E9DBEE;
    margin-right:-.1em;
    padding-top: .3em;
} */
/* .dots-bottom img{
    width: 50%;
    
    margin-top: -20em;
} */
/* #dots-left-bottom{
    position: absolute;
    left:-1em;
} */
/* #dots-right-bottom{
    position: absolute;
    right: -26em;
} */

/* Footer Styles*/
footer {
    background-color: #E9DBEE;
    color: #640023;
    padding: 10px 0 30px;
}
.wrapper li{
    color:#F2EBDC;
}
footer div.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
div.social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.social a img {
    width: 45px;
}
footer div.footer-bottom {
    align-items: flex-end;
    padding-top: 20px;
}

.social a:hover {
    opacity:0.6;
}
footer div.footer-bottom p{
    font-weight: 400;
}



/* menu bar */
/* Simple CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  ul.nav-menu > li {
    list-style: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
  }
  
  a {
    text-decoration: none;
    padding: 0 0.45rem;
  }
  
  .nav-bar header {
    display: none;
    background-color: #E9DBEE;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    z-index: 999;
    position: relative;
    background-color: #E9DBEE;
  }
  
  .hamburger {
    display: none;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #640023;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-item {
    margin-left: 5rem;
  }
  
  .nav-link {
    font-size: 1.35rem;
    color: #640023;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
  }
  
  /* a.nav-link:hover {
    color: ;
    border-bottom: 2px solid #55b57a;
  } */
  
  /* a.nav-link:active {
    border-bottom: 2px solid #55b57a;
  } */
   a.nav-link:visited {
    color: #640023;
   }
  
  /* Media Queries for the NAV */
  
/* media queries */
@media only screen and (min-width:800px){
    header{
        display: block;
    }
}

/* tablet */
@media only screen and (max-width:1320px){
    /* hero */
    #hero {
       min-height: 500px;
   }
   
   #hero h1 {
       font-size: 13em;
       margin-left:.2em;
       padding-top: .5em;
       /* margin: 1em 3em 2em; */
   }
   #hero p {
       font-size: 1em;
       margin-left: 30rem;
       margin-top: 1em;
   }
   #hero img{
       width: 45%;
       margin-top: -29.5em;
   }
   #dots-left{
       left:-1em;
   }
   #dots-right{
       right: -28em;
   }
   
/* gallery */
#gallery{
    min-height: 600px;
}

#gallery div.wrapper{
   padding-top: 10em;
   padding-bottom: 10em;
}

div.gallery img {
   margin-bottom: 1em;
}


/* about */
#about {
   min-height: 0;
}

}

@media only screen and (max-width:1000px){
    /* header */
    
     header div.wrapper {
        padding: 0 5em;
        }

        #gallery  {
            min-height: 90rem;
        }
        #gallery div.wrapper{
            padding-top: 15em;
            padding-bottom: 1em;
        }
   
       
        div.gallery a {
            width: 48%;
        }
        
    
    #about {
        min-height: 0px;
     }
}



@media only screen and (max-width:799px){
    .nav-bar header {
        display: inline;
    }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    background-color: #E9DBEE;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
    
.nav-menu.active {
    left: 0;
    } 
    
      .nav-item {
        margin: 2.5rem 0;
      }
    
      .hamburger {
        display: block;
        cursor: pointer;
      }
    
      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }
    
      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
    
      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
     
}
@media only screen and (max-width:900px){
    #gallery  {
        background-image: url(assets/gallery/striped-background.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 80rem;
        margin-bottom:-1em;
    }
}
@media only screen and (max-width:800px){
    /* hero */
    #hero {
        min-height: 550px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content:flex-start;
        align-items: center;
        text-align: center;
    }
    
    #hero h1 {
        font-size: 10em;
        padding-top: .9em;
    }
    #hero p {
        text-align: center;
        font-size: 1em;
        margin-bottom: 1em;
        width: 100%;
        margin-left: 6em;
        margin-top: 1em;
    }
    #dots-left{
        display:none;
    }
    #dots-right{
        display: none;
    }

/* gallery */


#gallery div.wrapper{
    padding-top: 10em;
    padding-bottom: 10em;
}

div.gallery {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}
div.gallery a {
    width: 80%;
}
#gallery  {
    min-height: 80rem;
}
}
@media only screen and (max-width:650px){
    #hero {
        min-height: 550px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content:flex-start;
        align-items: center;
        text-align: center;
    }
    
    #hero h1 {
        font-size: 9em;
        padding-top: .9em;
    }
    #hero p {
        text-align: center;
        font-size: 1em;
        margin-bottom: 1em;
        width: 100%;
        margin-left: 5em;
        margin-top: 1em;
    }

    
    #about div.wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 70px;
    }
    div.about-left {
        margin-top: 4em;
        width: 100%;
        /* width: calc(50% - 20px); */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }
    div.about-left img {
        width: 100%;
    }
    div.about-right {
        width: 100%;
        /* width: calc(50% - 20px); */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }  
    }
    @media only screen and (max-width:500px){
        #hero h1 {
            font-size: 7em;
            padding-top: 1.3em;
        }
        #hero p {
            text-align: center;
            font-size: 1em;
            margin-bottom: 1em;
            width: 100%;
            margin-left: 2em;
            margin-top: 1em;
        }
    }
