/*--------------------------------------mobile start------------------------------------------*/
* {
	
margin: 0px;
padding: 0px;
box-sizing: border-box;

}

/*all images are in one of these containers*/
.artwork-container {

width: 100%;
height: auto;
background-color: none;
margin: auto; /* center image */
z-index: 5;
margin-top: 20px;
overflow: hidden;
transition: none;
border-radius: 0px; /*moved these image or video level*/
/* causing problems with captions */
/*display: flex; gets rid of hairline gap at bottom*/
/*justify-content: center; gets rid of hairline gap at bottom*/
/*align-items: center; gets rid of hairline gap at bottom*/


}


/*make sure image takes up the width of its parent*/
.artwork-container img {

width: 100%;
height: auto;
border-radius: 10px;

}


/*make sure video takes up the width of its parent*/
.artwork-container video {

width: 100%;
height: auto;
border-radius: 10px;


}

/*everything is in this div*/
#main-body-div {

margin: auto;
margin-top: 80px;
background-color: none;
width: 90%;

}



/*artwork information container. Child of #main-body-div*/
.info-flex-wrapper {

margin: auto;
background-color: none;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
height: 180px;
overflow: hidden;
transition: height .5s ease-out;

}


/*.info-flex-wrapper will expand to height listed here*/
.expand-info-flex {

height: 480px;

}



/*full width container (project name)*/
.info-container {

background-color: #fafafa;
width: 100%;
height: 80px;	
text-align: left;
letter-spacing: 1px;
padding: 20px;
border-radius: 10px;
border: .25px solid #a8a8a8;
margin-bottom: 20px;
display: inline-block;
box-sizing: border-box;
margin-left: .25px;/*border getting cut off without this*/

}


/*added to make a scrollable area*/
.brief-wrapper {

overflow: scroll;
height: 40px;

}


/*targets only brief CONTAINER*/
.info-container:nth-child(2) {

background-color: none;

}


/*targets only brief COPY*/
.brief-wrapper .section-copy {

font-size: 14px;
line-height: 20px;

}


/*targets only brief LABEL*/
.info-container:nth-child(2) .section-label {

display: none;

}

/*2 containers next to each other*/
.info-container-2up {

background-color: #fafafa;
width: 48%;  /*only difference*/
height: 80px;	
text-align: left;
letter-spacing: 1px;
padding: 20px;
border-radius: 10px;
border: .25px solid #a8a8a8;
margin-bottom: 20px;
display: inline-block;
margin-left: .25px;/*border getting cut off without this*/

}



/*4 containers*/
.info-container-4up {

background-color: #fafafa;
width: 48%;    /*only difference, not 4 up until desktop*/
height: 62px;
text-align: center;  /*only difference*/
letter-spacing: 1px;
padding: 20px;
border-radius: 10px;
border: .25px solid #a8a8a8;
margin-bottom: 20px;
display: inline-block;
margin-left: .25px; /*border getting cut off without this*/
display: none;
 /*hides entire contributions section on all pages */

}


/*small copy - Project, Palette, etc.*/
.section-label {

font-size: 12px;
font-family: "sf-display-bold";
display: block;
background-color: none;
color: #7b7b7b;
margin-top: 5px;
text-transform: uppercase;
letter-spacing: .5px;

}


/*large copy - Apple Fall Launch FY25*/
.section-copy {

font-size: 18px;
font-family: "sf-display-bold";
background-color:  none;
display: inline-block;
color: #2276d3;
letter-spacing: 0px;

}




/*Ps, Ai icons*/
.section-copy img {

width: 20px;
background-color: none;

}


/*Swatches - change individual swatch colors on html page*/
.color-swatch {

width: 20px;
height: 20px;
border-radius: 20px 20px 20px 0px;
display: inline-block;
transform: rotate(135deg);
/*margin-top: 10px; use this for droplet look*/

}

/*image captions*/
.artwork-captions {

font-size: 10px;
font-family: "sf-display-bold";
background-color: none;
color: #7b7b7b;
margin-top: 5px;
margin-left: 5px;
letter-spacing: .5px;
text-align: left;

}



/*contributions
#main-body-div p {
background-color: none;
width: 100%;
margin: auto;
text-align: left;
color: green;
font-size: 12px;
font-family: "sf-display-bold";
letter-spacing: .5px;
transition: .5s ease-out;
margin-top: 10px;
padding-left: 5px;
}*/



/*contributions*/
.info-flex-wrapper p {

color: purple;
display: none;

}



#more-info-button {

background-color: none;
display: flex;
justify-content: center; /*flex-end, flex-start, or center*/
margin-top: 10px;


}

#less-info-button {

background-color: none;
display: flex;
justify-content: center; /*flex-end, flex-start, or center*/
margin-top: 10px;

}



/*more button and less button specifically */
#more-info-button p, #less-info-button p {

text-align: right;
background-color: none;
font-size: 12px;
margin-top: 5px;

}


#more-icon, #less-icon {

width: 30px;
height: 30px;
border-radius: 100%;
background-color: #2276d3;
text-align: center;
padding-top: 5px;
color: white;
transition: .5s ease-out;
/*box-shadow: 0 0 2px #87B9F2, 0 0 3px #87B9F2;*/
animation: pulse 3s infinite alternate;

}

@keyframes pulse {
  from {
    box-shadow: 0 0 3px #2276D3;
 
  }
  to {
    box-shadow: 0 0 5px #2276D3, 0 0 10px #87B9F2, 0 0 20px #ffffff;

  }
}


#more-icon:hover {

cursor: pointer;
transform:scale(1.5);

}


#less-icon:hover {

cursor: pointer;
transform:scale(1.5);

}


/*Link settings*/
a {

text-decoration: none;
color: black;  

}


/*Link settings*/
a:visited {

color: black; 

}


/*Spacer so left hand nav doesnt block artwork*/
#bottom-spacer {

width: 100%;
height: 100px;
background-color:white;

}




 /*--------------------------------------mobile end------------------------------------------*/



 /*--------------------------------------tablet start------------------------------------------*/

@media only screen and (min-width: 850px) {

/*for testing*/
header {

background-color: none;

}


/*not needed in mobile since all images are 100% width*/
#main-body-div {

background-color: none;
max-width: 800px; /*90% in mobile*/
display: flex;
flex-wrap: wrap;
justify-content: space-between;


}

/*tablet adjustment*/
.artwork-container {

margin: 0px;/*resets margin so flex will work*/
background-color: none;
margin-top: 40px;/*changes from 20px to 40px to account for more space*/

}


/*adjusts width to fill 800px parent container*/
#more-info-button, #less-info-button, #main-body-div p {

width: 100%;

}


/*fixes margin thats too big*/
.info-container-2up {

width: 49%; 

}





/*--------------------------------------tablet end------------------------------------------*/


/*--------------------------------------desktop start--------------------------------------*/
@media only screen and (min-width: 1050px) {

/*for resting*/
header {

background-color: none;

}


/*adjusts to 1000px*/
#main-body-div {

background-color: none;
max-width: 1000px;

}


.info-flex-wrapper {

height: 80px;


}


/*.info-flex-wrapper will expand to height listed here*/
.expand-info-flex {

height: 380px;

}


/*desktop adjustment*/
.artwork-container {

background-color: none;

}




/*full width in mobile*/
.info-container {

background-color: none;
width:49%;

}



}

/*--------------------------------------desktop end--------------------------------------*/











  

