/* ==========================================================================
   HERO SECTION STYLES - DeepLaxmi Textiles
   Split layout, background pattern, responsive styling
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px 24px;
  overflow: hidden;
}

/* Background Mandala / Textile motifs (using modern CSS gradients and shapes) */
.hero-pattern-left {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-pattern-right {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Content Column styling */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tag {
  color: var(--secondary-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gold-leaf-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1.1;
}

.text-accent-color {
  color: var(--secondary-gold);
  position: relative;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
}

/* Buttons group */
.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.hero-button-group .btn {
  box-shadow: var(--shadow-sm);
}

/* Visual Column styling */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* Elegant Indian gold pattern border frame */
.gold-accent-frame {
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  border: 2px dashed var(--secondary-gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.6;
}

.hero-image-showcase {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-showcase:hover .hero-main-img {
  transform: scale(1.05);
}

/* Text overlay on image */
.hero-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(31, 13, 5, 0.95) 0%, rgba(31, 13, 5, 0.4) 70%, transparent 100%);
  color: var(--bg-light);
  z-index: 2;
}

.hero-overlay-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary-gold);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.hero-overlay-text p {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Badge overlay */
.experience-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background-color: var(--primary-red);
  color: var(--bg-light);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  border: 1px solid var(--secondary-gold);
  z-index: 3;
}

.experience-badge .years {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--secondary-gold);
}

.experience-badge .exp-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  white-space: nowrap;
}
