/* Home Page Specific Styles */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.gift-btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 128px;
  height: 128px;
  background-image: url('/images/gift.png');
  background-size: 100%;
  background-position: center;
  cursor: pointer;
  z-index: 3;
  display: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://cdn.starfocus.online/media/file/image/sfa/vbg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.11);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 0;
  overflow: hidden;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  margin-bottom: 1rem;
  font-family: 'Josefin Sans';
  font-weight: 300;
  animation: fadeInUp 1s ease-out;

  background: linear-gradient(to right, #FDECD4 0%, #9A5314 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-year {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.hero-name {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--color-white);
}

.hero-subtitle {
  font-family: Work Sans;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  letter-spacing: 0.2em;
  font-weight: 300;
  color: #FDECD4;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-subtitle2 {
  font-family: Work Sans;
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  letter-spacing: 0.2em;
  font-weight: 300;
  color: #FDECD4;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-date {
  font-family: Work Sans;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #FDECD4;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-date span {
  color: #111111;
  background-color: #FDECD4;
  display: inline-block;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 12px;
}

@keyframes footerFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

.hero-footer {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: footerFadeInUp 1s ease-out 0.6s backwards;
}

.coming-soon {
  font-family: Work Sans;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.15em;
  color: #FDECD4;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.view-awards {
  font-family: Work Sans;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.15em;
  color: #FDECD4;
  margin-bottom: 1rem;
  opacity: 0.9;
  display: none;
}

.scroll-indicator {
  display: inline-flex;
  color: var(--color-white);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* About Section */
.about {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--color-black);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-family: Josefin Sans;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;


  background: linear-gradient(to right, #FDECD4 0%, #9A5314 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.about-content {
  font-family: Work Sans;
  font-size: clamp(0.9rem, 2.3vw, 1.4rem);
  line-height: 1.8;
  color: #FDECD4;
}

.about-content p {
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-intro {
  opacity: 0.9;
}

.about-slogan {
  opacity: 0.9;
}

.about-slogan strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.about-vision {
  opacity: 0.9;
}

/* Awards Section */
.awards {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem 0;
  overflow: hidden;
  background-image: url('/images/awards_bg.png');
  background-size: cover;
  background-position: center;
}

.awards::before {
  content: '';
  width: 100%;
  height: 6px;
  background-image: url('/images/awards_bg2.png');
  background-size: cover;
  background-position: right center;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 10px 0px #d4a76a;
}

.awards::after {
  content: '';
  width: 100%;
  height: 6px;
  background-image: url('/images/awards_bg2.png');
  background-size: cover;
  background-position: right center;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotateY(180deg);
  box-shadow: 0 0 10px 0px #d4a76a;
}

.awards-content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.awards-content .awards-pc {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.awards-content .awards-pc .awards-pc-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 60px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform .3s linear;
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item:hover {
  transform: translateY(-10px);
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item:hover span {
	opacity: 0.5;
	background-color: rgba(173,216,230,0.2);
	-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-135deg) scale3d(1,1,1);
	transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-135deg) scale3d(1,1,1);
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item:hover p {
	color: #fff;
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item::before {
  content: '';
  width: 200px;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url('/images/item.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(45deg);
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item span {
  display: inline-block;
  position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	height: 90%;
	border: 1px solid #e1c7ae;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
	transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}

.awards-content .awards-pc .awards-pc-row .awards-pc-item p {
  position: relative;
  text-align: center;
  color: #e1c7ae;
  font-size: 1.2rem;
  font-family: Work Sans;
  letter-spacing: 0.1em;
}

.awards-content .awards-pc .awards-pc-row .lock p,
.awards-content .awards-mobile .lock p {
}

.awards-content .awards-pc .awards-pc-row .lock::after {
  content: '';
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  top: 80%;
  background-image: url('/images/lock.png');
  background-size: 48px 48px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%, -50%);
  opacity: .6;
}

.awards-content .awards-pc .awards-pc-row .lock:hover {
  transform: translateY(0);
}

.awards-content .awards-pc .awards-pc-row .lock:hover span {
  display: none;
}

.awards-content .awards-pc .awards-pc-row .lock:hover p {
  color: #e1c7ae;
}

.awards-content .awards-mobile {
  display: none;
}

.awards-content .awards-mobile .awards-mobile-item {
  width: 335px;
  height: 50px;
  line-height: 50px;
  background-image: url('/images/item2.png');
  background-size: 335px 50px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  color: #E6C7A6;
  transform: scale(1.2);
  cursor: pointer;
  font-family: Work Sans;
  letter-spacing: 0.1em;
}

.awards-content .awards-mobile .awards-mobile-item:last-child {
  margin: 0 auto 0px;
}

.awards-content .awards-mobile .lock::after {
  content: '';
  width: 28px;
  height: 28px;
  position: absolute;
  left: 85%;
  top: 50%;
  background-image: url('/images/lock.png');
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%, -50%);
  opacity: .6;
}

.awards-tips {
  max-width: 600px;
  margin: 60px auto 0;
  padding: 10px 20px;
  font-family: Work Sans;
  font-size: 1rem;
  line-height: 1.5;
  color: #FDECD4;
  text-align: center;
  display: none;
}


/* Responsive - Home Page */
@media (max-width: 1024px) {
  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .about {
    height: 100vh;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 500px;
  }

  .hero-bg::before {
    background-image: url('https://cdn.starfocus.online/media/file/image/sfa/vbg.jpg');
  }

  .hero-title {
    margin-bottom: 0;
  }

  .hero-year {
    font-size: 2rem;
  }

  .hero-name {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-footer {
    bottom: 2rem;
  }

  .gift-btn {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: 30px;
  }

  .about {
    height: 100vh;
    min-height: 600px;
    padding: 2rem 1rem;
  }

  .about-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .about-content {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .about-content p {
    margin: 0 auto 1.5rem;
  }

  .awards {
    height: auto;
    padding: 0;
  }

  .awards-content {
    padding: 0;
  }

  .awards-content .awards-pc {
    display: none;
  }

  .awards-content .awards-mobile {
    display: block;
  }

  .awards-tips {
    margin-top: 30px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem 2rem;
  }

  .hero-year {
    font-size: 1.8rem;
  }

  .hero-name {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }

  .coming-soon {
    font-size: 0.85rem;
  }

  .view-awards {
    font-size: 0.85rem;
  }

  .gift-btn {
    width: 64px;
    height: 64px;
    bottom: 56px;
    right: 20px;
  }

  .about {
    height: 100vh;
    min-height: 500px;
    padding: 2rem 1rem;
  }

  .about-title {
    /* font-size: 1.4rem; */
  }

  .about-content {
    font-size: 0.9rem;
  }

  .awards-content .awards-mobile .awards-mobile-item {
    transform: scale(1);
    margin: 0 auto 20px;
  }
}

/* Global Partner Section */
.global-partner {
  position: relative;
  padding: 80px 2rem 100px;
  background: #000;
  overflow: hidden;
}

.global-partner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.global-partner-container .starfocus-home-btn {
  width: 390px;
  height: 70px;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFC9A0;
  outline: none;
  font-size: 24px;
  font-weight: bold;
  color: #111111;
  text-decoration: none;
  cursor: pointer;
  margin: 60px auto 0;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #FDECD4 0%, #9A5314 100%);
  overflow: hidden;
}

.global-partner-container .starfocus-home-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
}

.global-partner-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 140px;
  text-transform: uppercase;
  background: linear-gradient(to right, #FDECD4 0%, #9A5314 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.partner-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-left: -9999px;
  margin-right: -9999px;
  position: relative;
}

.partner-icon {
  display: inline-flex;
  position: relative;
  margin: 10px;
  width: 180px;
  height: 180px;
  margin: 0 -30px;
}

.partner-icon::before {
  content: '';
  width: 128px;
  height: 128px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #111;
  transform: translate(-50%, -50%) rotate(45deg);
}

.partner-icon svg {
  width: 64px;
  height: 64px;
  display: block;
  color: #666;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.partner-icon:nth-child(even) {
  margin-top: 0;
}

.partner-icon:nth-child(odd) {
  margin-top: -230px;
}

@media (max-width: 768px) {
  .global-partner-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 100px;
  }

  .partner-icon {
    width: 140px;
    height: 140px;
    margin: 0 -24px;
  }

  .partner-icon::before {
    width: 100px;
    height: 100px;
  }

  .partner-icon svg {
    width: 48px;
    height: 48px;
  }

  .partner-icon:nth-child(odd) {
    margin-top: -166px;
  }

  .global-partner-container .starfocus-home-btn {
    width: 300px;
    font-size: 18px;
    margin: 40px auto 0;
  }
}

@media (max-width: 600px) {
  .partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 -14px;
  }

  .partner-icon::before {
    width: 60px;
    height: 60px;
  }

  .partner-icon svg {
    width: 30px;
    height: 30px;
  }

  .partner-icon:nth-child(odd) {
    margin-top: -100px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator {
    animation: none;
  }
}
