/*--------------------------------------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;
transition: width .5s ease;
margin-top: 20px;
overflow: hidden;
border-radius: 10px;
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;

}


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

width: 100%;
height: auto;

}

/*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: 80px; /*dont change from 200. confirmed on iPhone*/
overflow: hidden;
transition: height .5s ease-out;

}


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

height: 580px; /*dont change from 600*/

}



/*full width container*/
.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*/


}



/*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*/

}


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

font-size: 12px;
font-family: "sf-display-bold";
font-weight: 300;
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*/

}



/*More button and image captions*/
#main-body-div p {

background-color: none;
width: 100%;
margin: auto;
text-align: left;
color: #2276d3;
font-size: 12px;
font-family: "sf-display-bold";
letter-spacing: .5px;
transition: .5s ease-out;
margin-top: 10px;
padding-left: 5px;

}

#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*/

}



/*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;
}

#more-icon:hover {

cursor: pointer;
transform:scale(1.2);

}


#less-icon:hover {

cursor: pointer;
transform:scale(1.2);

}


/*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%;

}

/*adjusts width to fill 800px parent container*/
.info-flex-wrapper{

width: 100%;

}




/*--------------------------------------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;

}


/*height adjustment for desktop*/
.info-flex-wrapper {

height: 80px;
background-color: none;

}

/*doesnt need to expand as much*/
.expand-info-flex {

height:396px; /*580 in mobile*/

}

/*changes from 100%*/
.info-container {

width: 31.5%;   

}


/*changes from 50%*/
.info-container-2up {

width: 31.5%;  


}

/*changes from 50%*/
.info-container-4up {

width: 23%;  

}


}

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











  

