/**
 * Smort Retail Hero Block Styles - Split Screen Layout
 */

.smort-retail-hero-bg {
  background: #f5f5f5;
  background: linear-gradient(
    0deg,
    rgba(245, 245, 245, 1) 50%,
    rgba(255, 255, 255, 1) 50%
  );
}

.smort-retail-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Campaign Banner */
.smort-retail-hero-campaign {
  padding: 1rem 0;
  position: relative;
}

.smort-retail-hero-campaign-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.smort-retail-hero-campaign-content {
  flex: 1;
}

.smort-retail-hero-campaign-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.smort-retail-hero-campaign-highlight {
  color: var(--primary);
  font-weight: 400;
  font-style: italic;
}

.smort-retail-hero-campaign-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.smort-retail-hero-campaign-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);

  border-radius: 50%;
  transition: all 0.3s ease;
}

.smort-retail-hero-campaign-button:hover {
  opacity: 0.9;
}

.smort-retail-hero-campaign-button:hover .smort-retail-hero-campaign-icon {
  transform: translateX(4px);
}

/* Responsive Campaign Banner */
@media (max-width: 768px) {
  .smort-retail-hero-campaign-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .smort-retail-hero-campaign-text {
    font-size: 0.8rem;
  }

  .smort-retail-hero-campaign-button {
    font-size: 0.8rem;
  }

  .smort-retail-hero-campaign-icon {
    width: 28px;
    height: 28px;
  }
}

.smort-retail-hero-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  min-height: 500px;
}

/* Left and Right Sections */
.smort-retail-hero-left,
.smort-retail-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
  min-height: 600px;
}

/* Overlay for better text readability */
.smort-retail-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.smort-retail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out;
}

.smort-retail-hero-left .smort-retail-hero-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

/* Typography */
.smort-retail-hero-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  color: white;
}

.smort-retail-hero-left .smort-retail-hero-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.smort-retail-hero-left .smort-retail-hero-title-top {
  font-size: 7rem;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
}

.smort-retail-hero-left .smort-retail-hero-title-bottom {
  font-size: 7rem;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  margin-left: 16.5rem;
  margin-top: 1rem;
}

.smort-retail-hero-left .smort-retail-hero-description {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -7rem;

  @media (max-width: 768px) {
    margin-top: 0;
  }
}

.smort-retail-hero-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: white;
  opacity: 0.9;
}

.smort-retail-hero-button-wrapper {
  margin-top: 1.5rem;
}

/* Responsive - Mobile Stack */
@media (max-width: 768px) {
  .smort-retail-hero-grid {
    grid-template-columns: 1fr;
  }

  .smort-retail-hero-left,
  .smort-retail-hero-right {
    min-height: 400px;
    padding: 2rem 1.5rem;
  }

  .smort-retail-hero-title {
    font-size: 2rem;
  }

  .smort-retail-hero-left .smort-retail-hero-title {
    font-size: 2.5rem;
  }

  .smort-retail-hero-description {
    font-size: 0.875rem;
  }

  .smort-retail-hero-left .smort-retail-hero-title-top {
    font-size: 3.5rem;
  }

  .smort-retail-hero-left .smort-retail-hero-title-bottom {
    font-size: 3.5rem;
    margin-left: 3rem;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .smort-retail-hero-left,
  .smort-retail-hero-right {
    padding: 2.5rem 2rem;
  }

  .smort-retail-hero-title {
    font-size: 3rem;
  }

  .smort-retail-hero-left .smort-retail-hero-title {
    font-size: 3rem;
  }
}
