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

:root {
  --primary-purple: #7562ab;
  --primary-black: #2a2a2a;
  --primary-white: #fff;
  --primary-yellow: #fbe20c;
  --primary-grey: #d4d4d4;
  --primary-pink: #ff84ca;
  --primary-blue: #9fd7fa;
  --primary-red: #f15555;
  --primary-green: #88fe77;
  --bg-purple: #7562ab;
  --bg-black: #2a2a2a;
  --bg-white: #fff;
  --bg-yellow: #fbe20c;
  --bg-grey: #d4d4d4;
  --bg-pink: #ff84ca;
  --bg-blue: #9fd7fa;
  --bg-red: #f15555;
  --bg-green: #88fe77;
  --text-dark: #2a2a2a;
  --card-white: #fff;
  --card-grey: #f5f5f5;
}

body {
  font-family: "Klee One", cursive;
  background-color: var(--bg-yellow);
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: var(--primary-red);
  border-radius: 5px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 4px 4px 0px var(--text-dark);
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-middle {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-family: "Unbounded", cursive;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 5px;
}

.nav-links a.active {
  border: 1px solid;
  color: var(--text-dark);
  box-shadow: 4px 4px 0px var(--text-dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-btn {
  background: var(--primary-pink);
  color: var(--text-dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Unbounded", cursive;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 3px solid var(--text-dark);
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 159, 205, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

section {
  min-height: 100vh;
  width: 100%;
  padding: 10rem 5% 4rem;
  position: relative;
}

#home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  background: var(--bg-green);
  width: 100%;
}

.home-content {
  flex: 1;
  max-width: 600px;
}

.home-content h3 {
  font-family: "Gaegu", cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  text-shadow: 3px 3px 0px var(--primary-blue);
}

.home-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.button-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.download-btn {
  background: var(--primary-pink);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Unbounded", cursive;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 3px solid var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 159, 205, 0.4);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--card-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--text-dark);
  font-size: 1.3rem;
  cursor: pointer;
}

.social-links a:hover {
  transform: translateY(-5px) rotate(5deg);
  background: var(--primary-purple);
  color: white;
}

.home-image {
  position: relative;
  width: 400px;
  height: 500px;
  flex-shrink: 0;
}

/* Image Box Container */
.image-box-container {
  position: relative;
  width: 400px;
  height: 500px;
  flex-shrink: 0;
}

/* Main Image Box */
.retro-image-box {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--primary-purple);
  border-radius: 30px;
  border: 4px solid var(--text-dark);
  box-shadow: 12px 12px 0px var(--primary-yellow);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.retro-image-box::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  background: var(--primary-pink);
  border-radius: 30px;
  border: 4px solid var(--text-dark);
  z-index: -1;
}

/* Image Circle */
.image-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid var(--text-dark);
  overflow: hidden;
  background: var(--card-white);
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name and Title */
.image-box-text {
  text-align: center;
  color: white;
}

.image-box-name {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0px var(--text-dark);
}

.image-box-title {
  font-family: "Klee One", cursive;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2rem;
}

/* View Profile Button */
.view-profile-btn {
  background: transparent;
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  border: 3px solid white;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-profile-btn:hover {
  background: white;
  color: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Decorative Stars - 4-pointed star shapes */
.star-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

.star-decoration svg {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

.star-1 {
  top: -40px;
  left: -50px;
  width: 80px;
  height: 80px;
  animation: twinkle 2s ease-in-out infinite;
}

.star-2 {
  top: 40%;
  right: -50px;
  width: 60px;
  height: 60px;
  animation: twinkle 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.star-3 {
  bottom: 80px;
  left: -60px;
  width: 70px;
  height: 70px;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: 1s;
}

.star-4 {
  bottom: -30px;
  right: -40px;
  width: 50px;
  height: 50px;
  animation: rotate-star 8s linear infinite;
}

/* Sticker Elements - Circular badges */
.sticker {
  position: absolute;
  background: var(--card-white);
  border: 4px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.sticker-sun {
  top: -35px;
  left: 50px;
  width: 70px;
  height: 70px;
  background: var(--primary-yellow);
  animation-delay: 0s;
}

.sticker-sun::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--primary-yellow) 60%,
    transparent 60%
  );
}

.sticker-circle {
  bottom: 100px;
  left: -40px;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  animation-delay: 1.5s;
}

.sticker-dot {
  bottom: -30px;
  right: 80px;
  width: 55px;
  height: 55px;
  background: var(--primary-pink);
  animation-delay: 2.5s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes rotate-star {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

#about {
  background: var(--bg-blue);
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--card-white);
  text-shadow: 4px 4px 0px var(--text-dark);
  text-transform: uppercase;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-content-bio {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-image {
  flex-shrink: 0;
  width: 350px;
}

.about-image-wrapper {
  background: var(--card-white);
  border-radius: 20px;
  padding: 1rem;
  border: 4px solid var(--text-dark);
  box-shadow: 8px 8px 0px var(--primary-purple);
  width: 100%;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
}

.bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  background: var(--card-white);
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid var(--text-dark);
}

.experience {
  width: 100%;
}

.experience h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: var(--card-white);
  border-radius: 15px;
  border: 3px solid var(--text-dark);
  transition: transform 0.3s ease;
  cursor: default;
  align-items: center;
}

.exp-item:hover {
  transform: translateX(10px);
}

.exp-year {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.exp-role {
  font-size: 1.1rem;
}

.about-content-skills {
  width: 100%;
}

.about-content-skills h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}

.skills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.skill-card {
  background: var(--card-white);
  padding: 1.5rem;
  border-radius: 20px;
  border: 4px solid var(--text-dark);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.skill-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 8px 8px 0px var(--primary-pink);
}

.skill-card:nth-child(2):hover {
  box-shadow: 8px 8px 0px var(--primary-yellow);
}

.skill-card:nth-child(3):hover {
  box-shadow: 8px 8px 0px var(--primary-blue);
}

.skill-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 0.5rem;
}

.skill-card h5 {
  font-family: "Unbounded", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
}

#works {
  background: var(--bg-yellow);
}

.works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.works-header h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-transform: uppercase;
  text-shadow: 4px 4px 0px var(--primary-blue);
}

.works-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.works-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.works-tabs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  font-family: "Unbounded", sans-serif;
  background: var(--card-white);
  border: 3px solid var(--text-dark);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.tab.active {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: 4px 4px 0px var(--text-dark);
}

.tab:hover {
  transform: translateY(-2px);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid var(--text-dark);
  box-shadow: 10px 10px 0px var(--primary-purple);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide svg {
  width: 100%;
  height: auto;
}

.project-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--card-white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--text-dark);
}

.project-info h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--primary-pink);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 2px solid var(--text-dark);
  font-weight: 600;
  cursor: default;
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: var(--card-white);
  border: 3px solid var(--text-dark);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

.carousel-btn:hover {
  transform: scale(1.1);
  background: var(--primary-yellow);
}

#services {
  background: var(--bg-purple);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--card-white);
  text-shadow: 4px 4px 0px var(--text-dark);
  text-transform: uppercase;
}

.services-header p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: var(--card-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 4px solid var(--text-dark);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 10px 10px 0px var(--primary-yellow);
}

.service-card:nth-child(2):hover {
  box-shadow: 10px 10px 0px var(--primary-pink);
}

.service-card:nth-child(3):hover {
  box-shadow: 10px 10px 0px var(--primary-blue);
}

.service-card:nth-child(4):hover {
  box-shadow: 10px 10px 0px var(--primary-green);
}

.service-card:nth-child(5):hover {
  box-shadow: 10px 10px 0px var(--primary-red);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-purple);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  border: 3px solid var(--text-dark);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-card p {
  line-height: 1.6;
  font-size: 1rem;
}

#contact {
  background: var(--bg-yellow);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-shadow: 4px 4px 0px var(--primary-blue);
  text-transform: uppercase;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--card-white);
  padding: 3rem;
  border-radius: 20px;
  border: 4px solid var(--text-dark);
  box-shadow: 8px 8px 0px var(--primary-purple);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-form {
  background: var(--card-white);
  padding: 3rem;
  border-radius: 20px;
  border: 4px solid var(--text-dark);
  box-shadow: 8px 8px 0px var(--primary-pink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 3px solid var(--text-dark);
  border-radius: 10px;
  background: var(--card-grey);
  color: var(--text-dark);
  font-family: "Klee One", cursive;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--primary-yellow);
}

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

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-purple);
  color: white;
  border: 3px solid var(--text-dark);
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0px var(--text-dark);
}

footer {
  background: var(--primary-black);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-section ul li a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 2px solid var(--text-dark);
  cursor: pointer;
}

.footer-social a:hover {
  transform: translateY(-3px) rotate(5deg);
  background: var(--primary-pink);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 1.5rem;
    width: 92%;
  }

  .nav-middle {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-middle.active {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    opacity: 1;
    pointer-events: all;
    background: var(--primary-red);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 4px 4px 0px var(--text-dark);
    z-index: 999;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .nav-middle.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-middle.active .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border: none;
    box-shadow: none;
  }

  .nav-middle.active .nav-links a.active {
    border: 1px solid;
    box-shadow: 4px 4px 0px var(--text-dark);
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 8rem 5% 4rem;
    min-height: auto;
  }

  #home {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 8rem 5% 6rem;
  }

  .home-content {
    max-width: 100%;
  }

  .home-content h1 {
    font-size: 3.5rem;
  }

  .button-group {
    justify-content: center;
  }

  .home-image,
  .image-box-container {
    width: 350px;
    height: 450px;
  }

  .retro-image-box {
    padding: 2rem 1.5rem;
    box-shadow: 8px 8px 0px var(--primary-yellow);
  }

  .retro-image-box::before {
    top: -6px;
    right: -6px;
  }

  .image-circle {
    width: 160px;
    height: 160px;
  }

  .image-box-name {
    font-size: 2rem;
    text-shadow: 2px 2px 0px var(--text-dark);
  }

  .image-box-title {
    font-size: 1.1rem;
  }

  .view-profile-btn {
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
  }

  /* Responsive Stars */
  .star-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -35px;
  }

  .star-2 {
    width: 50px;
    height: 50px;
    right: -35px;
  }

  .star-3 {
    width: 55px;
    height: 55px;
    left: -40px;
    bottom: 60px;
  }

  .star-4 {
    width: 40px;
    height: 40px;
    right: -25px;
    bottom: -20px;
  }

  /* Responsive Stickers */
  .sticker-sun {
    width: 55px;
    height: 55px;
    top: -25px;
    left: 40px;
  }

  .sticker-circle {
    width: 50px;
    height: 50px;
    left: -30px;
    bottom: 80px;
  }

  .sticker-dot {
    width: 45px;
    height: 45px;
    right: 60px;
    bottom: -20px;
  }

  .about-content-bio {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 400px;
  }

  .skills {
    grid-template-columns: repeat(3, 1fr);
  }

  .works-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  nav {
    top: 10px;
    width: 90%;
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .nav-middle {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-middle.active {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    opacity: 1;
    pointer-events: all;
    background: var(--primary-red);
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 4px 4px 0px var(--text-dark);
    z-index: 999;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .nav-middle.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-middle.active .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border: none;
    box-shadow: none;
  }

  .nav-middle.active .nav-links a.active {
    border: 1px solid;
    box-shadow: 4px 4px 0px var(--text-dark);
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 7rem 5% 3rem;
  }

  #home {
    padding: 7rem 5% 4rem;
    gap: 2.5rem;
  }

  .home-content h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px var(--primary-blue);
  }

  .home-content h3 {
    font-size: 1.2rem;
  }

  .home-content p {
    font-size: 1rem;
  }

  .download-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .home-image,
  .image-box-container {
    width: 100%;
    max-width: 300px;
    height: 380px;
  }

  .retro-image-box {
    padding: 1.5rem 1rem;
    box-shadow: 6px 6px 0px var(--primary-yellow);
  }

  .retro-image-box::before {
    top: -5px;
    right: -5px;
  }

  .image-circle {
    width: 130px;
    height: 130px;
    margin-bottom: 1.5rem;
  }

  .image-box-name {
    font-size: 1.6rem;
  }

  .image-box-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .view-profile-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Responsive Stars */
  .star-1 {
    width: 45px;
    height: 45px;
    top: -20px;
    left: -25px;
  }

  .star-2 {
    width: 35px;
    height: 35px;
    right: -20px;
  }

  .star-3 {
    width: 40px;
    height: 40px;
    left: -25px;
    bottom: 50px;
  }

  .star-4 {
    width: 30px;
    height: 30px;
    right: -15px;
    bottom: -15px;
  }

  .sticker-sun {
    width: 45px;
    height: 45px;
    top: -20px;
    left: 30px;
  }

  .sticker-circle {
    width: 40px;
    height: 40px;
    left: -20px;
    bottom: 60px;
  }

  .sticker-dot {
    width: 35px;
    height: 35px;
    right: 40px;
    bottom: -15px;
  }

  .about-header h2,
  .works-header h2,
  .services-header h2,
  .contact-header h2 {
    font-size: 2.5rem;
    text-shadow: 3px 3px 0px var(--primary-blue);
  }

  .about-image-wrapper {
    padding: 0.75rem;
    box-shadow: 6px 6px 0px var(--primary-purple);
  }

  .bio {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .exp-item {
    padding: 1rem;
  }

  .skills {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .skill-card {
    padding: 1rem;
  }

  .works-tabs {
    justify-content: center;
  }

  .tab {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .carousel {
    box-shadow: 6px 6px 0px var(--primary-purple);
  }

  .project-info {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
  }

  .project-info h4 {
    font-size: 1rem;
  }

  .project-info p {
    font-size: 0.9rem;
  }

  .carousel-controls {
    bottom: 1rem;
    right: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem 1.5rem;
    box-shadow: 6px 6px 0px var(--primary-purple);
  }

  .contact-form {
    box-shadow: 6px 6px 0px var(--primary-pink);
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .home-content h1 {
    font-size: 2rem;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .about-header h2,
  .works-header h2,
  .services-header h2,
  .contact-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .experience h4,
  .about-content-skills h4 {
    font-size: 1.3rem;
  }

  .works-text h3 {
    font-size: 1.5rem;
  }

  .works-text p {
    font-size: 1rem;
  }

  .home-image,
  .image-box-container {
    max-width: 280px;
    height: 380px;
  }

  .skills {
    grid-template-columns: repeat(2, 1fr);
  }
}
