/* Contest 2025 Page Styles */

.contest_hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 150px 0 80px;
  text-align: center;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .contest_hero {
    padding: 120px 0 40px;
  }
}

.contest_hero_title {
  font-family: var(--font-family-primary);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .contest_hero_title {
    font-size: 48px;
  }
}

.contest_hero_subtitle {
  font-family: var(--font-family-secondary);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (min-width: 768px) {
  .contest_hero_subtitle {
    font-size: 22px;
  }
}

.contest_intro {
  padding: 60px 0;
  background: #FAFAFA;
}

.contest_intro_text {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contest_intro_text {
    font-size: 16px;
  }
}

.contest_info_box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.contest_info_title {
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #E5E5E5;
}

.contest_info_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contest_info_list li {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
}

@media (min-width: 768px) {
  .contest_info_list li {
    font-size: 15px;
  }
}

.contest_info_list li:last-child {
  border-bottom: none;
}

.judges_section {
  padding: 80px 0;
}

.section_title {
  font-family: var(--font-family-primary);
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 64px 0;
  position: relative;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .section_title {
    font-size: 40px;
  }
}

.section_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, rgba(44, 44, 44, 0.4) 100%);
  border-radius: 2px;
}

.judges_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .judges_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

.judge_card {
  text-align: center;
}

.judge_image {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  margin: 0 auto 24px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .judge_image {
    height: 450px;
  }
}

.judge_role {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.judge_name {
  font-family: var(--font-family-primary);
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
}

@media (min-width: 768px) {
  .judge_name {
    font-size: 24px;
  }
}

.awards_section {
  padding: 80px 0;
  background: #FAFAFA;
}

.award_category {
  margin-bottom: 80px;
}

.award_category:last-child {
  margin-bottom: 0;
}

.award_category_title {
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 48px 0;
  padding: 16px 32px;
  background: #FFFFFF;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .award_category_title {
    font-size: 32px;
  }
}

.award_category_header {
  text-align: center;
  margin-bottom: 48px;
}

.award_item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .award_item {
    padding: 64px 48px;
  }
}

.award_rank {
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  text-align: center;
  margin: 0 0 24px 0;
}

@media (min-width: 768px) {
  .award_rank {
    font-size: 20px;
  }
}

.award_info {
  text-align: center;
  margin-bottom: 32px;
}

.award_school {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  color: #666;
  margin: 0 0 8px 0;
}

@media (min-width: 768px) {
  .award_school {
    font-size: 15px;
  }
}

.award_student {
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 8px 0;
}

@media (min-width: 768px) {
  .award_student {
    font-size: 28px;
  }
}

.award_work_title {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  color: #555;
  margin: 0;
}

@media (min-width: 768px) {
  .award_work_title {
    font-size: 18px;
  }
}

.award_images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .award_images {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.award_image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.special_award {
  border-top: 4px solid #FFD700;
}

.footer_cta_section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 2px solid #E5E5E5;
}

.footer_cta_text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  color: #666;
  margin: 0 0 48px 0;
  text-align: center;
}

.footer_buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer_button_group {
  text-align: center;
}

.back_button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--color-secondary);
  color: #FFFFFF;
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.2);
}

.back_button:hover {
  background: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.cta_email_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.email_label {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  color: #666;
}

.cta_email_copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family-secondary);
}

.cta_email_copy:hover {
  background: #E8E8E8;
  border-color: #C0C0C0;
}

.email_address {
  font-size: 14px;
  color: var(--color-text-primary);
}

.copy_icon {
  font-size: 16px;
}

.contact_button {
  display: inline-block;
  padding: 18px 48px;
  background: #C69C6D;
  color: #FFFFFF;
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(198, 156, 109, 0.4);
}

.contact_button:hover {
  background: #B08A5E;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(198, 156, 109, 0.6);
}
