/* Banner Styles matching Shopify theme */
.banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.banner--content-align-right {
  justify-content: flex-end;
}

.banner--content-align-mobile-center {
  justify-content: center;
}

.banner--small {
  min-height: 40rem;
}

.banner--mobile-bottom {
  align-items: flex-end;
}

.banner--desktop-transparent {
  background: transparent;
}

.banner__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 52px;
}

.banner__content--middle-right {
  justify-content: flex-end;
  align-items: center;
}

.page-width {
  max-width: 120rem;
  margin: 0 auto;
  width: 100%;
}

.banner__box {
  max-width: 50rem;
  text-align: right;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
}

.content-container--full-width-mobile {
  width: 100%;
}

.banner__heading {
  margin-bottom: 1rem;
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
}

.banner__text {
  margin-bottom: 1.5rem;
  color: white;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  opacity: 0.9;
}

.banner__buttons {
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.button--primary {
  background-color: #2697A8;
  color: white;
}

.button--primary:hover {
  background-color: #1f7a8a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(38, 151, 168, 0.3);
}

/* Animation classes */
.scroll-trigger {
  opacity: 1;
}

.animate--fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate--slide-in {
  animation: slideIn 0.8s ease-out;
}

.animate--ambient {
  animation: ambient 20s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ambient {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .banner--content-align-mobile-center {
    justify-content: center;
  }
  
  .banner__content--middle-right {
    justify-content: center;
  }
  
  .banner__box {
    text-align: center;
    max-width: 90%;
  }
  
  .banner--small {
    min-height: 30rem;
  }
  
  .banner__content {
    padding: 0 1rem;
  }
}
