/* 
 * Cyber UXcellence Awards - Hero Section Styles
 */

/* Nominations Notification Banner */
.nominations-notification-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(44, 33, 90, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--mg-orange);
  border-radius: 0;
  padding: 1rem 0;
  z-index: 10;
  width: 100%;
  margin: 0;
  box-shadow: 0 2px 8px rgba(244, 113, 20, 0.2);
}

.notification-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.notification-text {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-section {
  background-color: var(--mg-dark-purple);
  color: var(--white);
  min-height: 90vh; /* Set to 90vh to ensure nominate button is visible */
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, rgba(44, 33, 90, 0.97) 0%, rgba(44, 33, 90, 0.92) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xxl) 0;
}

/* Add diagonal pattern to hero background */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 8px
  );
  z-index: 1;
}

/* Removed dot pattern, using only diagonal pattern */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  font-weight: 800;
}

.hero-description {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
  max-width: 700px;
}

.hero-cta {
  margin-top: var(--spacing-lg);
}

/* Hero announcement styling */
.hero-announcement {
  background: rgba(244, 113, 20, 0.1);
  border: 2px solid var(--mg-orange);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-top: var(--spacing-lg);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(244, 113, 20, 0.2);
}

/* Hero background shapes */
.hero-bg-shape {
  position: absolute;
  right: -20%;             /* Change this value to adjust horizontal position */
  bottom: 30%;            /* Change this value to adjust vertical position */
  top: auto;
  width: 60%;            /* Change this value to adjust width */
  height: 90%;           /* Change this value to adjust height */
  opacity: 0.2;          /* Change this value to adjust transparency */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  background-image: url('../assets/images/heroShieldSolid.svg');
  transform: rotate(-35deg);  /* Change this value to adjust rotation angle */
  transform-origin: bottom right;
  filter: brightness(1) saturate(0.7);
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-section {
    padding: var(--spacing-xl) 0;
    min-height: 90vh; /* Set to 90vh to ensure nominate button is visible */
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
  
  .hero-bg-shape {
    display: none;
  }
  
  .hero-announcement {
    font-size: 1rem;
    padding: var(--spacing-sm);
    margin-top: var(--spacing-md);
  }
  
  .nominations-notification-bar {
    margin: 0;
    width: 100%;
    padding: 0.75rem 0;
  }
  
  .notification-text {
    font-size: 1rem;
  }
}