@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@keyframes fadeInOut{
    0% {
        opacity: 0;
      }
    
      45% {
        opacity: 1;
      }
}
  

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(0, 0%, 95%);
    font-family: "Source sans 3", sans-serif;
}

h1{
    font-size: 4em;
    font-weight: 400;
}

h2{
    font-size: 2.6em;
    font-weight: 330;
    margin: 20px;
    text-align: center;
}

h3{
    font-size: 1.6em;
    font-weight: 400;
}

p{
    font-size: 1.3em;
}

a{
    text-decoration: none;
    font-weight: 400;
    color:black;
    font-size: 1.2em;
}

ul{
    list-style: none;
}

.flex{
    display: flex;
    gap: var(--gap, 3rem);
}


.primary-header{
    align-items: center;
    justify-content: space-between;
    background-color: hsl(0, 0%, 89%);
}

.primary-nav{
    list-style: none;
    padding: 0;
    padding-right: 1rem;
    margin: 0;
}

.navlogo img{
    object-fit: contain;
    width: 70px;
    margin-bottom: -0.29rem;
    margin-left: .5rem;
}

.listbutton{
    padding: .6rem 3.4rem;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 50px 100px -20px inset, rgba(50, 14, 14, 0.3) 0px 30px 60px -30px, rgba(45, 47, 50, 0.35) 0px -2px 6px 0px inset;
    background-color: hsl(0, 0%, 95%);
}

.hero{
    background-image: url(./resources/swirl_blur.png);
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--gap, 0rem);
}

.animation-hero{
    animation-name: fadeInOut;
    animation-duration: 5s;
}

.booking-portal{
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--gap, 0rem);
}

.booking-cta{
    height: 100vh;
    justify-content: center;
    align-items: center;


}

.card{
    background-color: hsl(0, 0%, 91%);
    width: 44vh;
    border-radius: 30px;
    padding: 5rem 1rem;
    padding-top: 2rem;
    margin: 0rem 2rem;
    box-shadow: 2px 2px 8px #bebebe;
    text-align: center;
}

.card-block {
    background-color: #f2f2f2;
    border-radius: 14px;
    padding: .8rem 0rem;
    margin: .6rem .8rem;

    font-size: 1.3rem;
    font-weight: 500;
    
}

/* portfolio page */

.twoblocks{
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.squareimgholder img{
    width: 250px;
    height: 250px;
    background-color: grey;
    margin: 0rem 3rem;
}

.twoblock1, .twoblock2{
    display: inline-block;
    text-align: center;

}

.artgallery-container{
    width: 80vw;
    margin: 20px auto;
    columns: 5;
    column-gap: 20px;
    break-inside: avoid;
}

.artgallery-container .gallery-item{
    width: 100%;
    margin-bottom: 10px;
}

.artgallery-container .gallery-item img{
    max-width: 100%;
    border-radius: 15px;
}

.cards-large{
    flex-direction: column;
    align-items: center;
    
}

.projectcard{
    width: 80vw;
    padding-bottom: 150px;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    background-color: rgba(128, 128, 128, 0.314);
}

.projname img{
    width: 125px;
    margin: 0px 30px;
    object-fit: contain;
    
}

.minicard{
    width: 40vw;
    padding: 30px 20px;
    padding-bottom: 100px;
    border-radius: 30px;
    margin: 30px;
    margin-top: 0px;
    background-color: hsla(0, 0%, 33%, 0.283);
    
}

.projimg img{
    object-fit: contain;
    margin-bottom: -100px;
    width: 850px;
}

.projectcard1{
    background-color: hsl(140, 42%, 82%);
}

.am-head{
    height: 100vh;
    align-items: center;
    justify-content: center;

}

.am-img img{
    width: 150px;
    margin-right: -40px;
}

.three-blocks{
    height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.block{
    text-align: center;
}

.offer-container{
    height: 100vh;
    overflow-y: hidden;
    align-items: center;
    justify-content: center;
}


.offer-box{
    background-color: #e2e2e28c;
    box-shadow: rgba(112, 120, 125, 0.125) 0px -50px 100px -20px inset, rgba(54, 43, 43, 0.3) 0px 30px 60px -30px, rgba(237, 237, 237, 0.41) 0px -2px 9px 5px inset;
    padding: 5em 3.2em;
    margin: 0 rem;
    text-align: center;
    border-radius: 30px;
    align-items: center;
}

.offer-box-body{
    width: 50em;
    margin: 2em;
    margin-bottom: 4em;
    text-align: start;
}

.offer-box-body p{
    line-height: 100%;
    margin: 20px 0;
}

.scroll-container{
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.scroll-section{
    scroll-snap-align: start;
}