/* about.css - Premium About Page with Dark Theme */
:root {
  --gold-primary: #C6A664;
  --gold-dark: #A88C4A;
  --gold-light: #E8D9B0;
  --bg-dark: #0f0f0f;
  --bg-darker: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border-dark: #333333;
  --text-on-dark: #ffffff;
  --text-muted-dark: #a0a0a0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(198, 166, 100, 0.2);
}

/* ==================== PREMIUM HERO SECTION ==================== */
.premium-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(15, 15, 15, 0.95) 0%,
    rgba(10, 10, 10, 0.98) 50%,
    rgba(30, 30, 30, 0.95) 100%);
  overflow: hidden;
  padding: 1.5rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), transparent);
  opacity: 0.08;
  animation: floatElement 8s ease-in-out infinite;
}

.el-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.el-2 {
  width: 300px;
  height: 300px;
  bottom: 150px;
  left: -100px;
  animation-delay: 2s;
}

.el-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 25%;
  animation-delay: 4s;
}

.el-4 {
  width: 150px;
  height: 150px;
  bottom: 250px;
  right: 20%;
  animation-delay: 6s;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 75%, rgba(198, 166, 100, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(214, 198, 177, 0.08) 0%, transparent 50%);
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-30px) rotate(120deg) scale(1.05); }
  66% { transform: translateY(15px) rotate(240deg) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.brand-presentation {
  margin-bottom: 3rem;
}

.logo-glow {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  border-radius: 50%;
  margin: 0 auto 2rem;
  opacity: 0.3;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

.brand-title {
  font-family: 'Unica One', cursive;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-on-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.divider-line:last-child {
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-muted-dark);
  line-height: 1.6;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* ==================== ABOUT CONTENT ==================== */
.about-copy {
  max-width: 900px;
  margin: 0 auto 1rem auto;
  color: var(--text-on-dark);
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
}

/* ==================== CONTACT SECTION ==================== */
.contact-title {
  font-family: 'Unica One', cursive;
  letter-spacing: 0.18em;
  color: var(--text-on-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.contact-sub {
  color: var(--text-muted-dark);
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ==================== MESSAGES ==================== */
.contact-alert {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: 1px solid rgba(198, 166, 100, 0.3);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow);
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow);
}

.contact-form .form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  box-shadow: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(198, 166, 100, 0.1);
  outline: none;
}

.contact-form .form-control::placeholder { 
  color: var(--text-muted-dark);
}

/* Labels */
.contact-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

/* Textarea */
.contact-textarea { 
  min-height: 200px; 
  resize: vertical; 
}

/* Submit Button */
.btn-premium.contact-submit {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  border-radius: 12px;
  padding: 1rem 3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  max-width: 360px;
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-premium.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-premium.contact-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-premium.contact-submit:hover::before {
  left: 100%;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .premium-hero-section {
    min-height: 50vh;
    padding: 1rem 0;
  }
  
  .brand-presentation {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-sub {
    font-size: 1rem;
  }
  
  .btn-premium.contact-submit {
    padding: 0.875rem 2rem;
    width: 100%;
  }
  
  .about-copy {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-copy,
.contact-form {
  animation: fadeInUp 0.8s ease;
}

.contact-form {
  animation-delay: 0.2s;
}