/* Index Page Specific Styles */

/* Base Overrides */
body {
  color: #000000;
}

/* Logo Specific */
.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #47a6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #47a6ff;
}

/* Navigation Button */
.nav-button {
  padding: 0.6rem 1.5rem;
  border: 2px solid #47a6ff;
  border-radius: 25px;
  color: #47a6ff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #47a6ff;
  color: white;
}

/* Open Roles Button */
.open-roles-button {
  padding: 0.6rem 1.5rem;
  border: 2px solid #47a6ff;
  border-radius: 25px;
  color: #47a6ff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.open-roles-button:hover {
  background-color: #47a6ff;
  color: white;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem 6rem 3rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 100vh;
  width: 100%;
}

/* Section Base Styles */
.section {
  width: 100%;
  max-width: 780px;
  margin: 3rem auto 0;
  text-align: center;
}

.section:first-child {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 .highlight {
  color: #47a6ff;
  font-weight: 400;
  white-space: nowrap;
}

/* Hero Image */
.hero-image {
  width: 100%;
  max-width: 600px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #87ceeb 0%, #ffe4b5 50%, #98d8c8 100%);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Partners Section */
.partners {
  padding: 0;
  max-width: none;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.partners-logos img,
.partners-logos svg {
  opacity: 0.8;
  max-height: 80px;
  height: 80px;
  max-width: 300px;
  width: auto;
  object-fit: contain;
  flex-shrink: 1;
  transition: opacity 0.3s ease;
}

.partners-logos img:hover,
.partners-logos svg:hover {
  opacity: 1;
}

.partners-logos .logo-small {
  max-height: 40px;
  height: 40px;
}

/* About Section */
.about h2,
.partners h2 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.about p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  nav a:not(.nav-button) {
    display: none;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hero-image {
    height: 220px;
  }

  .partners-logos {
    gap: 2.5rem;
    flex-direction: column;
  }
}
