body{
  margin: 0;
  font-family: "Playfair Display", serif;
  color: white;
}

.header{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  padding: 10px 0px;
  z-index: 10;
  transition: background-color 0.35s ease, color 0.35s ease, backdrop-filter 0.35s ease;
}

.header-default {
  background: transparent;
  color: #fff;
}

/* content section */
.header-dark {
  background: #000;
  color: #fff;
}

/* contact section */
.header-light {
  background: #fff;
  color: #000;
  border-bottom: 1px solid #e5e5e5;
}

/* link ve button da ters dönsün */
.header-dark a,
.header-dark .btn-contact {
  color: #fff;
}

.header-light a,
.header-light .btn-contact {
  color: #000;
}

nav{
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand{
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 2px;
  cursor: pointer;
}

.container-links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 40%;
}

.list-links{
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-weight: 500;
}

.btn-contact{
  padding: 8px 25px;
  border: 2px solid white;
  border-radius: 0px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}

.header-dark .btn-contact {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ⚪ Contact section (beyaz header) */
.header-light .btn-contact {
  background: #000;
  color: #fff;
  border-color: #fff;
}

/* default (hero) */
.header-default .btn-contact {
  
}

a{
  color: inherit;
  text-decoration: none;
}

.bg{
  background: #ffef3d;
  background: radial-gradient(circle, rgba(255, 239, 61, 1) 0%, rgb(219, 117, 0) 85%);
}

.hero-section{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: url(assets/hero-section.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.container-text{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 95%;
  padding-bottom: 10px;
}

.text-intro{
  font-size: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  font-weight: 500;
}

.text-intro span{
  display: block;
}

.brand,
.links,
.btn-contact,
.text-intro span,
.text-small span,
.title-small,
.title-big,
.text-content,
.board,
.contact,
.subtext,
.warning-text,
.right-bottom-btns a{
  will-change: transform, opacity, filter;
}

.text-small span{
  display: block;
  padding-bottom: 10px;
}

.text-small{
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  font-size: 28px;
}

/* Genel scroll davranışı */
html {
  scroll-behavior: smooth;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25); /* gri */
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

/* Hover olunca belirginleşir */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Scroll yapılırken daha görünür */
::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.7);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
}

.content-section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
  padding: 200px 0 100px;
  gap: 100px;
}

.container-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 95%;
}

.title-small{
  font-size: 24px;
  color: orange;
  font-weight: 500;
}

.left-content{
  width: 50%;
}

.title-big{
  font-size: 75px;
  font-weight: 500;
}

.text-content{
  font-size: 32px;
  font-weight: 500;
}

.right-content{
  width: 50%;
}

.container-boards{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.board-item{
  width: 500px;
}

.board{
  border-radius: 20px;
  background-color: white;
  height: 700px;
  width: 500px;
  overflow: hidden;
  position: relative;
}

.board-title{
  min-height: 1.4em;
  margin: 18px 0 0 12px;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: left;
}

.board-title-char{
  visibility: hidden;
}

.see-example{
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0;
}

.see-example-2{
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0;
  color: white;
}

.see-example-3{
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0;
  color: black;
}

.see-example i{
  font-size: 20px;
}

.see-example-2 i{
  font-size: 20px;
}

.see-example-3 i{
  font-size: 20px;
}

.see-example a{
  text-align: center;
  display: none;
}

.contact-section{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin-top: 100px;
}

.contact-top-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.container-top-btns{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding-top: 70px;
}

.contact-left-btns{
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.contact-left-btns a{
  padding: 5px 15px;
  font-weight: 500;
  font-size: 22px;
  border: 2px solid black;
  background-color: black;
  border-radius: 200px;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-right-btns{
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.switch-btn{
  background-color: white;
  border: 2px solid white;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
  font-size: 22px;
  padding: 10px 20px;
  border-radius: 200px;
  cursor: pointer;
  font-family: inherit;
}

.switch-btn:hover{
  background-color: black;
  color: white;
}

.container-mid-section{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: black;
}

.mid-section{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
}

.mid-section-bg{
  width: 100%;
  position: relative;
}

.contact-text{
  font-size: 400px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  position: relative;
  padding-top: 0px;
}

.phone-bg{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -0);
  z-index: 2;
}

.phone-bg img{
  height: 85vh;
}

.container-bottom-btns{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  justify-self: flex-end;
  align-self: flex-end;
  margin-top: 180px;
  position: relative;
}

.bottom-btns{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 100px 0px;
}

.left-bottom-btns{
  width: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.warning-text{
  font-size: 22px;
  font-weight: 500px;
}

.right-bottom-btns{
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.right-bottom-btns a{
  border-radius: 5px;
  padding: 6px 15px;
  font-weight: 500;
  font-size: 22px;
  border: 2px solid white;
}

.right-bottom-btns i{
  font-size: 16px;
  padding-left: 2px;
}

.copy-notification{
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 20;
  padding: 16px 24px;
  color: #fff;
  background: #000;
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: center;
}

.copy-notification.is-visible{
  animation: copy-notification 2.2s ease-in-out forwards;
}

@keyframes copy-notification{
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }
  14%, 78% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }
}

.bg-circle{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(255, 92, 92);
  width: 750px;
  height: 750px;
  border-radius: 50%;
  z-index: 0;
  display: none;
}

.contact{
  position: relative;
  z-index: 1;
}

.contact-content{
  position: relative;
}

.subtext{
  position: absolute;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
  z-index: 1;

}

.magic-overlay{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.magic-overlay.is-open{
  opacity: 1;
  visibility: visible;
}

.magic-dialog{
  width: min(460px, 100%);
  color: #000;
  text-align: center;
}

.magic-dialog p{
  margin: 0 0 18px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
}

.magic-progress-track{
  height: 14px;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 999px;
}

.magic-progress{
  display: block;
  width: 0;
  height: 100%;
  background: #000;
}

.magic-overlay.is-open .magic-progress{
  animation: magic-progress 10s steps(10, end) forwards;
}

.magic-cancel-button{
  margin-top: 22px;
  padding: 9px 24px;
  border: 1px solid #000;
  border-radius: 999px;
  color: #fff;
  background: #000;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.magic-result{
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 101;
  display: flex;
  gap: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.magic-result.is-visible{
  animation: magic-result 2.4s ease-out forwards;
}

.magic-result span{
  font-size: clamp(48px, 10vw, 100px);
  opacity: 0;
  transform: translateY(24px);
}

.magic-result.is-visible span{
  animation: magic-emoji-float 0.65s ease-out forwards;
}

.magic-result.is-visible span:nth-child(2){ animation-delay: 0.12s; }
.magic-result.is-visible span:nth-child(3){ animation-delay: 0.24s; }

@keyframes magic-progress{
  to { width: 100%; }
}

@keyframes magic-result{
  0%, 70% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes magic-emoji-float{
  to {
    opacity: 1;
    transform: translateY(-18px);
  }
}

.subtext-1{
  top: 0;
  left: 33%;
  transform: translate(20%, 300%);
  text-decoration: underline;
}

.subtext-2{
  top: 0;
  left: 63%;
  transform: translate(20%, 300%);
  text-decoration: underline;

}

.subtext-3{
  top: 0;
  left: 100%;
  transform: translate(-120%, 300%);
  text-decoration: underline;
}

.subtext-4{
  bottom: 0;
  left: 0;
  transform: translate(20%, -200%);
  text-decoration: underline;
}

.subtext i{
  font-size: 14px;
}

.subtext-top{
  top: 0;
  left: 0;
  transform: translate(20%, 300%);
}

.subtext-bottom{
  bottom: 0;
  right: 0;
  transform: translate(-20%, -200%);
}

.custom_label{
  width: 500px;
  height: 700px;
  scale: 4;
}

.custom_label_2{
  width: 500px;
  height: 700px;
  scale: 3;
}

.custom_label_3{
  width: 500px;
  height: 700px;
  scale: 3;
  position: relative;
  transform: translateY(-30px);
}







