@font-face {
    font-family: Eyesome;
    src: url(../fonts/Eyesome\ Italic.otf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: handelson;
    src: url(../fonts/zhandelson-three.otf);
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: antoniobold;
    src: url(../fonts/Antonio-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: antonio;
  src: url(../fonts/Antonio-Light.ttf);
}


@font-face {
  font-family: billie;
  src: url(../fonts/Billie\ Eilish.otf);
}

@font-face {
  font-family: billie2;
  src: url(../fonts/billie\ eilish.ttf);
}

@font-face {
  font-family: basic;
  src: url(../fonts/Basic\ Confident.otf);
}


@font-face {
  font-family: jelly;
  src: url(../fonts/Jelly-BF64e0b51d0ae27.otf);
}


@font-face {
  font-family: mogesty;
  src: url(../fonts/Mogesty-Regular.otf);
}


@font-face {
  font-family: fascinate;
  src: url(../fonts/Fascinate-Regular.ttf);
}


@font-face {
    font-family: oswald;
    src: url(../fonts/Oswald-Extra-LightItalic.ttf);
}

*{
  box-sizing: border-box;
}

body{
  margin:0;
  background-color: #fbdfc6;
}

.logo-name{
  font-family: "jelly", system-ui, -apple-system, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #b5b486
;
}

:root{
  --bg:#f3efe8;
  --border: rgba(136, 86, 86, 0.08);
}


.site-header{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  padding: 18px;
  z-index: 10;
}

.header{
  display:flex;
  align-items:center;
  justify-content: flex-start;
  gap: 16px;
}

.header-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img{
  height: 102px;
  width: auto;
  object-fit: contain;
}


.hero-stage{
  position: relative;
}

.hero-text{
  position: absolute;
  top: 100px;
  left: 10px;
  max-width: 520px;
  text-align: left;
  color: rgba(108, 118, 85, 0.604);
  z-index: 4 ;
}

.hero-intro{
  font-family: basic;
  font-size: 100px;
  margin-left: 10px;
  white-space: nowrap;
}


.hero-intro2{
  font-family: antoniobold;
  font-size: 125px;
  line-height: 110px;
  margin-top: -100px;
  margin-left: 20px;
}

.hero-intro3{
  font-family: basic;
  font-size: 90px;
  margin-left: 250px;
  margin-top: -130px;
  white-space: nowrap;
  
}


/* U alanı */
.hero-media{
  width: min(520px, 78vw);
  height: min(760px, 86vw);
  overflow:hidden;
  border: 1px solid var(--border);
  background:#ddd;
  border-radius: 0px 0px 260px 260px;
  margin: 0 auto;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}



.side-nav{
  position: absolute;
  right:224px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  font-family: antoniobold;
  font-size: 18px;
  
}

.side-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.side-nav ul li{
  display: flex;
  align-items: center;
  gap: 10px;
}


.side-nav a{
  text-decoration: none;
  letter-spacing: 0.08em;
  color: rgba(108, 118, 85, 0.6);
  transition: color 0.2s ease;
}

.side-nav a:hover{
  color: rgba(108, 118, 85, 1);
}


.nav-sticker{
  width: 35px;
  opacity: 0.8;
}



@media (max-width: 768px){
  body{ overflow-x:hidden; }

  .site-header{
    position: static;
    padding: 14px 16px;
  }

  .header{
    gap: 10px;
  }

  .header-logo img{
    height: 54px;
  }

  .logo-name{
    font-size: 16px;
  }

  .hero-stage{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
  }

  .hero-media{
    width: min(360px, 88vw);
    height: min(520px, 120vw);
    border-radius: 0 0 180px 180px;
    margin: 0 auto;
  }

  .hero-text{
    position: static;
    top: auto;
    left: auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0 10px;
  }

  .hero-intro{
    font-size: 20px;
    margin: 0 0 10px;
    white-space: normal;
  }

  .hero-intro2{
    font-size: 52px;
    line-height: 0.95;
    margin: 0 0 10px;
  }

  .hero-intro3{
    font-size: 18px;
    margin: 0;
    white-space: normal;
  }

  .side-nav{
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  .side-nav ul{
    display: grid;
    gap: 12px;
    justify-content: center;
  }

  .side-nav li{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .nav-sticker{
    width: 18px;
    opacity: 0.8;
  }

  .side-nav a{
    font-size: 18px;
  }
}

