@charset "utf-8";
/* CSS Document */


/*  =======================================================================   *
    TAGS - GENERAL
*   =======================================================================  */
/*  - Remove margins and padding from all elements
    - Set 'border-box' for "box-sizing"
    - Set default styles for elements
*   =======================================================================  */
* {
	margin: 0;
	padding: 0;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
    position: relative;
    font-family: 'Quicksand', sans-serif;
    height: 100vh;
    color: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0 auto;
    max-width: 1920px;
/*    background-color: lightcoral;*/
}

.background-home {
    background-image: url("images/home.jpg");
    background-position: -400px;
}

@media (min-width: 768px) {
    .background-home {
        background-position: center;
    }
}

.background-bio {
    background-image: url("images/bio.jpg");
}

.background-modeling {
    background-image: url("images/modeling.jpg");
}

.background-photography {
    background-image: url("images/photography.jpg");
}

.background-contact {
    background-image: url("images/contact.jpg");
}


h1 {
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 900;
    line-height: 72px;
    font-size: 72px;
    text-shadow: 2px 2px 2px #fdb2d4;
/*    margin-top: 80px;*/
    margin-bottom: 80px;
    opacity: 1;
    transition: opacity 500ms;
}

h2 {
    font-size: 20px;
/*    color: #ffd1e6;*/
    color: #fdb2d4;
/*    line-height: 20px;*/
    text-transform: uppercase;
    text-shadow: 2px 2px 2px #333333;
}


h1:hover,
h2:hover {
    opacity: 0.05;
    text-shadow: 2px 2px 2px black;
    transition: all 500ms;
}




a {
/*    color: #ffd1e6;*/
    color: #fdb2d4;
	text-decoration: none;
    cursor: pointer;
    text-shadow: 2px 2px 2px #333333;
}

a:hover {
    color: hotpink;
    text-shadow: 2px 2px 4px #000000;
    transition: all 500ms;
}

li {
	list-style: none;
}

header {
    height: 60px;
/*    background-color: aquamarine;*/
}

p {
    opacity: 0.75;
    transition: all 150ms ease-in-out;
}

p:hover {
    color: #fdb2d4;
/*    text-shadow: 0px 0px 1px #FFFFFF;*/
    transition: all 150ms ease-in-out;
    opacity: 1;
}



/* width */
::-webkit-scrollbar {
    width: auto;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #333333;
    box-shadow: inset 0 0 3px hotpink; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: hotpink;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #fdb2d4;
    transition: all 150ms ease-in-out;
}





/*  ================================  *
    NAVIGATION
*   ===================================================  */
/*  Mobile navigation menu shown by default for tablet 
    & mobile devices
*   ===================================================  */
/*  .nav-menu  --------------------  */
.nav-menu {
    position: fixed;
    right: -100%;
    
    flex-direction: column;
    text-align: right;
    width: 100%;
    
    transition: right 0.5s;
    margin-top: 30px;
}

.nav-menu.active {
    right: 0;
/*    background-color: rgba(0,0,0,0.75);*/
}

@media (min-width: 768px){
    .nav-menu {
        position: initial;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 0;
        gap: 30px;
    }  
}/*  END: .nav-menu  --------------  */


/*  .nav-link  --------------------  */
.nav-link {
    margin-right: 30px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .nav-link {
        margin: 10px 0;
    }
}/*  END: .nav-link  --------------  */





/*  ================================  *
    HAMBURGER MENU BUTTON
*   ===================================================  */
/*  - Mobile navigation menu shown by default for 
      tablet & mobile devices
/*  - '.active' class is added by the script
*   ===================================================  */

.hamburger-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    padding-top: 30px;
}

/*  .hamburger  --------------------  */
.hamburger {
	cursor: pointer;
    width: auto;
    position: fixed;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(315deg);
    background-color: white;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-315deg);
    background-color: white;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}/*  END: .hamburger  -------------  */


.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #ffd1e6;
/*    box-shadow: 0 0 3px hotpink;*/
}
/*  END: HAMBURGER ====================================  */



footer {
    height: 70px;
/*    background-color: aquamarine;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .fa-brands {
    font-size: 20px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 2px #333333;
}

.footer-copyright {
    font-size: 14px;
    text-shadow: 2px 2px 2px #333333;
    text-align: center;
}




main {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
}


/* HOME */
#home {
    margin: 0 auto;
}

#home h1, #contact h1 {
    font-size: 90px;
    line-height: 90px;
    margin: 0 0 20px;
}

.center {
    width: 100%;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
    height: calc(100vh - 140px);
}




/* BIO */
@media (min-width: 768px) {
    #bio {
        height: calc(100vh - 290px);
    }
}


.quote {
    font-style: italic;
    display: block;
    margin: 0 10% 40px;
    font-weight: bold;
    opacity: 1;
}

.about {
    margin: 0 5%;
    text-align: left;
}

@media (min-width: 768px) {
    .about {
        column-gap: 60px;
        column-count: 2;
/*        margin: 0 5%;*/
    }
}

.about p {
    margin-bottom: 20px;
}








/* PHOTOS */

.info {
    margin: 0 5%;
    margin-bottom: 20px;
}

.gallery {
    margin: 0 5%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery a {
    width: 40%;
}

@media (min-width: 768px) {
    .gallery a {
        width: 30%;
    }
}

.gallery-item {
    display: inline-block;
    height: 100px;
    width: 100%;
    object-fit: cover;
    object-position: 0 20%;
    opacity: 0.15;
    transition: opacity 1s;
}

@media (min-width: 768px) {
    .gallery-item {
        height: 140px;
    }
}

.gallery-item:hover {
    opacity: 1;
    transition: opacity 1s;
}





#contact {
    height: calc(100vh - 290px);
}

.email {
    display: block;
    margin: 5px auto 40px;
    font-size: 24px;
    font-weight: bold;
}

.info .social {
    margin-top: 10px;
}






