* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 95vh !important;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 119%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 2rem;
  margin-top: 20px;
}

.name-container {
  margin-bottom: 0.5rem;
  position: relative;
}

/* LILITA ONE FONT STYLING */
.first-line {
  font-family: "Poiret One", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700 !important; /* Lilita One is naturally bold */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 35px;
  margin: 2px;
  line-height: 1.5;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.title-tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.7s forwards;
  margin-top: 1.5rem;
  position: relative;
}

.profession {
  font-family: "Poiret One", sans-serif !important;
  font-size: 1;
  font-weight: 300;
  letter-spacing: 1rem;
  text-transform: uppercase;
  margin: 0;
  color: white;

  /* Smooth transition */
  transition: all 0.3s ease;
}

/* HERO SECTION FIXES */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 2rem;
  margin-top: 20px;
}

.first-line {
  font-family: "Poiret One", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700 !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 35px;
  margin: 2px;
  line-height: 1.5;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.profession {
  font-family: "Poiret One", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 300;
  letter-spacing: 1rem;
  text-transform: uppercase;
  margin: 0;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* ABOUT SECTION */
.about-section {
  position: relative;
  min-height: 70vh;
  padding: 3rem 0.5rem;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Simple Clean Background Pattern */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect fill="%23218576" opacity="0.03" width="60" height="60"/><circle fill="%23218576" opacity="0.05" cx="30" cy="30" r="2"/></svg>');
  background-size: 60px 60px;
  z-index: 1;
}

/* Wavy Divider at Bottom */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider .shape-fill {
  fill: rgb(33 133 118 / 25%);
}

/* ABOUT CONTAINER */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 0.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8.5rem;
  align-items: center;
}

/* PROFILE CIRCLE */
.profile-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.circle-bg {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #e1e8e8;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCircle 8s infinite ease-in-out;
  margin: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid #ffffff;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: scale(0.95);
}

/* BIO CONTENT */
.bio-content {
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s ease-out;
  margin: 0;
  padding: 0 0 0 1rem;
}

.bio-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.bio-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #218576;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
  line-height: 1.2;
}

.bio-text {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5d6d7e !important;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 450px;
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 0 !important;
}

/* BIO LINK */
.bio-link {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #218576;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1.5px solid #218576;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.bio-link:hover {
  background: #218576;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(33, 133, 118, 0.3);
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 8.2em;
    text-align: center;
  }

  .circle-bg {
    width: 320px;
    height: 320px;
  }

  .bio-content {
    padding: 0;
  }

  .bio-title {
    font-size: 2.5rem;
  }

  .bio-text {
    font-size: 1.1rem;
    margin: 0 auto 2rem auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 0.5rem;
    min-height: 50vh;
  }

  .bio-title {
    font-size: 2.2rem;
  }

  .bio-text {
    font-size: 1rem;
  }

  .circle-bg {
    width: 280px;
    height: 280px;
  }

  .wave-divider svg {
    height: 60px;
  }

  /* Hero section responsive fixes */
  .first-line {
    font-size: 35px;
    letter-spacing: 0.06em;
  }

  .profession {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }
}

@media (max-width: 480px) {
  .about-section {
    min-height: 95vh !important;
    padding: 1.5rem 0.5rem;
  }

  .bio-title {
    font-size: 1.8rem;
  }

  .bio-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .circle-bg {
    width: 300px;
    height: 300px;
  }

  .about-content {
    gap: 8.5rem;
  }

  .wave-divider svg {
    height: 40px;
  }

  /* Hero section mobile fixes */
  .first-line {
    font-size: 2.5rem !important;
    letter-spacing: 0.04em;
  }

  .profession {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 95vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 119%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 2rem;
  margin-top: 20px;
}

.name-container {
  margin-bottom: 0.5rem;
  position: relative;
}

.first-line {
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 38px;
  margin: 2px;
  line-height: 1.5;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.title-tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.7s forwards;
  margin-top: 1.5rem;
  position: relative;
}

.profession {
  font-family: "Poiret One", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1rem;
  text-transform: uppercase;
  margin: 0;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

/* ABOUT SECTION */
.about-section {
  position: relative;
  min-height: 70vh;
  padding: 3rem 0.5rem 6rem 0.5rem; /* Added bottom padding for wave */
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Simple Clean Background Pattern */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect fill="%23218576" opacity="0.03" width="60" height="60"/><circle fill="%23218576" opacity="0.05" cx="30" cy="30" r="2"/></svg>');
  background-size: 60px 60px;
  z-index: 1;
}

/* Wavy Divider at Bottom - FIXED TO FACE DOWNWARD */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px; /* Increased height for better wave effect */
  transform: rotate(180deg); /* This flips the wave to face downward */
}

.wave-divider .shape-fill {
  fill: rgb(33 133 118 / 25%);
}

/* ABOUT CONTAINER */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 0.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8.5rem;
  align-items: center;
}

/* PROFILE CIRCLE */
.profile-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.circle-bg {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #e1e8e8;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCircle 8s infinite ease-in-out;
  margin: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid #ffffff;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: scale(0.95);
}

/* BIO CONTENT */
.bio-content {
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s ease-out;
  margin: 0;
  padding: 0 0 0 1rem;
}

.bio-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.bio-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #218576;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bio-text {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5d6d7e;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 450px;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/* BIO LINK */
.bio-link {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #218576;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1.5px solid #218576;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.bio-link:hover {
  background: #218576;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(33, 133, 118, 0.3);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-10px);
  }
  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 8.5rem;
    text-align: center;
  }

  .circle-bg {
    width: 320px;
    height: 320px;
  }

  .bio-content {
    padding: 0;
  }

  .bio-title {
    font-size: 2.5rem;
  }

  .bio-text {
    font-size: 1.1rem;
    margin: 0 auto 2rem auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 0.5rem 4rem 0.5rem;
    min-height: 50vh;
  }

  .bio-title {
    font-size: 2.2rem;
  }

  .bio-text {
    font-size: 1rem;
  }

  .circle-bg {
    width: 280px;
    height: 280px;
  }

  .wave-divider svg {
    height: 100px;
  }

  /* Hero section responsive fixes */
  .first-line {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
  }

  .profession {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }
}

@media (max-width: 480px) {
  .about-section {
    min-height: 95vh;
    padding: 1.5rem 0.5rem 3rem 0.5rem;
  }

  .bio-title {
    font-size: 1.8rem;
  }

  .bio-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .circle-bg {
    width: 300px;
    height: 300px;
  }

  .about-content {
    gap: 8.5rem;
  }

  .wave-divider svg {
    height: 80px;
  }

  /* Hero section mobile fixes */
  .first-line {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
  }

  .profession {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .hero-content {
    margin-top: 20px;
  }
  .about-container {
    bottom: 50px !important;
  }
  .about-content {
    gap: 5rem !important;
  }
}
#about {
  scroll-margin-top: 58px;
}
