
:root {

  /* Media Queries */ 
  --tablet: 600px;
  --desktop: 1024px;

  /* Hue */ 
  --grid-0: 100vw;
  --grid-1: calc(100vw - 3rem);
 
  /* Hue */ 
  --hue-primary: #00ff00;
  --hue-secondary: #ff0000;
  --hue-accent: #0000ff;
  --hue-light: white;
  --hue-dark: black;

  /* Font Sizes */ 
  --font-xs:0.7rem;
  --font-small:0.96rem;
  --font-reg:1rem;
  --font-med:1.4rem;
  --font-large:2rem;
  --font-xl:3rem;
  --font-xxl:5rem;

  /* Element Sizes */
  --unit04:0.25rem; 
  --unit02:0.5rem;
  --unit:1rem;
  --unit2:2rem;
  --unit3:3rem;
  --unit4:4rem;
  --unit16:16rem;

}

html{
  width:100vw;
  margin: 0;
  padding: 0;
  font-size:16px;

}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  background-color: #f9f9f9;
  width:100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}
#page-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}
#profile-header{
  margin-top: var(--unit4);
}
#profile-header-portrait{
  width:40vw;
  height: auto;
}
#profile-header-name{
  margin-top: var(--unit);
  font-size: var(--font-med);
}
#profile-header-title{
  font-size: var(--font-reg);
  font-weight: 400;
}
#profile-header-license{
  font-size: var(--font-small);
  font-weight: 400;
}


#intro-paragraph{
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size:1.1rem;
}


/*/ Accordion /*/

#section-faq {
  width:100%;
}
.accordion{
  display: flex;
  flex-direction: column;
  width:100%;
  border-bottom:1px solid #ccc;
  padding:0.75rem 0px;
}
.accordion-question {
  width: 100%;
  font-weight: 600;
  line-height: 1.2;
  color:#333333;
  transition: color 0.3s ease;
}

.accordion-question.open {
  color:blueviolet;
  
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  font-weight: 300;
  font-size:var(--font-small);
  color:#333333;
  transition: max-height 0.4s ease;
  background-color: #fafafa;
}

.accordion-answer p {
  padding-top:var(--unit04);
  padding-bottom:var(--unit02);
}

#accordion-showmore-button{
  width:100%;
  text-align: center;
  padding-top: var(--unit02);
  border-top:1px solid #ccc;
  font-size:var(--font-small);
  font-weight: 500;
  color:blue;

}
.button-line-component{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.separator-line{
  position: absolute;
  width: 100%;
  height:1px;
  background-color: black;
}

.thumbnail-wide-grid{
  width:100%;
  display: flex;
  flex-direction: column;
  gap:0.5rem;
}
.thumbnail-wide{
  padding:0.5rem;
  box-sizing: border-box;
  border:1px solid #ccc;
}
.thumbnail-wide-img-container{
  width:100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
.thumbnail-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumbnail-wide-caption{
  width:100%;
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color:black;
  padding-top:0.5rem;
}
.thumbnail-wide-caption-city{
  font-weight: 700;
  font-size:0.9rem;
  line-height: 1.2;
}

.thumbnail-wide-caption-details{
  font-weight: 400;
  font-size:0.9rem;
  display:block;
}

.thumbnail-wide-caption-price{
  font-weight: 500;
  font-size:1.6rem;
}

.thumbnail-square-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}

.thumbnail-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.thumbnail-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




.colaborator{
  width:100%;
  margin-bottom:0.75rem;
  background-color:transparent;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
.colaborator-div:first-of-type{
 
}
.colaborator-portrait{
  width:var(--unit3);
  height:var(--unit3);
}
.colaborator-name{
  line-height: 1.2;
  font-weight: 700;
  padding-left: var(--unit02);
}
.colaborator-title{
  display: block;
  font-weight: 300;
}
.colaborator-button{
  margin-left: auto;
}
#colaborator-join-block{
  margin-top:1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-size:0.9rem;
}
#colaborator-join-text{
  color:#333333;
}

.hidden {
  display: none;
}

.flex-col-center-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col-start-center{
  display: flex;
  flex-direction:column;
  justify-content: flex-start;
  align-items: center;
}

.grid-0{
  width:var(--grid-0);
}
.grid-1{
  width:var(--grid-1);
}

section{
  margin-top: var(--unit2);
}

footer{
  width:100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: var(--unit2);
}
.social-icon{
  font-size: var(--font-med);
  padding: 0 0.25rem;
}
.copyright{
  font-size: var(--font-xs);
}

p{
  line-height: 1.2;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 60ch;
  margin: 0 auto 1rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.fa-envelope{
  font-size:1.1rem;
}

h1{
  all: unset;
  font-weight: 500;
}
h2{
  margin:0;
  margin-top:3rem;
  font-family: "Lato", sans-serif;
  line-height: 1.15;
  font-size:var(--font-med);
  color:black;
  font-weight: 700;
  padding-bottom: 1rem;
  width:100%;
  text-align: center;
}
button{
  all: unset;
}


.section-contact{
  margin-top:2rem;
  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:0.1rem;
  
}
.btn-pill {
  border-radius: 999px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height:2rem;
  padding-left:0.75rem;
  padding-right: 0.75rem;
  border: 1px solid black;
  /*background-image: linear-gradient(180deg ,rgb(255, 255, 255) ,rgb(235, 235, 235));*/
  background-color: transparent;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;       /* Don’t shrink */
  flex-grow: 0;         /* Don’t grow */
  width: auto;   
  transition: background 0.2s ease;
  align-self: center;
  
}
.btn-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  border: 1px solid black;
  /*background-image: linear-gradient(180deg ,rgb(255, 255, 255) ,rgb(235, 235, 235));*/
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}



/*/               D E S K T O P                /*/ 

@media (min-width: var(--desktop)) { }
