/* Styling start here - meow */

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
  top: 0;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}


body {
  font-family: 'Manrope', sans-serif;
  background-color: transparent;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Navigation styling */
.navbar {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border: none !important;
  padding-bottom: 1rem;
  box-shadow: none !important;
  outline: none !important;
  padding: 0.5rem 0;
  margin: 0 !important;
}

.navbar .container {
  border: none !important;
  box-shadow: none !important;
}

/* Navbar link styling */
.navbar a.nav-link {
  color: #2c2c2c !important;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand {
  color: #2c2c2c !important;
  font-weight: normal;
  transition: all 0.3s ease;
  outline: none;
}


.navbar-nav:has(.nav-link.active) .nav-link:not(.active) {
  color: #B3B3B3 !important;
}


.navbar-nav:hover .nav-link:not(:hover) {
  color: #B3B3B3 !important;
}

.navbar a.nav-link:hover {
  color: #2c2c2c !important;
  text-decoration: none;
}


.navbar-brand:focus-visible {
  outline: none;
}

/* Moonie's Logo */
.navbar-logo {
  height: 75px;
  width: auto;
  max-width: none;
  min-height: 75px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  object-fit: contain;
  transform: rotate(0deg) scale(1);
  transform-origin: center center;
}

.navbar-logo.rotated {
  transform: rotate(45deg) scale(1.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  line-height: 1;
  height: auto;
}

/* Accessibility and responsiveness for the navbar */
  .navbar-nav {
    gap: 0.5rem;
  }
  
.navbar-nav .nav-item {
  margin: 0;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  outline: none;
}

.navbar-nav .nav-link:focus-visible {
  outline: 2px solid #4C7FFF;
  outline-offset: 2px;
  background-color: rgba(76, 127, 255, 0.2);
}

.navbar-nav .nav-link.active {
  color: #2c2c2c !important;
  font-weight: normal;
  text-decoration: none;
}

.navbar-toggler {
  border: 2px solid transparent;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  outline: 2px solid #4C7FFF;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(76, 127, 255, 0.2);
}

.navbar-toggler[aria-expanded="true"] {
  background-color: rgba(76, 127, 255, 0.2);
}



/* Section styling */
section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 80px;
  background: transparent;
}

/* Morphing Gradient Background */
:root {
  --circle-size: 120%;
  --blending: overlay;
  --color1: 250, 199, 183; /* Peachy Pink #FAC7B7 */
  --color2: 255, 239, 192; /* Light Yellow/Cream #FFEFC0 */
  --color3: 250, 199, 183; /* Peachy Pink #FAC7B7 (second tone) */
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}


.gradient-bg svg {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.g1,
.g2,
.g3,
.g4,
.g5,
.g6 {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  opacity: 0.7;
}

.g1 {
  background: radial-gradient(circle at center, rgba(var(--color1), 0.95) 0, rgba(var(--color1), 0) 50%);
  top: 10%;
  left: 10%;
  animation: moveHorizontal 60s ease infinite;
  transform-origin: 30% 50%;
  width: 90%;
  height: 90%;
}

.g2 {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.9) 0, rgba(var(--color2), 0) 50%);
  top: 20%;
  right: 15%;
  animation: moveInCircle 50s reverse infinite;
  transform-origin: 20% 50%;
  width: 70%;
  height: 70%;
}

.g3 {
  background: radial-gradient(circle at center, rgba(var(--color1), 0.9) 0, rgba(var(--color1), 0) 50%);
  bottom: 20%;
  left: 15%;
  animation: moveInCircle 55s ease infinite;
  transform-origin: 40% 60%;
  width: 110%;
  height: 110%;
}

.g4 {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.75) 0, rgba(var(--color2), 0) 50%);
  top: 50%;
  left: 50%;
  animation: moveHorizontal 70s ease infinite;
  transform-origin: 50% 30%;
  width: 60%;
  height: 60%;
}

.g5 {
  background: radial-gradient(circle at center, rgba(var(--color1), 0.85) 0, rgba(var(--color1), 0) 50%);
  top: 5%;
  left: 50%;
  animation: moveInCircle 56s reverse infinite;
  transform-origin: 60% 40%;
  width: 85%;
  height: 85%;
}

.g6 {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%);
  top: 60%;
  right: 20%;
  animation: moveHorizontal 65s ease infinite;
  transform-origin: 40% 50%;
  width: 50%;
  height: 50%;
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slogan-section .container {
  position: relative;
  z-index: 2;
}


main .navbar {
  margin-bottom: 0;
  border-bottom: none;
}

/* Intro Section */
.hero-section {
  text-align: left;
  padding-top: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.hero-section .container {
  max-width: 900px;
}

/* Hero Name Animation */
.hero-name {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 4.236rem; 
  font-weight: normal;
  color: #2c2c2c;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Hero Info Animation */
.hero-info {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  color: #4a4a4a;
  line-height: 1.8;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  text-align: center;
}

/* Fade in and slide up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-info p {
  margin-bottom: 0.75rem;
}

/* Style for currentcompany mentions and links */
.hero-info a,
.hero-info .highlight {
  color: #4C7FFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-info a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Principles of Building Product Section */
.principles-section {
  padding: 10px 0 10px 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
}

.principles-section.always-visible {
  opacity: 1;
  visibility: visible;
  max-height: none;
  padding: 80px 20px 16px 20px;
  transform: translateY(0);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.principles-section.rise-up {
  transform: translateY(60px);
  opacity: 0;
}

.principles-section.rise-up.animate-in {
  transform: translateY(0);
  opacity: 1;
}

.principles-orbit {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.principles-orbit::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 70%;
  left: 10%;
  top: 15%;
  border-radius: 50%;
  background: radial-gradient(
      ellipse at center,
      rgba(248, 143, 179, 0.55) 0%,
      rgba(242, 181, 68, 0.18) 40%,
      rgba(255, 255, 255, 0) 75%
    );
  filter: blur(35px);
  z-index: 0;
}

.orbit-center {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 16px;
}

.principles-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.618rem;
  font-weight: normal;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.principles-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

.orbit-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(250, 199, 183, 0.28);
  border: 1px solid rgba(250, 199, 183, 0.48);
  color: #2c2c2c;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(12px) scale(0.96) rotate(var(--tag-rotate, 0deg));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.orbit-tag:focus-visible,
.orbit-tag:hover {
  outline: none;
  transform: translateY(0) scale(1) rotate(var(--tag-rotate, 0deg));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.principles-orbit:hover .orbit-tag,
.principles-orbit:focus-within .orbit-tag {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(var(--tag-rotate, 0deg));
}

.tag-1 { animation-delay: 80ms, 0ms; }
.tag-2 { animation-delay: 140ms, 0.4s; }
.tag-3 { animation-delay: 200ms, 0.8s; }
.tag-4 { animation-delay: 260ms, 1.2s; }
.tag-5 { animation-delay: 320ms, 1.6s; }
.tag-6 { animation-delay: 380ms, 2.0s; }
.tag-7 { animation-delay: 440ms, 2.4s; }
.tag-8 { animation-delay: 500ms, 2.8s; }

/* Discrete positions around center with slight angle tweaks */
.tag-1 { top: 30%; left: 8%; --tag-rotate: -8deg; }
.tag-2 { top: 10%; left: 30%; --tag-rotate: -3deg; }
.tag-3 { top: 10%; right: 28%; --tag-rotate: 7deg; }
.tag-4 { top: 34%; right: 6%; --tag-rotate: 8deg; }
.tag-5 { bottom: 25%; right: 10%; --tag-rotate: -8deg; }
.tag-6 { bottom: 10%; right: 28%; --tag-rotate: -6deg; }
.tag-7 { bottom: 10%; left: 28%; --tag-rotate: 6deg; }
.tag-8 { bottom: 25%; left: 6%; --tag-rotate: 8deg; }

@keyframes tagIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--tag-rotate, 0deg));
  }
}

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-width: 768px) {
  .principles-orbit { min-height: 560px; }
  .orbit-tag { font-size: 0.9rem; padding: 9px 14px; }
  .tag-6, .tag-8 { display: none; }
  /* Discrete mobile positions for 6 tags */
  .tag-1 { top: 10%; left: 8%; --tag-rotate: -6deg; }
  .tag-2 { top: 10%; right: 8%; left: auto; --tag-rotate: 6deg; }
  .tag-3 { top: 28%; left: 10%; right: auto; --tag-rotate: 10deg; }
  .tag-4 { top: 28%; right: 10%; --tag-rotate: 8deg; }
  .tag-5 { bottom: 18%; left: 10%; right: auto; --tag-rotate: -8deg; }
  .tag-7 { bottom: 18%; right: 10%; left: auto; --tag-rotate: -10deg; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-tag {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.slogan-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.618rem;
  font-weight: normal;
  color: #1e54a6;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.projects-header-inline {
  padding: 2rem 0 3rem 0;
  text-align: center;
  position: relative;
  z-index: 3;
}

.projects-title-inline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.618rem;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.projects-subtitle-inline {
  font-family: 'Manrope', sans-serif;
  font-size: 1.618rem; 
  font-weight: normal;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
}

.slogan-line:nth-child(1) {
  animation-delay: 0.4s;
}

.slogan-line:nth-child(2) {
  animation-delay: 0.8s;
}

.slogan-line:nth-child(3) {
  animation-delay: 1.2s;
}

/* Fade in animation for slogan lines */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Me Section */
.about-me-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 16px 20px;
  position: relative;
  z-index: 1;
}

.about-image-wrapper {
  text-align: center;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: pictureFrameEnter 1.2s ease-out 0.5s forwards;
  padding-right: 2rem;
  padding-left: calc((100% - 1200px) / 2);
  padding-left: max(20px, calc((100% - 1200px) / 2));
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  transform: rotate(45deg);
  transition: transform 0.6s ease-out;
}

.picture-frame-wrapper {
  text-align: center;
}

/* Picture Frame Styling */
.picture-frame {
  background: #FFFBF8;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto 3rem auto;
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: pictureFrameEnter 1.2s ease-out 0.5s forwards;
  border-radius: 20px;
  overflow: hidden;
}

@keyframes pictureFrameEnter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.picture-frame-image {
  width: 100%;
  height: 0;
  padding-bottom: 133.33%;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
  border-radius: 12px;
}

.picture-frame-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* About Description */
.about-description {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.about-description-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.618rem;
  font-weight: normal;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.about-description-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

/* Creative Board Section */
.creative-board-section {
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.creative-board-script {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 450px;
  width: auto;
  height: auto;
  z-index: 15;
  border-radius: 12px;
}

.creative-board-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.creative-board-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creative-board-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Draggable Images */
.draggable-image {
  position: absolute;
  max-width: 280px;
  height: auto;
  cursor: move;
  cursor: grab;
  user-select: none;
  z-index: 10;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.8) rotate(calc(var(--image-rotation, 0deg) - 10deg));
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.draggable-image.animate-in {
  animation: scrapbookDropIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scrapbookDropIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8) rotate(calc(var(--image-rotation, 0deg) - 10deg));
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  60% {
    opacity: 0.9;
    transform: translateY(-10px) scale(1.05) rotate(calc(var(--image-rotation, 0deg) + 5deg));
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--image-rotation, 0deg));
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  }
}

.draggable-image:active {
  cursor: grabbing;
  z-index: 20;
}

.draggable-image:hover {
  transform: rotate(var(--image-rotation, 0deg)) rotate(5deg) scale(1.02) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)) !important;
}

.board-image-5:hover {
  transform: translate(-50%, -50%) rotate(var(--image-rotation, -2deg)) rotate(5deg) scale(1.02) !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)) !important;
}

.draggable-image:active {
  transform: rotate(var(--image-rotation, 0deg));
}

.board-image-5:active {
  transform: translate(-50%, -50%) rotate(var(--image-rotation, -2deg));
}

/* Scrapbook layout */
/* Favorite Flowers */
.board-image-1 {
  top: 5%;
  left: 5%;
  --image-rotation: -3deg;
  transform: rotate(-3deg);
  max-width: 320px;
}

/* Moonie Kid */
.board-image-2 {
  top: 2%;
  right: 4%;
  --image-rotation: 5deg;
  transform: rotate(5deg);
  max-width: 350px;
}

/* Shiba Inu Snoopy */
.board-image-3 {
  bottom: 12%;
  left: 8%;
  --image-rotation: -4deg;
  transform: rotate(-4deg);
  max-width: 300px;
}

/* Building Projects */
.board-image-4 {
  bottom: 10%;
  right: 10%;
  --image-rotation: 3deg;
  transform: rotate(3deg);
  max-width: 320px;
}

/* SG Hometown */
.board-image-5 {
  top: 50%;
  left: 50%;
  --image-rotation: -2deg;
  transform: translate(-50%, -50%) translateY(50px) scale(0.8) rotate(calc(-2deg - 10deg));
  max-width: 380px;
}

.board-image-5.animate-in {
  animation: scrapbookDropInCentered 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scrapbookDropInCentered {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(50px) scale(0.8) rotate(calc(-2deg - 10deg));
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  60% {
    opacity: 0.9;
    transform: translate(-50%, -50%) translateY(-10px) scale(1.05) rotate(calc(-2deg + 5deg));
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  }
}

/* Matcha */
.board-image-8 {
  bottom: 3%;
  right: 35%;
  --image-rotation: 5deg;
  transform: translateY(50px) scale(0.8) rotate(calc(5deg - 10deg));
  max-width: 120px;
}

/* Books */
.board-image-9 {
  bottom: 1%;
  left: 35%;
  --image-rotation: -4deg;
  transform: translateY(50px) scale(0.8) rotate(calc(-4deg - 10deg));
  max-width: 110px;
}

/* Croissant */
.board-image-6 {
  bottom: 2%;
  left: 10%;
  --image-rotation: 4deg;
  transform: translateY(50px) scale(0.8) rotate(calc(4deg - 10deg));
  max-width: 120px;
}

/*  Mugs */
.board-image-7 {
  bottom: 1%;
  right: 10%;
  --image-rotation: -3deg;
  transform: translateY(50px) scale(0.8) rotate(calc(-3deg - 10deg));
  max-width: 70px;
}

/* Tablet responsive adjustments */
@media (max-width: 992px) {
  .board-image-1 {
    top: 3%;
    left: 3%;
    max-width: 240px;
  }
  
  .board-image-2 {
    top: 1%;
    right: 2%;
    max-width: 260px;
  }
  
  .board-image-3 {
    bottom: 8%;
    left: 5%;
    max-width: 220px;
  }
  
  .board-image-4 {
    bottom: 6%;
    right: 6%;
    max-width: 240px;
  }
  
  .board-image-5 {
    max-width: 280px;
  }
  
  .board-image-8 {
    bottom: 5%;
    right: 32%;
    max-width: 90px;
  }
  
  .board-image-9 {
    bottom: 0%;
    left: 28%;
    max-width: 85px;
  }
  
  .board-image-6 {
    bottom: 8%;
    left: 20%;
    max-width: 90px;
  }
  
  .board-image-7 {
    bottom: 5%;
    right: 28%;
    max-width: 60px;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .creative-board-section {
    padding: 30px 15px;
  }
  
  .creative-board-script {
    max-width: 300px;
    top: -1%;
  }
  
  .creative-board-image {
    border-radius: 8px;
  }
  
  .draggable-image {
    max-width: 140px;
  }
  
  .board-image-1 {
    top: 2%;
    left: 2%;
    max-width: 130px;
  }
  
  .board-image-2 {
    top: 0%;
    right: 1%;
    max-width: 140px;
  }
  
  .board-image-3 {
    bottom: 5%;
    left: 3%;
    max-width: 120px;
  }
  
  .board-image-4 {
    bottom: 3%;
    right: 3%;
    max-width: 140px;
  }
  
  .board-image-5 {
    max-width: 180px;
  }
  
  .board-image-8 {
    bottom: 2%;
    right: 26%;
    max-width: 70px;
  }
  
  .board-image-9 {
    bottom: 0%;
    left: 24%;
    max-width: 65px;
  }
  
  .board-image-6 {
    bottom: 5%;
    left: 15%;
    max-width: 70px;
  }
  
  .board-image-7 {
    bottom: 3%;
    right: 25%;
    max-width: 45px;
  }
}

/* Small mobile adjustments */
@media (max-width: 576px) {
  .board-image-1 {
    max-width: 100px;
  }
  
  .board-image-2 {
    max-width: 110px;
  }
  
  .board-image-3 {
    max-width: 95px;
  }
  
  .board-image-4 {
    max-width: 110px;
  }
  
  .board-image-5 {
    max-width: 150px;
  }
  
  .board-image-6 {
    max-width: 55px;
  }
  
  .board-image-7 {
    max-width: 40px;
  }
  
  .board-image-8 {
    max-width: 55px;
  }
  
  .board-image-9 {
    max-width: 50px;
  }
}
.about-description-text:last-child {
  margin-bottom: 0;
  animation-delay: 1.4s;
}

/* Experience Section */
.experience-section {
  min-height: 100vh;
  padding: 0 20px 80px 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.618rem; 
  font-weight: normal;
  color: #2c2c2c;
  text-align: left;
  margin-bottom: 3rem;
}

.experience-section .section-title {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  margin-bottom: 1.5rem;
  padding-top: 0;
  position: relative;
  align-self: flex-start;
}

.typing-title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #2c2c2c;
  animation: typing 2.8s steps(11, end), blink 0.8s step-end infinite alternate;
}

@keyframes typing {
  from { width: 0; }
  to { width: 11ch; }
}

@keyframes blink {
  from { border-color: #2c2c2c; }
  to { border-color: transparent; }
}

/* Skills Section */
.skills-container {
  margin-bottom: 4rem;
}

.skills-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.skills-intro p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.skills-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.skill-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.skill-item h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.skill-circle {
  width: 140px;
  height: 140px;
  transform: rotate(0deg);
}

.skill-circle circle {
  transition: stroke-dashoffset 1s ease;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #FAC7B7, #FFEFC0);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 100px;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FAC7B7, #FFEFC0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  overflow: visible;
}

.timeline-dot i,
.timeline-dot .material-icons {
  font-size: 1.2rem;
  color: #2c2c2c;
  display: block !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  font-family: 'Material Icons' !important;
  font-weight: normal !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  word-wrap: normal !important;
  white-space: nowrap !important;
  direction: ltr !important;
  text-align: center !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
}

.timeline-content {
  background: rgba(255, 251, 248, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Manrope', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.618rem;
  font-weight: normal;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.exp-company {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4C7FFF;
  margin-bottom: 0.3rem;
}

.exp-date {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

/* Projects Section */
.projects-section {
  min-height: 100vh;
  padding: 0 20px 80px 20px;
  position: relative;
  z-index: 1;
}

.projects-section .row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.projects-section .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.projects-section .container {
  max-width: 1200px;
}

.projects-background-box {
  filter: contrast(110%) brightness(100%);
  background: 
    linear-gradient(170deg, #e39b8b 0%, #d8b96f 55%, #b48c63 100%),
    radial-gradient(circle at 20% 20%, rgba(250, 199, 183, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 239, 192, 0.25), transparent 50%);
  border-radius: 24px;
  padding: 4rem 3rem;
  margin: 3rem auto;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.projects-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.projects-blob-yellow {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.9) 0, rgba(var(--color2), 0) 60%);
  top: -5%;
  left: 15%;
  width: 100%;
  height: 80%;
  animation: projectsBlobMove 25s ease-in-out infinite;
  transform-origin: 30% 30%;
  mix-blend-mode: overlay;
  opacity: 0.8;
  filter: blur(30px);
}

@keyframes projectsBlobMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(15%, -5%) scale(1.1);
  }
  50% {
    transform: translate(-10%, 10%) scale(0.95);
  }
  75% {
    transform: translate(5%, -8%) scale(1.05);
  }
}

.projects-header {
  text-align: center;
}

.projects-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.618rem;
  font-weight: normal;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.projects-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 0;
}

/* Project Cards */
/* Ensure project grid columns stretch to equal height */
#projects-grid .col {
  display: flex;
  flex-direction: column;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

.project-card-link:hover,
.project-card-link:focus {
  text-decoration: none;
  color: inherit;
}

.project-card-link .project-card-title,
.project-card-link .project-card-description,
.project-card-link .project-card-footer,
.project-card-link .project-tag {
  text-decoration: none;
  color: inherit;
}

.project-card-link:hover .project-card-title,
.project-card-link:focus .project-card-title,
.project-card-link:hover .project-card-description,
.project-card-link:focus .project-card-description {
  text-decoration: none;
  color: inherit;
}

/* In-progress / coming soon project cards (no link yet) */
.project-card-in-progress {
  cursor: default;
  pointer-events: none;
}

.project-card-in-progress .project-card {
  cursor: default;
}

.project-card-in-progress .project-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
}

.project-btn-in-progress {
  opacity: 1;
  background: rgba(44, 44, 44, 0.85);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.project-card {
  background: rgba(255, 251, 248, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* Project Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem;
  transition: background 0.5s ease;
  z-index: 1;
}

.project-card-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.project-btn {
  margin-top: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Expanding white effect */
.project-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFBF8;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

/* Circle (white background part) */
.project-btn .btn-circle {
  background: #FFFBF8;
  color: #000;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.project-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.project-btn .arrow svg {
  width: 20px;
  height: 8px;
  display: block;
}

/* Layer control */
.project-btn * {
  position: relative;
  z-index: 2;
}

/* Hover trigger: circle expands left to fill */
.project-card:hover .project-btn:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}

/* Text + icon color swap */
.project-card:hover .project-btn:hover {
  color: #000;
  transition: color 0.55s ease 0.1s;
}

.project-card:hover .project-btn:hover .btn-circle {
  background: transparent;
  color: #000;
}

.project-card:hover .project-btn:hover .arrow {
  transform: translateX(-5px);
}

/* Accessibility: focus-visible outline */
.project-btn:focus-visible {
  outline: 2px solid #4C7FFF;
  outline-offset: 3px;
}

/* Hover effects */
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.project-card:hover .project-card-image img {
  filter: blur(4px) brightness(0.8);
  transform: scale(1.02);
}

.project-card:hover .project-card-subtitle,
.project-card:hover .project-btn {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .project-card-subtitle {
  transition-delay: 0.1s;
}

.project-card:hover .project-btn {
  transition-delay: 0.2s;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .project-card-image img,
  .project-overlay,
  .project-card-subtitle,
  .project-btn {
    transition: none !important;
  }
  
  .project-card:hover .project-card-image img {
    filter: none;
    transform: none;
  }
  
  .project-card:hover .project-card-subtitle,
  .project-card:hover .project-btn {
    transform: none;
  }
}

.project-card:focus {
  outline: none;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 251, 248, 0.85);
}

.project-card-content {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  flex-grow: 1;
}

.project-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: bold;
  color: #4C7FFF;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.project-card-link .project-card-title {
  color: #4C7FFF !important;
  text-decoration: none !important;
}

.project-card-link:hover .project-card-title,
.project-card-link:visited .project-card-title,
.project-card-link:active .project-card-title {
  color: #4C7FFF !important;
  text-decoration: none !important;
}

.project-card-description {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.project-card-footer {
  margin-top: auto;
  padding-top: 0.25rem;
  padding-bottom: 0;
  min-height: auto;
}

.project-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(var(--color1), 0.2);
  color: #2c2c2c;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Navbar responsive styles */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-logo {
    height: 65px;
    min-height: 65px;
  }
  
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1.1rem;
  }
  
  .navbar-collapse {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .hero-name {
    font-size: 2.618rem; 
  }
  
  .hero-info {
    font-size: 1rem;
  }
  
  .slogan-text {
    font-size: 1.618rem;
  }
  
  .projects-title {
    font-size: 1.618rem; 
  }
  
  .project-card-image {
    height: 250px;
  }
  
  .project-card-title {
    font-size: 1.5rem;
  }
  
  .about-description-title {
    font-size: 1.618rem; 
  }
  
  .about-description {
    padding: 0 10px;
  }
  
  .about-image-wrapper {
    margin-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
  }
  
  .about-description-title,
  .about-description-text {
    text-align: center;
  }
  
  .picture-frame {
    max-width: 300px;
    padding: 15px;
  }
  
  .section-title {
    font-size: 1.618rem; 
  }
  
  .skills-slider {
    gap: 2rem;
  }
  
  .skill-circle {
    width: 120px;
    height: 120px;
  }
  
  .experience-section .section-title {
    padding-left: 70px;
  }
  
  .timeline {
    padding-left: 40px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-dot {
    left: -20px;
    width: 32px;
    height: 32px;
  }
  
  .timeline-dot i,
  .timeline-dot .material-icons {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .exp-title {
    font-size: 1rem; 
  }
  
  .exp-company {
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1.2rem 1.5rem;
  }
}

/* Contact Section */
.contact-section {
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background: transparent;
}

.contact-section .section-title {
  text-align: center;
}

.contact-intro {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 251, 248, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(250, 199, 183, 0.5);
  box-shadow:
    0 15px 45px rgba(250, 199, 183, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  display: block;
}

.form-label .required {
  color: #D83400;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #2c2c2c;
  background: rgba(255, 251, 248, 0.95);
  border: 1px solid rgba(250, 199, 183, 0.4);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #FAC7B7;
  box-shadow: 0 0 0 3px rgba(250, 199, 183, 0.25);
  background: #FFFBF8;
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
  display: block;
}

.submit-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: none;
  overflow: hidden;
  min-width: 160px;
  z-index: 2;
}

.contact-submit-btn:focus-visible {
  outline: 2px solid #4C7FFF;
  outline-offset: 3px;
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-submit-btn .btn-spinner {
  margin-left: 0.5rem;
}

/* Form Messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: slideDown 0.3s ease-out;
}

.form-message i {
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.form-message p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message a {
  color: inherit;
  text-decoration: underline;
}

.form-message-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 1.618rem; 
  }
}

/* Additional responsive breakpoints */
@media (max-width: 576px) {
  .navbar-logo {
    height: 55px;
    min-height: 55px;
  }
  
  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0.75rem !important;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    padding: 0.5rem 1.25rem !important;
  }
}

/* Footer */
.footer {
  background: transparent;
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social a {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 251, 248, 0.1);
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #2c2c2c;
  font-size: 1.25rem;
  text-decoration: none;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 127, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

.footer-social a:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(76, 127, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #4C7FFF;
}

.footer-social a:hover::before {
  transform: scale(1);
}

.footer-social a i {
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover i {
  transform: scale(1.1);
}

.footer-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #2c2c2c;
  margin: 0;
  text-align: center;
}
