@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");

:root {
    --text-color: #ffffff;
    --text-dark-color: #1a1a1a;

    --primary-color: 114, 156, 113;
    --secondary-color: 41, 200, 236;
    --testcolor: 255,255,255;
}

body {
  margin: 0;
  background-color: #1a1a1a;
  color: #ffffffdd;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,.3333333333) 0%,rgba(0,0,0,.3333333333) 30%,rgba(255,255,255,.3333333333) 100%);  
  background-size:1px 1200px;  
  transition: background 0.3s ease-in-out; /* geçiş animasyonu */
}
.card:hover::before {
  background-position: 1200px;  
}

#btn {
  position: absolute;
  top: 690px;
  left: 16px;
  z-index: 99;
}

.card-content {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.8666666667);
  padding-left: 16px;
}

.content-place {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}

.content-place {
  font-weight: 500;
}

.content-title-1,
.content-title-2 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}

.content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background-color: rgba(255, 255, 255, 0.8666666667);
}

.details {
  z-index: 50;
  position: absolute;
  top: 240px;
  left: 60px;
  border-radius: 5%;
  padding: 20px;
  background-color: rgba(var(--primary-color), 0.4);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(var(--primary-color),1);
}
.details .place-box {
  height: 46px;
  overflow: hidden;
}
.details .place-box .text {
  padding-top: 16px;
  font-size: 20px;
}
.details .place-box .text:before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background-color: white;
  opacity:0;
}
.details .title-1,
.details .title-2 {
  font-weight: 600;
  font-size: 72px;
  font-family: "Oswald", sans-serif;
}
.details .title-box-1,
.details .title-box-2 {
  margin-top: 2px;
  height: 100px;
  overflow: hidden;
}
.details > .desc {
  margin-top: 16px;
  width: 500px;
}
.details > .cta {
  width: 500px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.details > .cta > .bookmark {
  border: none;
  background-color: rgb(var(--primary-color));
  width: 36px;
  height: 36px;
  border-radius: 99px;
  color: white;
  display: grid;
  place-items: center;
}
.details > .cta > .bookmark svg {
  width: 20px;
  height: 20px;
}
.details > .cta > .discover {
  border: 1px solid #ffffff;
  background-color: transparent;
  height: 36px;
  border-radius: 99px;
  color: #ffffff;
  padding: 4px 24px;
  font-size: 12px;
  margin-left: 16px;
  text-transform: uppercase;
}

nav {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.3333333333);
  backdrop-filter: blur(4px);
  -webkit-box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.3333333333);
  -moz-box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.3333333333);
  box-shadow: 0px 10px 18px 0px rgba(0,0,0,0.3333333333);
}
nav svg {
  width: 20px;
  height: 20px;
}
nav .svg-container {
  width: 20px;
  height: 20px;
}
.nav_title {
  color: white;
  text-shadow: 
    0 0 15px rgba(255, 215, 0, 0.8); /* Parlak altın rengi gölge */
}
nav > div {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
}
nav > div:first-child {
  gap: 10px;
}
nav > div:last-child {
  gap: 24px;
}
nav > div:last-child > .active {
  position: relative;
}
nav > div:last-child > .active:after {
  bottom: -8px;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  height: 3px;
  border-radius: 99px;
  background-color: rgb(var(--primary-color));
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:active,
a:visited {
    color: inherit; /* Rengini değiştirmeden aynı rengi korur */
    text-decoration: none; /* Alt çizgiyi kaldırır */
}
.indicator {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 60;
  background-color: rgb(var(--primary-color));
}

.pagination {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
}
.pagination > button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}
.pagination > button > .arrow {
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.3333333333);
  border: 2px solid rgba(255, 255, 255, 0.8888888888);
  display: grid;
  place-items: center;
  transition: background-color 150ms ease-out;
}
.pagination  > button > .arrow:nth-child(2) {
  margin-left: 20px;
}
.pagination  > button > .arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: rgba(255, 255, 255, 0.8888888888);
}

.pagination > button:hover > .arrow {
    background-color: rgba(255, 255, 255, 0.6666666666);
    border-color: rgba(255, 255, 255, 0.8888888888)
  }
.pagination  > button:hover > .arrow svg {
  color: rgba(255, 255, 255, 0.8888888888);
}
.pagination .progress-sub-container {
  margin-left: 24px;
  z-index: 60;
  width: 500px;
  height: 50px;
  display: flex;
  align-items: center;
}
.pagination .progress-sub-container .progress-sub-background {
  width: 500px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.8888888888);
}
.pagination .progress-sub-container .progress-sub-background .progress-sub-foreground {
  height: 3px;
  background-color: rgb(var(--primary-color));
}
.pagination .slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 60;
  position: relative;
}
.pagination .slide-numbers .item {
  width: 50px;
  height: 50px;
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: bold;
}

.cover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
}

.bookmark {
  z-index: 50;
}

.discover {
  height: 12px !important;
  padding: 12px 24px !important;
  z-index: 50;
  display: block; /* Görünür yapar */
  cursor: pointer; /* Tıklanabilir yapar */
}

.discover:hover {
  background-color: #fff;
  color: rgb(var(--primary-color));
}

@media only screen and (max-width: 431px) {
  .details > .desc {
    margin-top: 16px;
    width: 300px;
  }
  .details > .cta {
    width: 300px;
    margin-top: 24px;
    display: flex;
    align-items: center;
  }
  .details .title-1,
  .details .title-2 {
    font-size: 40px;
  }
  .details .title-box-1,
  .details .title-box-2 {
    height:50px;
  }
}