
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap");
:root {
  --primary-color: #00001eff;
  --text-color: #c8beb7ff;
}

body {
  background: var(--primary-color);
  margin: 0;
  font-family: 'Courier New';
  color: var(--text-color);
  padding: 2em 7em;
  max-width: 2560px;
}

footer {
  position: fixed;
  bottom: 2em;
  width: 80%;
}

.navbar .container {    
  display: flex;
}

.logo {
  text-decoration: none;
  font-size: 1.8em;
  font-weight: bold;
  color: var(--text-color);
  transition: 0.5s;

}

.logo:hover{
    color: #eef;
  }

.logo::before {

    position: absolute;
    width: 1em;
    height: 1em;
    margin-left: -1.2em;
    content: '';
    background-color: rgb(228, 228, 228);
    background-image: url(img/home1.png);
    background-repeat: no-repeat;
    background-size: 1em;
    background-position: center;
    border-radius: 50%;
    opacity: 1;
  }

  /*
  .logo::after{
      content: ' - Photographer';
  }
  */


.navbar .translate {
  font-family: 'Courier New';
  border-radius: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
}

.buttons {  
    margin-top: 5px;
    margin-left:auto;
    margin-right:0;
}

.buttons .lang-flag {
  max-width: 35px;
  vertical-align: middle;
  padding: 2px;
  border-radius: 10px;
  border: 1px solid var(--text-color);
}

.circular-menu {
  width: 670px;
  height: 670px;
  margin: 0 auto;
  margin-top: 70px;
  border-radius: 50%;
  padding: 12px;
  position: relative;
  border: 2px solid white;
  background-image: radial-gradient(rgb(255, 255, 255) 50%, rgb(0, 0, 0)60%);
  /*background-color: red;*/
  overflow: hidden;
}

.mobile_menu{
  display: none;
}


.circle {
  overflow: hidden;
}

#svg{
    transition: 0.5s;
}

.menu-childern {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-color);
  display: block;
  height: 80px;
  width: 100px;
  line-height: 25px;
  margin-left: -55px;
  margin-top: -10px;
  position: absolute;
  text-align: center;
  -ms-transform: rotate(-7deg);
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
  transition:  0.3s;
  text-shadow: 0px 0px 9px rgb(0, 0, 0);
}

.menu-childern:hover {
  color: #eef;
}


footer .buttons{
    display: none;
} 



@media only screen and (max-width:1000px){

    body{
        padding: 3em 3em;

    }

    .navbar .container {    
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .logo {
        text-decoration: none;
        font-size: 1.6em;
        font-weight: bold;
        color: var(--text-color);
        transition: 0.5s;
        text-align: center;
    }

    .logo::before {
        margin-left: -1.5em;
      }

    .navbar .container .buttons{
        position: absolute;
        font-size: 0.7em;
        margin-top: -3em;
        margin-left: auto;
        margin-right: 0;
    }

    .buttons .lang-flag {
        max-width: 20px;
        vertical-align: middle;
        padding: 2px;
        border-radius: 10px;
        border: 1px solid var(--text-color);
      }
    
    /*
    .logo::after{
        content: '\A Photographer';
        white-space: pre;
    }
    */
    .circular-menu{
        display: flex;
        margin-top: 70px;
        max-width: 100vh;
        width: auto;
        height: auto;
        overflow: visible;
        background-image: none;
        text-align: center;
        justify-content: center;
        border-radius: 0;
        padding: 0;
        border: none;
    }


    .circle{
        display: flex;
        max-width: 100vh;
        width: auto;
        height: auto;
        overflow: visible;
        text-align: center;
        justify-content: center;
    }

    .menu-childern {
        justify-content: center;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        color: var(--text-color);
        margin-left: -110px;
        height: 20px;
        width: 220px;
        padding: 2px;
        background-color: rgb(255, 255, 255, 0.05);
        background-image: radial-gradient(rgb(255, 255, 255, 0.1) 10%, rgb(0, 0, 0, 0.0)70%);
        border-radius: 20px;
        line-height: 15px;
        margin-top: -10px;
        text-align: center;
        transition:  0.7s;
      }

      #svg{
        display: none;
      }

      .mobile_menu{
        height: 100%;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: lowerOpacityShutterAnimation 1.1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
      }
      .big_shutter_mobile{
        position: relative;
        width: 100%;
        object-fit:scale-down;
      }

      .inner_shutter_mobile{
        position: absolute;
        margin: auto;
        width: 10%;
        padding: 0;
        object-fit:scale-down;
        transition: 0.3s;
        animation: openShutterAnimation 0.7s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
      }

      
      @keyframes openShutterAnimation {
        0% {
          width: 10%;
          transform: rotate(-12deg);
        }
        25% {

          transform: rotate(-5deg);
        }
        45% {
          width: 68%;
          transform: rotate(-3deg);
        }
        55% {
          width: 68%;
          transform: rotate(-3deg);
        }
        75% {
          transform: rotate(-5deg);
        }
        100% {
          width: 10%;
          transform: rotate(-3deg);
        }
    }

    @keyframes lowerOpacityShutterAnimation{
      0%{
        opacity: 1;
      }
      50%{
        opacity: 1;
      }
      100%{
        opacity: 0.15;
      }
    }
    
   
}


