/* konkhmer-sleokchher-latin-400-normal */
@font-face {
  font-family: 'Konkhmer Sleokchher';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/konkhmer-sleokchher@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/konkhmer-sleokchher@latest/latin-400-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: #FCFBF9;
  overflow: hidden;
}

.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1600px;
  height: 70%;
  background: url('./public/images/background.png') center bottom/contain no-repeat;
  z-index: -1;
}

.mythika-title {
  font-family: 'Konkhmer Sleokchher', serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 1em;
  background: linear-gradient(135deg, #D4A574 0%, #B8956A 25%, #A0845C 50%, #8B7147 75%, #6D5A37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Mobile and tablet responsive styles */
@media screen and (max-width: 768px) {
  .mythika-title {
    font-size: 2.5rem;
    letter-spacing: 0.5em;
    top: 20%;
  }
  
  .container::after {
    width: 100vw;
    height: 60%;
    background-size: cover;
  }
}

@media screen and (max-width: 480px) {
  .mythika-title {
    font-size: 2rem;
    letter-spacing: 0.3em;
    top: 25%;
    padding: 0 1rem;
  }
  
  .container::after {
    width: 100vw;
    height: 50%;
    background-size: cover;
    background-position: center bottom;
  }
}

@media screen and (max-width: 320px) {
  .mythika-title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    top: 30%;
  }
}