/* custom properties that we create ourselves to re-use across the website by creating it as a variable (-- is the syntax and 'primary-color' is the unique name you create yourself for that variable so you can call it in other places*/
:root{
    --bg-primary-color: rgb(173, 167, 167);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;   

    /* Source Sans Pro */
    /* font-family:'source-sans-pro', Helvetica, Tahoma;
    font-weight:400;
    font-style:normal;   */
}

body {
    /* Lavigne Display */
    font-family:'lavigne-display',sans-serif;
    font-weight:400;
    font-style:normal; 
    background-color: #0F1111;
    color: white;
    min-height: 1500px;
    /*line-height: 1.6;*/
}
ul {
    /* No bullet points */
    list-style-type: none;
}
a {
    /* No underline for links */
    text-decoration: none;
}

p{
    margin: 10px 0;
}
/*img {
    /* Keeping images within container */
    /*width: 100%;
}*/

/* Utilities (classes we will re-use across the website) below*/
.container {
    max-width: 1100px;
    /* 0 top and bottom, auto left and right*/
    margin: 0 auto;
    /*overflow: auto;*/
    /* 0 top and bottom, 40 left and right*/
    padding: 0px 40px;
    height: 100vh;
}
.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    flex-wrap: wrap;
    gap: 20px;
    margin-top:80px;
}
.gridintro {
    display: grid;
    /* splitting by fractions, below is equal but can be also first element will take 2 fractions of the containerand the second will take 1 fraction of the container*/
    /*grid-template-columns: 2fr 1fr;*/
    /*grid-template-columns: 1fr 2fr;*/
    /* adds space between the columns*/
    gap: 20px;
    justify-content: left;
    align-items: flex-start;
    height: 100%;
    overflow:hidden;
}



/* Introduction section */
.introduction {
    height: 100vh;
    width: 100%;
    background-color: var(--bg-primary-color);
    position: relative;
}

/* Start of Parallax styling*/
.introduction {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow:hidden;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
}
.introduction::before{
    content:'';
    position:absolute;
    bottom:0;
    width: 100%;
    height:100px;
    background: linear-gradient(to top, #0F1111, transparent);
    z-index: 10000;
}
.introduction::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color: rgba(34, 33, 38, 0.5); 
    mix-blend-mode: color;
    z-index: 10000;
}
.introduction img {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
/* Start - adding z-index only to those elements as I want the intro text to go behind mountain*/
#mountain4 {
    z-index: 9999;
}
#boat {
    z-index: 9999;
}
#bush {
    z-index: 9999;
}
#tree1 {
    z-index: 9999;
}
#tree2 {
    z-index: 9999;
}



/* Hero introduction text start*/
.hintro{
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    text-align: center;
}

#herotitle {
    position: relative;
    z-index: 1; 
    color: #C7F9E4;
    font-size: 4em;
    font-weight: 600;
    line-height: 50px;
}
.herosub {
    color: #ACEAD0;
    font-size: 0.4em;
}

.typing {
    position: relative;
    color: #ACEAD0;
    font-size: 0.4em;
    margin-left: -6px;
}

/* Creating typing symbol and animation*/
.typing::after {
    content: "";
    position: relative;
    width: 1px;
    height: 4px;
    border-right: 2px solid white; 
    animation: blink 1s infinite ease;
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* End */

/*Start - The cut section*/
.about {
    padding: 40px;
    margin-top: 85px;
}

.aboutHeader {
    font-size: 40px;
    margin-right: 110px;
    margin-top: -80px;
}

.aboutContent {
    font-size: 18px;
}



/* Start - Card styling*/
.card2 {
    margin-bottom: 100px;
}
.card {
    position: relative;
    background-color: #101313;
    width: 270px;
    height: 270px;
    box-shadow: rgb(0 0 0 / 22%) 0px 0px 11px 2px;
}
.card:hover {
    background-color: #D98E7E;
    transition: ease-in-out 0.5s;
    cursor: pointer;
}

.cardcontent h6 {
    position: relative;
    color: #d3d3d3;
    font-family:'source-sans-pro', Helvetica, Tahoma;
    font-weight: lighter;
    margin-top: 22px;
    margin-bottom: 25px;
}
.cardcontent h1{
    position: relative;
    color: #FFF;
    margin-bottom: 55px;
}
.cardcontent h5{
    position: relative;
    color: #ADD3C7;
    font-family:'source-sans-pro', Helvetica, Tahoma;
    font-weight: bold;
    cursor: pointer;
}
.cardcontent h5:hover{
    color: #414d49;
    transition: ease-in-out 0.6s;
    border-bottom: 1px solid #414d49;
}
.flex .card {
    position: relative;
    /*top: 80px;*/
}
.flex .card .contentBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    justify-content: center;
    align-items: center;
}

.flex .card .contentBx .cardcontent{
    position: absolute;
    padding: 30px;
}
/*End - Card styling*/

/* Start - Thank you Inspo section */
.inspomain {
    background-color:#ADD3C7;
    border-top: 1px solid#3B3B40;
    margin-top:80px;
    padding: 40px;
}
.inspocontent {
    padding: 20px;
    
}
.inspocontent h5 {
    position: relative;
    color: #1E1E1E;
    font-weight: bolder;
}
.inspocontent h4 {
    position: relative;
    color: #505050;
    font-weight: 100;
    margin-top: 40px;
    margin-bottom: 15px;
}
.inspocontent h3 {
    color: #1E1E1E;
    font-weight: bolder;
    
}
.quote {

    color: #D0EFE5;
    font-size: 100px;
    opacity: 0.5;
    display: inline-block;
}


.quotecolumn {
    float: left;
    width: 50%;
    padding-right: 15px;
    overflow: hidden;
    overflow-x: hidden;
  }
.inspocontent:after {
    content: "";
    display: table;
    clear: both;
    overflow: hidden;
    overflow-x: hidden;
}


/*makes columns go below one another rather than being next to each other on smaller screens*/
@media screen and (max-width: 600px) {
    .quotecolumn {
      width: 100%;
    }
  }



  /* feather icon size set up*/
  .feather-16{
    width: 16px;
    height: 16px;
    }
    .feather-24{
    width: 24px;
    height: 24px;
    }
    .feather-32{
    width: 32px;
    height: 32px;
    }
    .feather-100{
        width: 100px;
        height: 100px;
        }
/* End */

