@import url('https://fonts.googleapis.com/css2?family=Kameron:wght@400..700&display=swap');


*{
    font-family: "Kameron", serif;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}


html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;

  
}

 /*  Navbar-Left Corner */
.nav-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
    padding: 5%;
}

@media only screen and (max-width: 768px) {
    .div-content {
      display: none;
    }
}

@media only screen and (min-width: 768px) {
    .hamburger {
      display: none;
    }
}

/*  hamburger menü */

.hamburger {
    height: 10%;
    position: absolute;
    margin-left: 8%;
    z-index: 1000;
}

#menu_checkbox {
    display: none;
}
  
label {
    margin: 5% 0% 0% 5%;
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  
label:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: 1.2s cubic-bezier(0, 0.96, 1, 0.02) background-color;
    width: 20px;
}
  
label div {
    position: relative;
    top: 0;
    height: 1px;
    background-color: #fff;
    margin-bottom: 12px;
    transition: 0.3s ease transform, 0.3s ease top, 0.3s ease width,
      0.3s ease right;
    border-radius: 2px;
}
  
label div:first-child {
    transform-origin: 0;
}
  
label div:last-child {
    margin-bottom: 0;
    transform-origin: 20px;
}
  
label div:nth-child(2) {
    right: 0;
    width: 30px;
}
  
#menu_checkbox:checked + label div:first-child {
    top: 0px;
    transform: rotateZ(45deg);
    width: 30px;
}
  
#menu_checkbox:checked + label div:last-child {
    top:  -5.6px;
    transform: rotateZ(45deg);
    width: 20px;
}
  
#menu_checkbox:checked + label div:nth-child(2) {
    width: 30px;
    top: -2px;
    right: 13px;
    transform: rotateZ(-45deg);
}

.window {
    display: none;
    position: absolute;
    margin-top:15%;
    margin-left: 5%;
    z-index: 1000;
    width: 40%;
    height: 80%;
}

.window-content {
  background: none;
  display: grid;
  
}

.window-content a {
   margin: 5%;
   color: #fff;
   text-decoration: none;
}

.window-content a:hover{
    color: rgb(246, 222, 191);
    text-shadow: 0 0 10px #fff,
    0 0 40px #fff,
    0 0 80px #fff,
    0 0 160px #fff,
    0 0 240px #fff,
    0 0 320px #fff;
}

.window-content a img:hover{
    scale: 1.2;
    transition: 2s;
}



input[type="checkbox"]:checked ~ .window {
    display: block;
}


@media only screen and (min-width: 768px) {
    .window-content {
      display: none;
    }
}

.div-content {
  width: 20%;
  height: 20%;
}

.div-content a {
    color: rgb(255, 255, 255);
    font-size: 100%;
    padding-top: 4%;
    display: grid;
    text-decoration: none;
    text-transform: uppercase;
    
}

.div-content a:hover {
    color: rgb(246, 222, 191);
    text-shadow: 0 0 10px #fff,
    0 0 40px #fff,
    0 0 80px #fff,
    0 0 160px #fff,
    0 0 240px #fff,
    0 0 320px #fff;
}

@media only screen and (max-width: 768px) {
  .div-content a {
    font-size: 150%;
  }
}

@media only screen and (max-width: 600px) {
    .div-content a {
        font-size: 200%;
    }
}

/* Background Video  */

#background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-position: 10%

}

@media only screen and (max-width: 768px) {
    #background-video {
        object-position: 20%
    }
}

@media only screen and (max-width: 480px) {
    #background-video {
        object-position: 30%
    }
}


/* Homepage Elements */
.btn-content {
    z-index: 100;
    position: fixed;
    display: grid;
    text-align: center;
    justify-content: center;
    width: 10%;
    height: 13%;
    bottom: 2%;
    right: 0%;
}

.btn-content a {
    font-size: 100%;
    padding: 0%;
}


.btn-content button {
    font-size: 100%;
    padding: 0%;
    background:none;
    color: white;
    border: none;
    
}

.btn-content button:hover {
    color: rgb(246, 222, 191);
    text-shadow: 0 0 10px #fff,
    0 0 40px #fff,
    0 0 80px #fff,
    0 0 160px #fff,
    0 0 240px #fff,
    0 0 320px #fff;
}

.btn-content h6 {
    color: white;
    font-size: 100%;
    padding: 0%;
    letter-spacing: 1px;
}


@media only screen and (max-width: 768px) {
    .btn-content a {
        font-size: 50%;
    }

    .btn-content h6 {
        font-size: 40%;
    }
}


/* Wishlist */

.wishlist {
    margin-top: 0%;
    width: 100%;
    height: 100%;
}

#back-img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
} 

@media only screen and (max-width: 480px) {
    #back-img {
        object-fit: fill;
    }
}

.wishlist-content {
    opacity: 1;
}


#sub-text {
    position: absolute;
    left: 25%;
    top: 150%;
    width: 50%;
}

#yeni-logo {
    width: 40%;
    margin-left: 30%;
}


@media only screen and (max-width: 480px) {
    #yeni-logo {
      margin-top: 40%;
      width: 40%;
      left: 30%;
    }
}



@media only screen and (max-width: 480px) {
    #sub-text {
      width: 50%;
      left: 25%;
      scale: 1.9;
    }
}

.epic-text img {
    z-index: 100;
    position: absolute;
    left: 53.5%;
    top: 170%;
    width: 13%;
    transition: 1s;
}

.epic img {
    z-index: 100;
    position: absolute;
    left: 56%;
    top: 175%;
    width: 8%;
    transition: 1s;
}

.epic img:hover {
    scale: 1.05;
}

.line img {
    width: 1%;
    position: absolute;
    left: 50%;
    top: 168%;
    width: 0.34%;
}

.steam-text img {
    z-index: 100;
    position: absolute;
    left: 34%;
    top: 170%;
    width: 13%;
}

.steam img {
    z-index: 100;
    position: absolute;
    left: 36.5%;
    top: 175%;
    width: 8%;
    transition: 1s;
}

.steam img:hover {
    scale: 1.05;
}


@media only screen and (max-width: 480px) {
    .epic-text img {
      left: 65%;  
      scale: 2;
    }
    .epic img {
        left: 67.5%;
        scale: 2;
    }
}

@media only screen and (max-width: 480px) {
    .steam-text img {
      scale: 2;
      left: 30%;
    }
    .steam img {
        scale: 2;
        left: 32%;
    }
    .line img {
        top: 170%;
        left: 54%;
        scale: 2;
    }
}


/* Overview */

.containers {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#Key {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.containers.grid, .containers.columns {
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}
  
.letter {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 10vmax;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
}

.containers.grid .letter {
    flex-basis: 50%;
}

.containers.columns .letter {
    flex-basis: 25%;
}

.for, .gsap {
    font-size: 5vmax;
   color: white;
}

.for {
    padding: 2px 1.6vmax;
    font-weight: 300;
    display: none;
}
.gsap {
    padding: 2px 0;
    font-weight: 600;
    display: none;
}

.containers.final .for, .containers.final .gsap {
    display: block;
}

.F {
    color: white;
}

.l {
    color: white;
}

.i {
    color: white;
}

.p {
    color: white;
}

.containers.plain .letter {
    background: transparent;
    color: white;
    padding: 0;
}


/* Foto */

.gll {
    background-image: url('resim/pic-3.png');
    width: 100%;
    height: 100%;

}

.button-container {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 5%;
    margin-bottom: 2%;
}

.resizeButton {
    padding: 1% 10%;
    font-size: 100%;
    transition: all 0.4s ease;
    box-shadow: none;
    color: #fff;
    background-image: url(resim/endpage_Background.png);
}

.resizeButton.enlarged {
    padding: 1% 14%;
}

.resizeButton.with-shadow {
   border: 2px white solid ;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.gallery.active {
    display: flex;
}

.main-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.thumbnails img {
    width: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 480px) {
    .thumbnails img {
        width: 100px;
    }
    .button-container{
        padding-top:40% ;
    }
}

.thumbnails img:hover {
    transform: scale(1.1);
}



/* footer */
.footer {
    color: white;
    width: 100%;
    height: 100%;
}

#endpage-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.footer-text {
    color: white;
    display: grid;
    text-align: center;
    justify-content: center;
    padding-top: 15%;
}

.signup-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 2%;
}

.signup-content #email {
    width: 200px;
    height: 50px;
    margin-right: 2%;
    border: none;
}

input::placeholder {
    padding-left: 10px;
}

.signup-content #submit {
    width: 100px;
    height: 50px;
    border: none;
    background-color: #fff;
}

.discord-com {
    margin-top: 2%;
    text-align: center;
    justify-content: center;
}

.discord-com img {
    margin-top: 2%;
}

.discord-com h6 {
    margin-top: 2%;
}

#discord-img {
    width: 5%;
}

.discord-com p  {
    margin-top: 5%;
}

#privacy-policy {
    color: #fff;
    text-underline-offset: 4px;
}

#news {
    margin-left: 4px;
    color: white;
    text-underline-offset: 4px;
}

@media only screen and (max-width: 768px) {
    .footer-text {
        padding-top: 30%;
    }
}


@media only screen and (max-width: 480px) {
    .footer-text {
        padding-top: 50%;
    }
}

