/* About Page Premium Styles */
.container-custom {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  margin-bottom: 6rem;
}

/* Background Glow Effects */
.about-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 182, 193, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.glass-card-hero {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 5rem 3rem;
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #ffb6c1 50%, #d4a5a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Premium Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c49a6c 100%);
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(212, 165, 165, 0.3);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 165, 165, 0.5);
  color: #000;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #fff;
}

/* Content Sections */
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 8rem;
}

.glass-card-info {
  background: rgba(25, 25, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.glass-card-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-gold),
    transparent
  );
  opacity: 0.5;
}

.glass-card-info:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(30, 30, 30, 0.8);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--brand-gold);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.info-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 8rem;
}

.value-item {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.value-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

@media (max-width: 992px) {
    .about-hero {
        min-height: auto;
        padding: 6rem 0 2rem 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-grid {
        grid-template-columns: 1fr;
    }
    .glass-card-hero {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .container-custom {
        padding: 0 1rem;
        width: 100%;
    }

    .about-hero {
        padding-top: 6rem;
    }

    .glass-card-hero {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 2rem !important;
    }

    .hero-actions .btn-hero-primary {
        margin-bottom: 1rem;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-grid {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .glass-card-info {
        padding: 2rem;
    }
}

/* Light Mode Overrides */
[data-theme="light"] .about-hero::before {
    background: radial-gradient(circle, rgba(125, 60, 88, 0.1) 0%, rgba(0,0,0,0) 70%);
}

[data-theme="light"] .glass-card-hero {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(125, 60, 88, 0.2);
    box-shadow: 0 20px 80px rgba(125, 60, 88, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #7d3c58 0%, #ff8fa3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .btn-hero-secondary {
    background: rgba(125, 60, 88, 0.1);
    border-color: rgba(125, 60, 88, 0.2);
    color: var(--brand-wine);
}

[data-theme="light"] .btn-hero-secondary:hover {
    background: rgba(125, 60, 88, 0.2);
    border-color: var(--brand-wine);
}

[data-theme="light"] .glass-card-info {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(125, 60, 88, 0.15);
}

[data-theme="light"] .glass-card-info:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--brand-wine);
    box-shadow: 0 10px 40px rgba(125, 60, 88, 0.1);
}

[data-theme="light"] .info-title {
    color: var(--brand-wine);
}

[data-theme="light"] .info-text {
    color: var(--text-secondary);
}

[data-theme="light"] .info-icon {
    background: rgba(125, 60, 88, 0.1);
    color: var(--brand-wine);
    border-color: rgba(125, 60, 88, 0.2);
}

[data-theme="light"] .values-grid .value-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    border-color: rgba(125, 60, 88, 0.15);
}

[data-theme="light"] .value-icon {
    color: var(--brand-wine);
    text-shadow: none;
}

[data-theme="light"] .value-title {
    color: var(--brand-wine);
}

[data-theme="light"] .value-desc {
    color: var(--text-secondary);
}

[data-theme="light"] h2.text-white {
    color: var(--brand-wine) !important;
}
