* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #e0e0e0;
}

/* Navigation Styles */
.navigation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-bottom: 1px solid #444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navigation {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  min-width: 0;
}

.logo {
  color: #ff69b4;
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
  flex-shrink: 0;
}

.nav-items {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  max-width: calc(100% - 150px);
}

.nav-button {
  background: none;
  border: none;
  color: #b8b8b8;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-button:hover {
  color: #ff69b4;
  transform: translateY(-1px);
}

.nav-button.active {
  color: #ff1493;
  font-weight: 500;
}

.nav-button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff1493, #ff69b4);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.5);
}

.nav-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 1rem;
}

.resume-button {
  background: transparent;
  border: 1px solid rgba(255, 105, 180, 0.3);
  color: #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.resume-button:hover {
  border-color: #ff69b4;
  color: #ff69b4;
  background: rgba(255, 105, 180, 0.05);
}

.download-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.resume-button:hover .download-icon {
  transform: translateY(2px);
}

/* Responsive navigation */
@media (max-width: 768px) {
  .navigation {
    padding: 0 1rem;
  }

  .nav-left {
    gap: 1rem;
  }

  .nav-items {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .logo {
    font-size: 1rem;
  }

  .resume-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Main content container adjustments for new navigation */
.main-content {
  margin-top: 60px;
}

/* Content sections and layout */

/* Main Content Sections */
.section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Home Section - Artistic Style */
.home-section {
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgb(79, 78, 78) 0%,
    rgb(53, 53, 53) 25%,
    rgb(41, 41, 41) 50%,
    rgb(23, 23, 23) 75%,
    rgb(0, 0, 0) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
}

.mini-content {
  position: absolute;
  top: 3%;
  left: 7%;
  color: white;
  z-index: 2;
}

.home-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 1.8s forwards;
}

.home-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.home-description {
  font-size: 1.5rem;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 2.1s forwards;
}

.home-title {
  font-size: 10rem;
  font-weight: 800;
  margin-bottom: 1rem;
  -webkit-text-stroke: 2px #fee2f0;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.pink-accent {
  color: #ff69b4;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.social-icons {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 2.4s forwards;
}

.social-icons a {
  color: white;
  font-size: 2rem;
  margin: 0 5px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #d1299c;
  transform: translateY(-3px);
}

/* Scroll Indicator Styles */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0;
  animation: fadeIn 1s ease-out 2.5s forwards;
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.8;
  letter-spacing: 2px;
}

.arrow-down {
  animation: bounce 2.5s infinite;
}

.arrow-down i {
  font-size: 1rem;
  color: white;
  opacity: 0.8;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 400px;
  animation-delay: 4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  width: auto;
  height: 1200px;
  opacity: 0.8;
  object-fit: contain;
  filter: blur(2px) drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
}

.about-image {
  position: absolute;
  top: 55%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 350px;
  animation-delay: 4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: auto;
  height: 600px;
  opacity: 0.8;
  object-fit: contain;
  filter: blur(1px) drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
  opacity: 0;
  transform: translateX(100px);
  animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.section-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.section-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes droppingIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInNav {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes letterSlide {
  to {
    transform: translateX(0);
  }
}

@keyframes letterFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-30px);
  }
}

/* Animation for the bouncing arrow */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Animation for fade in */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-right {
    right: 20px;
  }

  .vertical-name,
  .vertical-role {
    font-size: 30px;
  }

  .nav-items {
    left: 10px;
  }

  .nav-button {
    width: 50px;
    height: 50px;
    font-size: 9px;
  }

  .home-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .vertical-name,
  .vertical-role {
    font-size: 25px;
  }

  .nav-button {
    width: 45px;
    height: 45px;
    font-size: 8px;
  }

  .nav-vertical-name {
    left: 15px;
    font-size: 10px;
  }

  .home-title {
    font-size: 2rem;
  }

  .home-subtitle {
    font-size: 1.2rem;
  }
}
/* About Section - Character Profile Card Design */
.about-section {
  background: #0a0a0a;
  color: white;
  width: 100%;
  min-height: 100vh;
  padding: 90px 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(255, 20, 147, 0.03) 50%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(255, 20, 147, 0.03) 50%,
      transparent 52%
    );
  background-size: 30px 30px;
  opacity: 0.5;
}

.about-header {
  text-align: center;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.about-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.profile-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 20, 147, 0.3);
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
}

/* Left Side - Character Display */
.character-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 2rem;
  padding-top: 0;
}

.character-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.character-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 11%;
  object-position: bottom;
  filter: blur(1.5px) drop-shadow(0 0 40px rgba(255, 20, 147, 0.6));
  z-index: 2;
}

.name-overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 20, 147, 0.5);
  letter-spacing: 0.2em;
  z-index: 1;
  opacity: 0.3;
  animation: floatUpDown 3s ease-in-out infinite;
}

.name-overlay-2 {
  bottom: 28%;
  opacity: 0.2;
  animation: floatUpDown 3.5s ease-in-out infinite;
}

.name-overlay-3 {
  bottom: 46%;
  opacity: 0.1;
  animation: floatUpDown 4s ease-in-out infinite;
}

/* Right Side - Profile Card */
.profile-card-side {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.95),
    rgba(30, 30, 30, 0.95)
  );
  border-left: 3px solid #ff1493;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.profile-header {
  border-bottom: 2px solid rgba(255, 20, 147, 0.3);
  padding-bottom: 1.5rem;
}

.profile-tag {
  display: inline-block;
  background: #ff1493;
  color: white;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.profile-subtitle {
  font-size: 1.2rem;
  color: #aaa;
  font-weight: 300;
}

.profile-photo-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 20, 147, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  border: 3px solid #ff69b4;
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

.profile-signature {
  font-family: "Brush Script MT", cursive;
  font-size: 2.5rem;
  color: #ff69b4;
  font-weight: 400;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-row {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-left: 2px solid #ff1493;
}

.info-label {
  font-size: 0.7rem;
  color: #888;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.info-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.profile-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid #ff69b4;
}

.resume-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #ff1493;
  padding: 0.8rem 1.5rem;
  border: 2px solid #ff1493;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resume-btn:hover {
  background: #ff1493;
  color: white;
  border-color: #ff1493;
}

.resume-btn i {
  font-size: 1rem;
}

/* Scroll Animations for About Section */
.character-side,
.profile-card-side,
.info-row,
.profile-description,
.resume-btn {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.character-side.animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.profile-card-side.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.info-row.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.profile-description.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.resume-btn.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.character-img {
  transition: transform 0.6s ease;
}

.character-side.animate-in .character-img {
  animation: floatIn 1.2s ease-out;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.name-overlay {
  transition: all 0.8s ease;
}

.character-side.animate-in .name-overlay {
  animation: slideUp 1s ease-out 0.3s backwards,
    floatUpDown 3s ease-in-out 1.3s infinite;
}

.character-side.animate-in .name-overlay-2 {
  animation: slideUp 1s ease-out 0.5s backwards,
    floatUpDown 3.5s ease-in-out 1.5s infinite;
}

.character-side.animate-in .name-overlay-3 {
  animation: slideUp 1s ease-out 0.7s backwards,
    floatUpDown 4s ease-in-out 1.7s infinite;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }
  100% {
    opacity: inherit;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .character-side {
    max-height: 400px;
  }

  .name-overlay {
    font-size: 3rem;
  }

  .profile-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 1rem;
  }

  .profile-container {
    padding: 1.5rem;
  }

  .profile-card-side {
    padding: 2rem;
  }

  .profile-name {
    font-size: 2rem;
  }

  .profile-info-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo-section {
    flex-direction: column;
    text-align: center;
  }

  .name-overlay {
    font-size: 2rem;
  }
}

/* Animation classes remain the same */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slideInLeft {
  transform: translateX(-100px);
}

.animate-on-scroll.slideInLeft.animate-in {
  transform: translateX(0);
}

.animate-on-scroll.slideInRight {
  transform: translateX(100px);
}

.animate-on-scroll.slideInRight.animate-in {
  transform: translateX(0);
}

.animate-on-scroll.fadeInUp {
  transform: translateY(50px);
}

.animate-on-scroll.fadeInUp.animate-in {
  transform: translateY(0);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-image-wrapper {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 6rem 1.5rem;
  }

  .about-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .about-photo {
    max-width: 280px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text .role {
    font-size: 1rem;
  }

  .about-text .description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 5rem 1rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-photo {
    max-width: 220px;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text .education {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
