/* ===== MOON - PREMIUM ABOUT US CSS (CLEAN VERSION) ===== */

:root {
  /* Keeping your project variables for the button glow */
  --btn-glow: rgba(255, 255, 255, 0.5);
}

.about-premium {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000; 
  background-image: url('/assets/aboutushomebg.webp'); /* Your background image */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: 'Outfit', sans-serif;
  padding: 100px 20px;
}

/* Subtle dark overlay to ensure text readability against the BG image */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 80vh; /* Adjust height to control spacing between top and bottom */
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  align-items: center;
}

/* --- HEADING (Exact match to your Projects style) --- */
.about-title {
  text-align: center;
  font-weight: 300; 
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  letter-spacing: 5px; 
  text-transform: uppercase;
  background: linear-gradient(to bottom, #fff, #777); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* --- BOTTOM CONTENT (Plain & Minimalist) --- */
.about-content-box {
  max-width: 850px;
  text-align: center;
  /* Removed background, border, and backdrop-filter */
}

.about-description {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85); /* Slightly higher opacity for readability without glass */
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 45px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Helps text pop against background */
}

.about-description strong {
  color: #fff;
  font-weight: 500;
}

/* --- PREMIUM GLOW BUTTON (Matches .p-btn-analyze) --- */
.glass-button {
  position: relative;
  display: inline-block;
  padding: 16px 45px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6); /* Slightly darker for better contrast */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  animation: aboutGlowPulse 3s infinite ease-in-out;
}

@keyframes aboutGlowPulse {
  0% { box-shadow: 0 0 5px rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 25px var(--btn-glow); border-color: rgba(255,255,255,0.9); }
  100% { box-shadow: 0 0 5px rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
}

.glass-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 0 35px #fff;
  animation: none;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
  .about-container {
    height: auto;
    gap: 120px; /* Space between title and text on mobile */
  }
  
  .about-premium {
    background-attachment: scroll;
    padding: 80px 24px;
  }
}