/*
Author URI: https://aysemkandirali.com
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* ////////////////////////////////////////////////

TABLE OF CONTENTS

1. General
2. Header
3. Navigation
4. Home
5. Pages
6. Works
7. Shop
8. Footer
9. Celestial Collection

//////////////////////////////////////////////// */

/* 1. General */

body {
  font-size: 24px;
  background-color: #FFF;
  color: #000;
  font-family: 'Abhaya Libre', serif;
  width: 100%;
  overflow-x: hidden;
}

h1 {
  font-size: 96px;
  font-weight: normal;
  margin-top: 0;
}

h2 {
  font-size: 72px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 40px;
}

h2.h2_60 {
  font-size: 60px;
}

h3 {
  font-size: 48px;
  font-weight: normal;
}

h4 {
  font-size: 36px;
  font-weight: normal;
  margin: 20px 0;
}

a {
  color: #C00000;
}

a:hover {
  color: #BF7F21;
}

p {
  line-height: 1.4em;
}

.img-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  cursor: pointer;
  padding: 8px;
  background-color: #FFF;
  border-radius: 50%;
  color: #000;
}

@media all and (max-width: 1150px) {
  h1 {
    font-size: 72px;
  }

  h2,
  h2.h2_60 {
    font-size: 48px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 30px;
  }
}

/* 2. Header */

header {
  background-color: #FCF5E9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

#site-portrait {
  border-radius: 50%;
  width: 100px;
  display: block;
  margin-bottom: 30px;
}

#site-logo {
  width: 100%;
  max-width: 282px;
  display: block;
}

/* 3. Navigation */

.topnav {
  overflow: hidden;
  margin: 0 -20px;
  padding-top: 30px;
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  margin: 14px 20px;
  text-decoration: none;
  font-size: 18px;
}

.topnav a:hover {
  color: #C00000;
}

.topnav a.active {
  color: #C00000;
  text-decoration: underline;
}

.hamburger-icon {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0.48);
}

.hamburger-icon label {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
}

.hamburger-icon label span {
  background: #000;
  border-radius: 10px;
  height: 7px;
  margin: 7px 0;
  transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-icon span:nth-of-type(1) {
  width: 50%;
}

.hamburger-icon span:nth-of-type(2) {
  width: 100%;
}

.hamburger-icon span:nth-of-type(3) {
  width: 75%;
}

.hamburger-icon input[type="checkbox"] {
  display: none;
}

.hamburger-icon input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px,0px);
}

.hamburger-icon input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.hamburger-icon input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(30px,-11px) rotatez(45deg);
}

@media all and (max-width: 768px) {
  .topnav a {
    display: none;
    margin: 30px 20px;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a {
    float: none;
    display: block;
  }

  .hamburger-icon {
    display: block;
  }
}

/* 4. Home */

.home-top-container {
  background-color: #FCF5E9;
  padding: 100px 100px 80px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-text {
  width: 100%;
  /* max-width: 650px; */
  max-width: 800px;
  z-index: 1;
}

.home-top-container img {
  margin: 0 0 0 -120px;
  z-index: 0;
}

@media all and (max-width: 1150px) {
  .home-top-container {
    padding: 50px 20px;
    display: block;
  }

  .home-text {
    max-width: 100%;
  }

  .home-top-container img {
    margin: 50px 0;
    width: 100%;
  }
}

/* 5. Pages */

.page-container {
  padding: 0 20px;
}

.page-outer {
  display: block;
  width: 100%;
  max-width: 855px;
  margin: 0 auto;
}

.page-header-outer {
  text-align: center;
  background-color: #FCF5E9;
  padding: 100px;
  margin-bottom: 100px;
}

.page-header {
  margin-bottom: 0;
}

.email_link {
  text-decoration: none;
}

@media all and (max-width: 1150px) {
  .page-header-outer {
    padding: 50px 20px;
  }
}

/* 6. Works */

.work-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 100px;
}

.work-thumbnail {
  max-width: 100%;
  width: 240px;
  margin-right: 90px;
  cursor: pointer;
}

.work-img-container {
  position: relative;
}

.work-text {
  width: 100%;
  max-width: 450px;
}

.work-container h2 {
  cursor: pointer;
}

.work-container h2:hover {
  color: #BF7F21;
}

.work-text a {
  font-size: 18px;
}

.work-sep-container {
  margin-left: 70px;
  height: 180px;
  width: 5px;
}

@media all and (max-width: 968px) {
  .work-container {
    display: block;
  }

  .work-container img {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .work-text {
    max-width: 100%;
  }

  .work-sep-container {
    margin-left: 0;
    margin-top: 60px;
    height: 5px;
    width: 100%;
    display: flex;
  }

  .work-sep {
    height: 5px !important;
    width: 33.33%;
  }
}

/* 7. Shop */

.shop-menu {
  margin-top: 50px;
}

.shop-menu span {
  color: #BF7F21;
}

.shop-menu a {
  color: #000000;
}

.shop-menu a:hover {
  color: #C00000;
}

.shop-menu-originals {
  margin-right: 25px;
}

.shop-menu-prints {
  margin-left: 25px;
}

.shop-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -30px;
}

.shop-item {
  flex: 0 0 33.333333%;
  max-width: 100%;
  margin-bottom: 100px;
  padding: 0 30px;
}

.shop-thumbnail-container {
  position: relative;
}

.shop-thumbnail {
  width: 100%;
  cursor: pointer;
}

.shop-item h4 {
  height: 82px;
  cursor: pointer;
}

.shop-item h4:hover {
  color: #BF7F21;
}

.shop-size {
  margin-bottom: 20px;
  width: 100%;
}

.shop-size-info {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: -10px;
}

.shop-price {
  display: inline-block;
}

.shop-button {
  float: right;
}

.sold-out {
  color: #CCCCCC;
  float: right;
}

@media all and (max-width: 968px) {
  .shop-container {
    margin: 0 -20px;
  }

  .shop-item {
    flex: 0 0 50%;
    padding: 0 20px;
  }
}

@media all and (max-width: 640px) {
  .shop-item {
    flex: 0 0 100%;
  }

  .shop-item h4 {
    height: auto;
  }
}

/* 8. Footer */

footer {
  font-size: 16px;
  text-align: center;
  padding: 50px;
}

footer a {
  margin-right: 20px;
}

footer a:last-child {
  margin-right: 0;
}

#goTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  border: none;
  outline: none;
  background-color: #FCF5E9;
  color: #000;
  cursor: pointer;
  font-size: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#goTop:hover {
  background-color: #C00000;
  color: #FFF;
}

@media all and (max-width: 1150px) {
  #goTop {
    display: none !important;
  }
}

/* 9. Celestial Collection */
.celestial-header {
  margin-bottom: 0;
}

.celestial-header h1 {
  max-width: 1400px;
  margin: 0 auto;
}

.celestial-sep-container {
  height: 5px;
  width: 100%;
  display: flex;
}

.celestial-sep {
  width: 8.3333%;
}

.celestial-splash {
  background-color: #1F325A;
  color: #FFF;
}

.celestial-top {
  position: relative;
  padding: 40px 0;
}

.c-quote {
  font-size: 48px;
  line-height: 1.2em;
  margin: 30px 0;
}

.celestial-portrait-icon {
  position: absolute;
  top: 100px;
  left: -450px;
  width: 500px;
}

.celestial-portrait {
  position: absolute;
  top: -50px;
  left: calc(50% + 520px);
  color: #FFF;
}

.c-portrait img {
  width: 200px;
  display: block;
}

.celestial-caption {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.4em;
}

.celestial-icon {
  display: block;
  margin: 0 auto;
}

.celestial-icon-01 {
  width: 120px;
  padding: 60px 0 40px 0;
}

.celestial-icon-02 {
  width: 150px;
}

.celestial-icon-03 {
  margin-top: 50px;
  width: 100px;
}

.celestial-clutches img {
  width: 360px;
}

.celestial-all-clutches {
  font-size: 18px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 80px;
}

.celestial-aysem-splash {
  margin: 50px 0 100px 0;
}

.celestial-inner-container {
  position: relative;
  max-width: 1600px;
}

.celestial-inner {
  max-width: 895px;
  margin: 0 auto;
  padding: 50px 20px;
}

.celestial-aysem {
  background-color: #DCEFFA;
}

.celestial-aysem-icon1 {
  position: absolute;
  width: 200px;
  top: -92px;
  left: 70px;
}

.celestial-aysem-icon2 {
  position: absolute;
  width: 145px;
  top: 26px;
  left: -100px;
}

.celestial-aysem-icon3 {
  position: absolute;
  width: 160px;
  top: 240px;
  left: -25px;
}

.celestial-aysem-icon4 {
  position: absolute;
  width: 670px;
  top: -95px;
  right: -200px;
}

.celestial-gunes-splash {
  margin: 170px 0 120px 0;
}

.celestial-gunes {
  background-color: #FCF5E9;
}

.celestial-gunes-inner {
  padding: 100px 20px;
}

.mehry-mu-logo {
  width: 80px;
}

.celestial-gunes-icon1 {
  position: absolute;
  width: 300px;
  top: -146px;
  left: calc(50% - 150px);
}

.celestial-gunes-icon2 {
  position: absolute;
  top: -30px;
  left: -220px;
  width: 600px;
}

.celestial-gunes-icon3 {
  position: absolute;
  right: 110px;
  bottom: -70px;
  width: 250px;
}

.celestial-gunes-portrait {
  position: absolute;
  top: 70px;
  right: 70px;
}

.celestial-elle {
  text-align: center;
  background: linear-gradient(180deg, #efefef 500px, white 100px);
  margin: 120px auto 70px auto;
}

.celestial-elle-icon {
  width: 328px;
  position: absolute;
  top: -50px;
  left: calc(50% - 550px);
}

.celestial-elle-logo {
  width: 300px;
  display: block;
  margin: 0 auto;
  padding: 100px 0;
}

.celestial-elle-mag {
  width: 100%;
  max-width: 1200px;
}

.celestial-splide {
  margin-bottom: 50px;
}

.celestial-splide img {
  max-width: 300px;
}

.celestial-splide .splide__arrow,
.celestial-clutches .splide__arrow {
  background: #FCF5E9;
}

.celestial-copyright {
  font-size: 16px;
  text-align: center;
  max-width: 600px;
}

@media all and (max-width: 1480px) {
  .celestial-top {
    padding: 240px 0 40px 0;
  }

  .celestial-portrait-icon {
    top: 300px;
  }

  .celestial-portrait {
    top: -30px;
    left: calc(50% - 100px);
  }

  .celestial-gunes-inner {
    padding: 180px 20px;
  }

  .celestial-gunes-icon1,
  .celestial-gunes-icon2 {
    display: none;
  }

  .celestial-gunes-portrait {
    top: -100px;
    left: calc(50% - 100px);
  }

  .celestial-aysem-splash {
    margin: 100px 0 50px 0;
  }

  .celestial-aysem-icon4 {
    position: relative;
    background-color: #fff;
    display: block;
    width: 100%;
    padding: 50px 400px 0 400px;
    top: auto;
    right: auto;
  }

  .celestial-aysem-icon1 {
    position: relative;
    top: -50px;
    left: calc(50% - 100px);
    margin-bottom: -80px;
  }

  .celestial-aysem-icon2,
  .celestial-aysem-icon3 {
    display: none;
  }
}

@media all and (max-width: 1150px) {
  .c-quote {
    font-size: 30px;
    line-height: 1.4em;
  }

  .celestial-portrait-icon {
    top: 150px;
  }

  .celestial-elle-icon {
    left: calc(50% - 440px);
  }

  .celestial-aysem-icon4 {
    padding: 50px 100px 0 100px;
  }
}
