.about-full-section {
  position: relative;
  background: url("../img/deanna-full-portrait.jpg") center fixed;
  color: var(--text-color);
  padding: 80px 20px;
  overflow: hidden;
}

.about-full-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 10, 10, 0.7),
    rgba(10, 10, 10, 0.7)
  );
  filter: grayscale(40%) brightness(0.7);
  z-index: 0;
}

.about-full-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.about-full-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-full-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-full-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/deanna-full-portrait.jpg") center center / cover no-repeat;
  filter: blur(8px) brightness(0.5) grayscale(50%);
  z-index: 0;
}

.about-full-image img {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.2s;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.about-full-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

.about-full-text h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--light-color);
  font-family: 'Montserrat', sans-serif;
}

.about-full-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.about-full-text .deanna-text {
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 600;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text {
    max-width: 90%;
  }
}


.hero-text h1 {
  animation: blurSlideUp 1.5s ease forwards;
}

.hero-text p {
  animation: blurSlideUp 1.5s ease 0.3s forwards;
}


/* About Hero  */

.about-hero {
  position: relative;
  height: 80vh;
  background: url("../img/deanna-full-portrait.jpg") center 10% / cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--light-color);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(251, 219, 147, 0.1), rgba(10, 10, 10, 0.9));
  backdrop-filter: grayscale(50%) brightness(0.5);
  z-index: 0;
}

.about-hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 90%;
  animation: fadeInHero 2s ease forwards;
  opacity: 0;
}

.about-hero-overlay h1 {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--light-color);
  display: inline-block;
  padding-bottom: 5px;
}

.about-hero-overlay p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-top: 15px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.9;
}

@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
