/* Premium About Section - About Page */
.premium-about-section-page {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%) !important;
  position: relative;
  overflow: hidden;
}

.premium-about-section-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.3) 20%,
    rgba(200, 150, 62, 0.8) 50%,
    rgba(200, 150, 62, 0.3) 80%,
    transparent 100%);
  box-shadow: 0 2px 20px rgba(200, 150, 62, 0.6);
  z-index: 2;
}

.premium-about-section-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(200, 150, 62, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 150, 62, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(200, 150, 62, 0.03) 0%, transparent 60%);
  pointer-events: none;
  animation: shimmer-page 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes shimmer-page {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.premium-about-container-page {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-image-column-page {
  position: relative;
  max-width: 280px;
  margin: 0;
}

.about-image-card-page {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.4),
    inset 0 0 60px rgba(200, 150, 62, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1) 0%, transparent 100%);
}

.about-image-card-page::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(200, 150, 62, 0.6) 0%, 
    rgba(200, 150, 62, 0.3) 50%,
    transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

.about-image-card-page::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow-page 3s ease-in-out infinite;
}

@keyframes pulse-glow-page {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

.about-image-card-page:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 3px rgba(200, 150, 62, 0.6),
    0 0 60px rgba(200, 150, 62, 0.8),
    0 0 120px rgba(200, 150, 62, 0.4),
    inset 0 0 80px rgba(200, 150, 62, 0.1);
}

.about-image-card-page:hover::before {
  opacity: 1;
}

.about-image-card-page:hover::after {
  opacity: 0.5;
}

.about-image-wrapper-page {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper-page img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-card-page:hover .about-image-wrapper-page img {
  transform: scale(1.08);
}

.about-content-column-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-header-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-label-page {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.4);
  animation: glow-text-page 3s ease-in-out infinite;
}

@keyframes glow-text-page {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(200, 150, 62, 0.8),
      0 0 40px rgba(200, 150, 62, 0.4);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(200, 150, 62, 1),
      0 0 60px rgba(200, 150, 62, 0.6),
      0 0 90px rgba(200, 150, 62, 0.3);
  }
}

.about-label-page::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, rgba(200, 150, 62, 1) 0%, rgba(200, 150, 62, 0.5) 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: 
    0 0 15px rgba(200, 150, 62, 0.8),
    0 0 30px rgba(200, 150, 62, 0.4);
  animation: line-glow-page 3s ease-in-out infinite;
}

@keyframes line-glow-page {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(200, 150, 62, 0.8),
      0 0 30px rgba(200, 150, 62, 0.4);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(200, 150, 62, 1),
      0 0 50px rgba(200, 150, 62, 0.6);
  }
}

.about-title-page {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(200, 150, 62, 0.3);
}

.about-text-page {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about-text-page p {
  margin-bottom: 20px;
}

.about-text-page p:last-child {
  margin-bottom: 0;
}

.about-text-page em,
.about-text-page i {
  font-style: italic;
  color: rgba(240, 240, 240, 0.95);
  font-size: 17px;
  line-height: 1.8;
  display: block;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.08) 0%, rgba(200, 150, 62, 0.03) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  position: relative;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(200, 150, 62, 0.15);
  backdrop-filter: blur(10px);
}

.about-text-page em::before,
.about-text-page i::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text-page em::after,
.about-text-page i::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(200, 150, 62, 0.4);
}

.about-text-page strong {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(200, 150, 62, 0.4);
}

/* Responsive */
@media screen and (max-width: 1199px) {
  .premium-about-container-page {
    grid-template-columns: 280px 1fr;
    gap: 60px;
  }
  
  .about-title-page {
    font-size: 38px;
  }
  
  .about-label-page {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  .premium-about-container-page {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-column-page {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .about-text-page em,
  .about-text-page i {
    padding: 20px 25px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .premium-about-container-page {
    gap: 40px;
  }
  
  .about-label-page {
    font-size: 22px;
  }
  
  .about-title-page {
    font-size: 30px;
  }
  
  .about-text-page {
    font-size: 15px;
  }
  
  .zoom-indicator span {
    font-size: 10px;
  }
  
  .zoom-icon {
    width: 48px;
    height: 48px;
  }
}
