/* ============================================
   HERO.CSS - Hero Section with Video/Image
   ============================================ */

.hero {
  display: flex;
  gap: 0;
  margin: -10px 0 0 0; 
  padding: 0;
  background: #000000;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: var(--warm-glow), 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  border: 2px solid #2a1b0c;
  pointer-events: none;
  z-index: 100;
}

.hero-visual {
  width: 1200px;
  height: 100%;
  min-height: 700px;
  position: relative;
  margin: -4px 0;
  flex-shrink: 0;
  margin-left: -250px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: 100%;
  background: linear-gradient(to left, 
    transparent 0%, 
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.8) 80%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 5;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
  height: 100%;
  background: linear-gradient(to right, 
    transparent 0%, 
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.8) 80%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 5;
}

.hero-illuvial {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 50px;
  padding-right: 5px;
  margin-left: -320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: right;
  max-width: 600px;
  width: 100%;
}

.hero-title {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text);
  margin: 0 0 40px 0;
  padding-bottom: 35px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 30%, #e7e4df 60%);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 40px 0;
  line-height: 1.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-details p {
  font-size: 11pt;
  color: var(--muted);
  margin: 0 0 20px 0;
  line-height: 2.6;
  letter-spacing: 1px;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(169, 169, 169, 0.3);
}

.hero-image {
  width: 130%;
  height: auto;
  display: absolute;
  border-radius: 16px 0 0 16px;
  object-fit: cover;
  z-index: 4;
  margin-top: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1400px) {
  .hero-content {
    margin-left: -200px;
    padding-right: 50px;
  }
}

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    padding: 0 !important;
    gap: 0 !important;
    min-height: auto !important;
  }
  
  .hero-visual {
    width: 100%;
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 12px;
    margin-bottom: 0 !important;
  }
  
  .hero-illuvial {
    object-position: center center;
    display: block;
  }
  
  .hero-content {
    margin: 0 !important;
    padding: 0 24px 24px 24px !important;
    text-align: left;
  }
  
  .hero-title {
    margin-top: 0 !important;
    padding-top: 24px;
  }
  
  .hero-details {
    text-align: left;
  }
  
  .hero-details p {
    text-align: left;
  }
  
  .hero-title::after {
    right: auto;
    left: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
    margin-top: 20px; 
  }

  .hero-visual {
    width: 100%;
    max-width: 450px;
    margin: 0 auto !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero-visual::after {
    width: 100px;
  }

  .hero-title {
    font-size: 28px;
    margin-top: 0 !important;
    padding-top: 24px;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 20px 20px 20px !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-details {
    text-align: left;
    padding-left: 20px;
  }
  
  .hero-details p {
    text-align: left;
  }
  
  .hero-details ul,
  .hero-details ol {
    padding-left: 20px;
    margin-left: 0;
  }
  
  .hero-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 !important;
    overflow: hidden;
  }

  .hero-title {
    font-size: 24px;
    margin-top: 0 !important;
    padding-top: 20px;
  }
  
  .hero-subtitle {
    font-size: 12px;
  }
  
  .hero-details {
    text-align: left;
    padding-left: 20px;
  }
  
  .hero-details p {
    font-size: 8.5pt;
    text-align: left;
  }
  
  .hero-details ul,
  .hero-details ol {
    padding-left: 20px;
    margin-left: 0;
  }
  
  .hero-content {
    padding: 0 16px 16px 16px !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 !important;
    overflow: hidden;
  }
  
  .hero-content {
    padding: 0 12px 12px 12px !important;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 20px;
    padding-bottom: 20px;
    padding-top: 16px;
    margin-top: 0 !important;
  }
  
  .hero-details {
    text-align: left;
    padding-left: 16px;
  }
  
  .hero-details p {
    text-align: left;
  }
  
  .hero-details ul,
  .hero-details ol {
    padding-left: 20px;
    margin-left: 0;
  }
}