body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* FONTS:
font-family: "Gideon Roman", serif;
font-family: "Lato", sans-serif; 
*/

/*TOP BANNER*/
#top-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    padding-bottom: 1rem;
    background-color: rgb(249,245,245);

    background-repeat: repeat-x;
}
#back-button{
    position: relative;
    left: 0;
}
#creative-collective-logo{
    flex-grow: 1;
    text-align: center;
}

/* (logo referring to the individual companies logo)*/
#logo{
    width: 80vw;
    max-width: 500px;
    height: auto;
}
#top-banner h2{
    font-size: 1.8rem;
    font-family: "Gideon Roman", serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #1d1d1de8;
}
#top-banner h3{
    font-family: "Lato", sans-serif; 
    font-weight: 500;
    text-transform: uppercase;
    color: #fa3d3d;
}
 
#navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 850px;
    padding: .5rem .3rem 2rem .3rem;
}


/* MAIN PAGE */

#main-page{
    max-width: 100vw;
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items:center;
    background: rgb(249,245,245);
    padding: 0 .6rem;
}
#summary-and-images{
    max-width: 900px;
}

/* PERSONAL SUMMARY */

#personal-summary{
    display: flex;
    flex-direction:column;
    text-align: start;
    align-items: start;
    padding: 1rem;
    padding: 2rem;
    max-width: 800px;
}

#personal-summary h4{
    padding: 2rem 0 0.3rem 0;
    font-family: "Gideon Roman", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    color: #e01e1e;
    padding: 0;
    margin: 0;
}
#personal-summary p{
    padding: 0 0 0 0.5rem;
    font-weight: 400;
    font-family: "Lato", sans-serif; 
    font-optical-sizing: auto;
    color: #040404;
    border-left:#e01e1e solid 5px;
}
#personal-summary a{
    color: #040404;
    font-weight: 600;
    border-radius: 25px;
    font-size: 1.1rem;
    font-family: "Gideon Roman", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    text-decoration: #e01e1e solid underline;
    text-underline-offset: 4px;
    transition:.5s ease;
}
#personal-summary a:hover{
    text-decoration: #e01e1e solid underline 3px;
}

/*CAROUSEL*/

#images{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;

}
#main-image-container{
    max-width: 900px;
    display: flex;
    justify-content: center;
}
#main-image-container-inner{
    display: flex;
    justify-content: center;
    width: 100%;
}
#main-images{
    width: 100%;
}


#thumbnail-image{
    padding: 6px 2px;
}
  
  /* Hide the images by default */
  .main-image {
    display: none;
  }
  /*makes sure the images are consistent heights*/
  .main-image img{
    max-height: 400px;
  }


  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    width: auto;
    padding: 4px 10px;
    color: #040404;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
  }
  
  .arrows{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    color: #b71e1e;
  }
  
  /* Number text (1/3 etc) */
  .number-text {
    color: #040404;
    font-size: .8rem;
    padding: .3rem;
    position: relative;
    top: 0;
  }

  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }




/* FONTS:
font-family: "Gideon Roman", serif;
font-family: "Lato", sans-serif; 
*/


/*CONTACTS & FACTS*/
#contacts-facts-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    max-width: 700px;
    padding: 2rem 0 ;
}
#contacts-facts-container-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #040404;
}
#fun-facts{
    font-family: "Lato", sans-serif; 
    font-size: 1.2rem;

}
#fun-facts h4{
    font-size: 2rem;
    font-family: "Gideon Roman", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 50px;
    background-color: #e01e1e;
    color: rgb(249,245,245);
    margin:0 0 1rem 0;
}
#contacts {
    font-family: "Lato", sans-serif; 
    font-size: 1.2rem;

}
#contacts h4{
    font-size: 2rem;
    font-family: "Gideon Roman", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 50px;
    color: #fa2f2f;
    background-color: #e01e1e;
    color: rgb(249,245,245);
    margin:0 0 1rem 0;
}
#contacts ul{
    list-style-type: none;
}
#contacts li{
    padding: .5rem 0;
}
#contacts a{
    text-decoration: none;
    color: #040404;
    text-decoration: #fa2f2f solid underline;
    text-underline-offset: 5px;
}
#bottom-border{
    height: 200px;
    width: 100%;
    background-color: rgb(249,245,245);
    background-image: url("../images/alastair-h-photography/AHP-border.png");
    background-repeat: repeat;
}


/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 1001px) {
    #top-banner h3{
        font-size: 1.3rem
    }
    #personal-summary h4 {
      font-size: 4rem;
    }
    #personal-summary p{
        font-size: 1.2rem;
    }
    #personal-summary a{
        font-size: 1.3rem;
    }
    #creative-collective-logo img{
        height: 32px;        
    }  
    #thumbnail-images{
        width: 20%;
    }


  }
  
  /* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 1000px) {
    #top-banner h3{
        font-size: 1.1rem
    }
    #personal-summary h4 {
        font-size: 3rem;
    }
    #personal-summary p{
        font-size: 1.2rem;
    }
    #personal-summary a{
        font-size: 1.3rem;
    }
    #creative-collective-logo img{
        height: 25px;        
    }
    #thumbnail-images{
        width: 95%;
    }
}
@media screen and (max-width: 770px) {
    #personal-summary h4 {
        font-size: 2.5rem;
    }
    #personal-summary p{
        font-size: 1rem;
    }
    #personal-summary a{
        font-size: 1rem;
    }
    #creative-collective-logo img{
        height: 20px;        
    }
    
}

/*FOOTER CSS*/

#footer{
    background-color: #262626;
    max-width: 100vw;
    color: aliceblue;

}
#container{
    padding: 1.5rem;
    max-width: 900px;
}
#footer-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    font-size: 0.9rem;;
}
#footer img{
    width: 100%;
    height:auto;
    max-width: 250px;
}
#footer h6{
    font-size: 1rem;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 900;
}
#footer a{
    text-decoration: none transparent;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
}
#footer a:hover{
    text-decoration: underline #db652b 0.15rem;
    transition: 300ms;
}
#copyright{
    background-color: black;
    color: grey;

    display: flex;
    justify-content: center;
    text-align: center;    
    position: relative;

    bottom: 0;
    font-family: "Noto Sans", sans-serif;
}
