@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600;700&display=swap');

.hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  padding-bottom: 5vh;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero__main-container {
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: clamp(6vh, 8vh, 10vh) clamp(8%, 10%, 12%);
  width: 100%;
  box-sizing: border-box;
}

.hero__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1vh;
}

.hero__subtitle {
  margin: 0;
  width: 100%;
  max-width: 600px;
  text-align: center;
  letter-spacing: 0;
  color: #ffffff;
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 3.5vw, 48px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__title-wrapper {
  width: 100%;
  margin: 1vh 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 3rem);
}

.hero__main-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  height: auto;
  letter-spacing: 0;
  color: #ffffff;
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 7vw, 125px);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  order: 2;
}

.hero__line {
  background: #ffffff;
  width: clamp(60px, 8vw, 146px);
  height: 1px;
  flex-shrink: 0;
}

.hero__line--left {
  order: 1;
}

.hero__line--right {
  order: 3;
}

.hero__description {
  margin: 0;
  width: 100%;
  max-width: 700px;
  text-align: center;
  letter-spacing: 0;
  color: #ffffff;
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.8vw, 48px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__buttons {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: clamp(2rem, 4vw, 5rem);
  margin: 5vh auto 0 auto;
  width: 100%;
  max-width: 600px;
}

.hero__btn {
  text-decoration: none;
  font-family: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimHei, Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: all 0.3s ease;
  padding: clamp(12px, 1.5vh, 18px) clamp(24px, 3vw, 36px);
  border-radius: 30px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  border: 2px solid transparent;
}

.hero__btn--reserve {
  background-color: #1a2f79;
  color: #ffffff;
  border-color: #1a2f79;
}

.hero__btn--reserve:hover {
  background-color: #152659;
  border-color: #152659;
  color: #ffffff;
}

.hero__btn--menu {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero__btn--menu:hover {
  background-color: #ffffff;
  color: #333333;
  border-color: #ffffff;
}



@media (max-width: 1920px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 8vh;
  }
  
  .hero__content-box {
    padding: clamp(5vh, 7vh, 9vh) clamp(7%, 9%, 11%);
  }
  
  .hero__title-wrapper {
    gap: clamp(0.8rem, 1.5vw, 2rem);
  }
  
  .hero__main-title {
    font-size: clamp(32px, 6vw, 80px);
  }
  
  .hero__line {
    width: clamp(50px, 6vw, 100px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6vh;
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
  }
  
  .hero__content-box {
    padding: clamp(4vh, 6vh, 8vh) clamp(6%, 8%, 10%);
  }
  
  .hero__title-wrapper {
    flex-direction: column;
    gap: 1.5vh;
    margin: 1vh 0;
  }
  
  .hero__line {
    width: clamp(80px, 15vw, 120px);
    order: unset;
  }
  
  .hero__main-title {
    order: unset;
    font-size: clamp(28px, 8vw, 60px);
  }
  
  .hero__buttons {
    flex-direction: row;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    margin: 4vh auto 0 auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 0vh;
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
  }
  
  .hero__content-box {
    padding: clamp(3vh, 5vh, 7vh) clamp(5%, 7%, 9%);
  }
  
  .hero__subtitle {
    font-size: clamp(14px, 8vw, 20px);
  }
  
  .hero__main-title {
    font-size: clamp(24px, 12vw, 150px);
  }
  
  .hero__description {
    font-size: clamp(12px, 6.5vw, 18px);
  }
  
  .hero__btn {
    font-size: clamp(11px, 2.5vw, 14px);
  }
  
  .hero__line {
    width: clamp(60px, 12vw, 100px);
  }
  
  .hero__buttons {
    flex-direction: row;
    gap: clamp(0.8rem, 2.5vw, 1.5rem);
    margin: 4vh auto 0 auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__btn {
    transition: none;
  }
}
