/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(184, 91%, 17%);
  --clr-primary-2: hsl(185, 84%, 25%);
  --clr-primary-3: hsl(185, 81%, 29%);
  --clr-primary-4: hsl(184, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(185, 62%, 45%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(185, 57%, 50%);
  --clr-primary-7: hsl(184, 65%, 59%);
  --clr-primary-8: hsl(184, 80%, 74%);
  --clr-primary-9: hsl(185, 94%, 87%);
  --clr-primary-10: hsl(186, 100%, 94%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: 'Lato', sans-serif;
  --transition: all 0.1s linear;
  --spacing: 0.06rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
/*
=============== 
Global Styles
===============
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


#content {
  min-height: calc(100vh - 40px);
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color:#333;
}

/* section */
.section {
  padding: 4rem 0;
  scroll-margin-top: 4rem;
}

.img_large {
  width:100%;
  display:block;
  border:0px solid red
}

.img_large img {
  width:75%;
  display:block;
  margin:0 auto;
  border:0px solid blue;
}

.expand a {
	width: 5%;
    height: auto;
    border: 1px solid #4a4a4a;
    border-radius: 40px;
    font-size: 1em;
    text-align:center;
    letter-spacing: 0.1em;
    padding: 10px 30px 10px 30px;
    display: block;
    text-decoration: none;
    margin: 0 auto;
	margin-bottom: 30px;
}

.expand a:hover {	
	color:#fff!important;
	background-color: #4a4a4a;
	opacity:0.5;
	transition-duration: 100ms;	
}

.content-title  {
  font-family:"Fira Sans",arial,helvetica;
  letter-spacing: 0em;
    font-size: 2.3em;
    font-weight: 200;
    line-height: 1.2em;
    text-align: center;
    margin-top: 0;
    border: 0px solid red;
    padding: 1.3em 0em 0.6em 0em;
    width: 100%;
}

.content-subtitle  {
  font-family:"Fira Sans",arial,helvetica;
  letter-spacing: 0em;
    font-size: 1.3em;
    font-weight: 200;
    line-height: 1.2em;
    text-align: center;
    margin-top: 0;
    border: 0px solid red;
    padding: 0em 0em 3em 0em;
    width: 100%;
}

.section-title h2 {
  text-transform: uppercase;
}
.section-title span {
  color: var(--clr-primary-5);
}
.section-center {
  /*width: 90vw;*/
  margin: 0 auto;
  max-width: 1170px;
}

@media screen and (min-width: 992px) {
  .section-center {
    /*width: 95vw;*/
    width: 68vw;
  }
}




/*
=============== 
Cards
===============
*/

.card-card {
  transition: var(--transition);
  margin-bottom: 0rem;
  width: 100%;
  height: 21.5vh;
  border: 0px solid red;
}

.card-card:hover {
  box-shadow: 0 5px 15px rgba(57, 59, 28, 0.8);
  transform: scale(1.01);
}
.card-img-container {
  position: relative;
}
.card-img {
  height: 9rem;
  object-fit: cover;
}

.card-img-drawings{
  height: 25rem;
  object-fit: cover;
}

.card-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0;
}
.card-info {
  padding: 1.25rem 1.5rem;
}

.spacer_80 {
	width:100%;
	height:80px;
  display: block;
  float: left;
	border:0px solid red;
}

/* additional css for different layout*/
.card-title {
  text-align:center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 4.3em;
}






/* end of additional css for different layout*/
.card-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.card-footer-sold {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 600;
  font-size: 140%;
}
.card-footer p {
  line-height: 0;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}
.card-footer p span {
  margin-right: 0.25rem;
}
.card-btn {
  text-align: center;
}

/*-- MOBILE PORTRAIT --*/
@media screen and (max-width: 768px) and (orientation: portrait){

  .img_large {
    width:100%;
    display:block;
    border:0px solid red
  }
  
  .img_large img {
    width:90%;
    display:block;
    margin:0 auto;
    border:0px solid blue;
  }

  .expand a {
      width: 8%;
      height: auto;
      border: 1px solid #4a4a4a;
      border-radius: 40px;
      font-size: 1em;
      text-align:center;
      letter-spacing: 0.1em;
      padding: 10px 30px 10px 30px;
      display: block;
      text-decoration: none;
      margin: 0 auto;
    margin-bottom: 30px;
  }
  
  
  .expand a:hover {	
    color:#fff!important;
    background-color: #4a4a4a;
    opacity:0.5;
    transition-duration: 100ms;	
  }
  
  .expand a:visited{	
    color:#4a4a4a;
    text-decoration:none;	
  } 

  .card-card {
    transition: var(--transition);
    width: 62%;
    height: 28vh;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.spacer_80 {
	width:100%;
	height:80px;
  display: block;
  float: left;
	border:0px solid red;
}

.card-img {
  height: 14rem;
}

.content-title  {
  letter-spacing: 0em;
    font-size: 2.3em;
    font-weight: 200;
    line-height: 1.2em;
    text-align: center;
    margin-top: 0;
    border: 0px solid red;
    padding: 1.3em 0em 1.3em 0em;
    width: 100%;
}

}

/*-- MOBILE LANDSCAPE --*/
@media screen and (max-width: 1000px) and (orientation: landscape){

  .img_large {
    width:100%;
    display:block;
    border:0px solid red
  }
  
  .img_large img {
    width:90%;
    display:block;
    margin:0 auto;
    border:0px solid blue;
  }

  .expand a {
    width: 14%;
      height: auto;
      border: 1px solid #4a4a4a;
      border-radius: 40px;
      font-size: 1em;
      letter-spacing: 0.1em;
      padding: 10px 30px 10px 30px;
      display: block;
      text-decoration: none;
      margin: 0 auto;
      text-align:center;
    margin-bottom: 30px;
  }


  
  
  .expand a:hover {	
    color:#fff!important;
    background-color: #4a4a4a;
    opacity:0.5;
    transition-duration: 100ms;	
  }
  
  .expand a:visited{	
    color:#4a4a4a;
    text-decoration:none;	
  }

  .spacer_80 {
    width:100%;
    height:80px;
    display: block;
    float: left;
    border:0px solid red;
  }

  .card-card {
    transition: var(--transition);
    margin-bottom: 2rem;
    width:86%;
    height: 48vh;
  
}

.card-img {
  height: 14rem;
}

.content-title {
  letter-spacing: 0em;
  font-size: 2.3em;
  font-weight: 200;
  line-height: 1.2em;
  text-align: center;
  margin-top: 0;
  padding: 1.3em 0em 1.3em 0em;
  width: 100%;
}

.featured-center {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}


}


@media screen and (min-width: 768px) {
  .featured-center {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
}


@media screen and (min-width: 1170px) {
  .featured-center {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}



/*
=============== 
Carousel page 
===============
*/
.back_btn {
  position: absolute;
  top: 2.4em;
  left: 4em;
  font-size: 1.4em;
  border: 1px solid #666;
}

.carousel_section {
  padding: 1rem 0 0 0;
  scroll-margin-top: 4rem;
}
.carousel_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  width:50%;
}
.carousel_info_section {
  padding: 1rem 0 5rem 0;
  scroll-margin-top: 4rem; 
}
.carousel_info {
  margin-bottom: 1rem;
  scroll-margin-top: 4rem; 
}
.carousel_price {
  font-size: 1.95em;
  margin-top:0;
  padding:0;
  border:
  0px solid red
}
.hero-btn-carousel {
  padding:0.6rem 1.3rem;
  font-size: 0.9rem;
  margin:0 0 5rem 0;
}
.hero-btn-carousel:hover {
  background: #666; 
  color: var(--clr-white);
}

/*
=============== 
Contact Form
===============
*/

/*
.contact_titleOLD {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight:400;
  color: #333;
  line-height: 1.5;
  margin: 0 0 2.5rem 0;
  font-size:2em;  
}
*/

.contact_title {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3em;
}

.contact_title_subscribe {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.3em;
}


