/* --------------------------------------------------
   📦 Font Import
-------------------------------------------------- */
@font-face {
  font-family: "Samsung Sharp Sans";
  src: url("samsungsharpsans-medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* --------------------------------------------------
   🔄 Reset & Base Styles
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Samsung Sharp Sans";
  background-color: #fff;
  color: #333;
}

/* --------------------------------------------------
   🧭 Header Section
-------------------------------------------------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-height: 80px;
  background-color: #ffe4c9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header {
  position: relative;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 70px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.header-right {
  display: flex;
  align-items: center;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin-right: 20px;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #000;
}

/* Action Buttons */
.action-buttons .login-btn {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.action-buttons .join-btn {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4%;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.action-buttons .join-btn:hover {
  background-color: #333;
}

/* --------------------------------------------------
   🦸 Hero Section
-------------------------------------------------- */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  background-color: #fff;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Samsung Sharp Sans", sans-serif;
  color: #222;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.join-btn {
  background-color: #000;
  color: #fff;
}

.join-btn:hover {
  background-color: #333;
}

.explore-btn {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.explore-btn:hover {
  background-color: #f0f0f0;
}

.user-icon {
  width: 24px;
  height: 24px;
  border-radius: 80px;
  margin-right: 8px;
}

.hero-image img {
  width: auto;
  height: 900px;
}

/* --------------------------------------------------
   🧩 Info Blocks
-------------------------------------------------- */
.info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 280px;
  height: 700px;
  width: 100%;
  padding: 60px 40px;
  background-color: #ffe4c9;
}

.info-block.reverse {
  background-color: #fff;
}

.info-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.info-content {
  max-width: 500px;
}

.info-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Samsung Sharp Sans", sans-serif;
  color: #222;
}

.info-subtext {
  font-size: 1.1rem;
  color: #555;
}

/* --------------------------------------------------
   🎨 Talent Showcase
-------------------------------------------------- */
.talent-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 40px;
  height: 700px;
  width: 100%;
  padding: 60px 40px;
  background-color: #ffe4c9;
}

.talent-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.talent-content {
  max-width: 500px;
}

.talent-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Samsung Sharp Sans", sans-serif;
  color: #222;
}

.talent-subtext {
  font-size: 1.1rem;
  color: #555;
}

/* --------------------------------------------------
   🤝 Sponsors Section
-------------------------------------------------- */
.sponsor-section {
  padding: 60px 40px;
  background-color: #fff;
  text-align: center;
  width: 100%;
  height: 400px;
}

.sponsor-text {
  margin-bottom: 40px;
}

.sponsor-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Samsung Sharp Sans", sans-serif;
  color: #222;
}

.sponsor-subtext {
  font-size: 1.1rem;
  color: #555;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sponsor-logos img {
  width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.sponsor-logos img:hover {
  filter: none;
}

/* --------------------------------------------------
   🧱 Footer Section
-------------------------------------------------- */
.site-footer {
  background-color: #ffe4c4; /* Light peach tone */
  padding: 30px 40px;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #555;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px; /* match your header height */
  left: 0;
  width: 100%;
  background-color: #ffe4c9;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.mobile-menu.active {
  display: flex;
}

/* --------------------------------------------------
   📱 Mobile Styles
-------------------------------------------------- */
@media (max-width: 768px) {
  /* Header */
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    height: 120px;
  }

  .logo {
    height: 40px;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links {
    flex-direction: column;
    margin: 10px 0;
  }

  .nav-links li {
    margin: 5px 0;
  }

  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .action-buttons a {
    margin-bottom: 10px;
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-image img {
    height: auto;
    max-width: 100%;
  }

  /* Info Blocks */
  .info-block,
  .info-block.reverse {
    flex-direction: column;
    gap: 40px;
    height: auto;
    padding: 40px 20px;
  }

  .info-image img {
    max-width: 100%;
  }

  /* Talent Showcase */
  .talent-showcase {
    flex-direction: column;
    gap: 40px;
    height: auto;
    padding: 40px 20px;
  }

  .talent-image img {
    max-width: 100%;
  }

  /* Sponsors */
  .sponsor-section {
    height: auto;
    padding: 40px 20px;
  }

  .sponsor-logos {
    gap: 20px;
  }

  .sponsor-logos img {
    width: 80px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 40px;
  }

  .mobile-menu {
    display: none;
    width: 100%;
    background-color: #ffe4c9;
    padding: 44px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .action-buttons a {
    margin: 10px 0;
  }

  /* Hide desktop nav on mobile */
  .header-right {
    display: none;
  }
}
