/* Hero Section Styles Standardization */

/* Standard Hero Section - to be used consistently across all pages */
.hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  margin-left: auto;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.hero p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

/* Hero Logo - the standard implementation to be used on all pages */
.hero .hero-logo {
  position: relative;
  left: 0;
  max-width: 37.5%;
  padding: var(--space-md);
  width: 37.5%;
  min-width: 300px;
}

.hero .hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: saturate(0.6);
  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Override any hero-small specific styles */
.hero-small {
  height: 70vh;
  min-height: 600px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hero {
    min-height: 500px;
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero-content {
    max-width: 55%;
  }
  
  .hero .hero-logo {
    max-width: 40%;
    width: 40%;
    min-width: 250px;
  }
  
  .hero-small {
    height: 60vh;
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 400px;
    height: auto;
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-left: 0;
    order: 2;
  }
  
  .hero .hero-logo {
    position: relative;
    max-width: 70%;
    width: 70%;
    min-width: 200px;
    margin: 0 auto var(--space-xl);
    padding: 0;
    order: 1;
  }
  
  .hero-small {
    height: auto;
    min-height: 400px;
    padding: 80px 0;
  }
} 