/* ===== HERO SECTION CSS - RESPONSIVE DESIGN ===== */

/* Hero Section Main Container */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

/* Hero Article */
.hero-article {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Page */
.hero-page {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Background Image */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-background::after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6)
}

/* Content Wrapper */
.hero-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  color: white;
  border-radius: 15px;
}

/* Title Section */
.hero-title-section {
  margin-bottom: 40px;
}

/* Subtitle */
.hero-subtitle {
  display: block;
  font-size: 16px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 400;
}

/* Product Name */
.hero-product-name {
  margin: 0 0 10px 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.product-name-text {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Tagline */
.hero-tagline {
    margin-bottom: 5px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: #f5f5f5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.tagline-text {
  font-weight: 500;
}

/* Description */
.hero-description {
  display: block;
  font-size: 18px;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Product Type */
.product-type {
  margin-bottom: 20px;
}

/* Additional Info */
.additional-info {
  font-size: 16px;
  color: #e0e0e0;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

/* Certification Logo */
.certification-logo {
  margin: 0 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dante-logo {
  max-height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #555555 0%, #000000 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.hero-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #555555 0%, #000000 100%);
}

.hero-cta-button:active {
  transform: translateY(-1px);
}

/* Responsive Design */


@media (max-width: 767px) {

  .hero-section{
    height:60vh;
  }

  .hero-content-wrapper {
    max-width: 500px;
    padding: 20px 15px;
  }

  .hero-title-section{
    margin:0;
  }
  
  .hero-product-name {
    font-size: 48px;
  }
  
  .hero-tagline {
    font-size: 22px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-description {
    font-size: 15px;
  }

  .dante-logo {
    max-height: 50px;
  }
  
  .hero-cta-section{
    margin:0;
  }
  .hero-cta-button {
    padding: 10px 30px;
    font-size: 15px;
  }
}

