@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Single:wght@100..900&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --font-bitcount: "Bitcount Grid Single", system-ui;
  --font-bricolage: "Bricolage Grotesque", sans-serif;
  --primary-gold: #FFD700;
  --primary-orange: #FFA500;
  --dark-blue: rgba(6, 34, 72, 0.9);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-bricolage);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
  color: rgb(255, 255, 255);
  justify-content: space-between;
  padding: 10px 20px;
  width: 70vw;
  max-width: 1200px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.header:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

#mypic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  transition: var(--transition-smooth);
}

#mypic:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-orange);
}

.namePicture {
  display: flex;
  align-items: center;
  gap: 10px;
}

.namePicture h2 {
  font-family: var(--font-bitcount);
  letter-spacing: 1px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.nav-links > li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  font-size: x-large;
  color: rgb(255, 255, 255);
  font-weight: 500;
  transition: var(--transition-smooth);
  display: block;
  padding: 5px 0;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #64b5f6;
}

.nav-links li a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(6, 34, 72, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  padding: 12px 20px;
  font-size: large;
  transition: var(--transition-smooth);
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background-color: rgba(100, 181, 246, 0.2);
  color: #64b5f6;
}

/*  HOMEPAGE  */
.homepage {
  background-image: url("../img/7bqP4V.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.homepage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 100px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}

.icons img {
  width: auto;
  height: 120px;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.3));
  transition: var(--transition-smooth);
  animation: bounceIn 0.8s ease-out;
}

.icons li:nth-child(1) img {
  animation-delay: 0.2s;
}

.icons li:nth-child(2) img {
  animation-delay: 0.4s;
}

.icons li:nth-child(3) img {
  animation-delay: 0.6s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.icons img:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0px 8px 16px rgba(255, 215, 0, 0.5));
}

.icons li:last-child img {
  animation: shake 2s infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-5px) rotate(-2deg); }
  50% { transform: translateX(5px) rotate(2deg); }
  75% { transform: translateX(-5px) rotate(-2deg); }
}

.text-content {
  text-align: center;
  color: white;
  font-family: var(--font-bitcount);
}

.subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 400;
  animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.title-side {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: var(--font-bitcount);
  animation: slideInLeft 0.8s ease-out 0.7s both;
}

.title-side:last-child {
  animation: slideInRight 0.8s ease-out 0.7s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-title {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.8s ease-out 0.9s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.adventure {
  font-size: 2.5rem;
  letter-spacing: 4px;
  font-weight: 400;
  margin-top: 10px;
  animation: fadeIn 1s ease-out 1.2s both;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ABOUT ME SECTION */
.aboutMe {
  min-height: 100vh;
  background-image: url("../img/7bqP4V.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  text-align: center;
  font-size: 4rem;
  color: var(--primary-gold);
  font-family: var(--font-bitcount);
  text-shadow: 
    4px 4px 0px #000,
    -2px -2px 0px #000,
    2px -2px 0px #000,
    -2px 2px 0px #000,
    6px 6px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 50px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA552 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 0 auto 60px auto;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg), inset 0 -5px 10px rgba(0, 0, 0, 0.2);
  border: 4px solid #8B4513;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.banner:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    inset 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange), var(--primary-gold));
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.banner-content {
  flex: 1;
}

.banner h2 {
  font-size: 3rem;
  color: #FFF;
  font-family: var(--font-bitcount);
  text-shadow: 
    3px 3px 0px #8B4513,
    -1px -1px 0px #8B4513,
    1px -1px 0px #8B4513,
    -1px 1px 0px #8B4513;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.intro-text {
  font-size: 1.2rem;
  color: #FFF;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.character-img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/*INFO SECTIONS */
.info-section {
  width: 100vw;
  padding: 80px 20px;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.card-header {
  padding: 0 0 30px 0;
  color: white;
  font-family: var(--font-bitcount);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.card-header h2 {
  font-size: 3rem;
  letter-spacing: 3px;
  text-shadow: 
    4px 4px 0px #000,
    -2px -2px 0px #000,
    2px -2px 0px #000,
    -2px 2px 0px #000,
    5px 5px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  color: var(--primary-gold);
  animation: fadeInDown 0.8s ease-out;
}

.card-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
  position: relative;
  z-index: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

.info-item {
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition-smooth);
}

.info-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.info-item h3 {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-family: var(--font-bitcount);
  text-shadow: 
    3px 3px 0px #000,
    -1px -1px 0px #000,
    1px -1px 0px #000,
    -1px 1px 0px #000,
    4px 4px 8px rgba(0, 0, 0, 0.7);
}

.location {
  font-size: 1.2rem;
  color: #87CEEB;
  margin-bottom: 5px;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.institution {
  font-size: 1.4rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.date {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 20px;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.details {
  list-style: none;
  padding-left: 0;
}

.details li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 1.2rem;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.details li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* SKILLS SECTION */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  margin: 0 auto;
  max-width: 1200px;
}

.skill-category {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition-smooth);
}

.skill-category:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.skill-category h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 25px;
  font-family: var(--font-bitcount);
  letter-spacing: 2px;
  text-shadow: 
    3px 3px 0px #000,
    -1px -1px 0px #000,
    1px -1px 0px #000,
    -1px 1px 0px #000,
    4px 4px 8px rgba(0, 0, 0, 0.7);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.skill-tag {
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 3px solid rgba(0, 0, 0, 0.3);
  cursor: default;
}

.skill-tag:hover {
  transform: translateY(-5px) scale(1.08);
}

.skill-tag.legendary {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  animation: glow 2s ease-in-out infinite;
  border-color: #B8860B;
}

.skill-tag.epic {
  background: linear-gradient(135deg, #9B59B6, #8E44AD);
  color: #FFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-color: #6C3483;
}

.skill-tag.rare {
  background: linear-gradient(135deg, #3498DB, #2980B9);
  color: #FFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-color: #1F618D;
}

@keyframes glow {
  0%, 100% { 
    box-shadow: 
      0 6px 12px rgba(0, 0, 0, 0.5), 
      0 0 20px rgba(255, 215, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% { 
    box-shadow: 
      0 6px 12px rgba(0, 0, 0, 0.5), 
      0 0 35px rgba(255, 215, 0, 0.9),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* PROJECTS SECTION  */
.project-item {
  margin-bottom: 50px;
  padding: 35px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition-smooth);
}

.project-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.project-header h3 {
  font-size: 2rem;
  color: var(--primary-gold);
  font-family: var(--font-bitcount);
  text-shadow: 
    3px 3px 0px #000,
    -1px -1px 0px #000,
    1px -1px 0px #000,
    -1px 1px 0px #000,
    4px 4px 8px rgba(0, 0, 0, 0.7);
  flex: 1;
  min-width: 250px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.project-tag {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.4), rgba(33, 150, 243, 0.4));
  border: 2px solid #64b5f6;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #FFF;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  transition: var(--transition-smooth);
}

.project-tag:hover {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.6), rgba(33, 150, 243, 0.6));
  transform: scale(1.05);
}

.project-description {
  font-size: 1.3rem;
  color: #FFF;
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.project-link {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #B8860B;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.project-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
}

/* RESUME SECTION */
.resume-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 3px solid rgba(255, 215, 0, 0.4);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.resume-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.resume-icon {
  font-size: 6rem;
  margin-bottom: 30px;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.resume-title {
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-family: var(--font-bitcount);
  margin-bottom: 20px;
  text-shadow: 
    3px 3px 0px #000,
    -1px -1px 0px #000,
    1px -1px 0px #000,
    -1px 1px 0px #000,
    4px 4px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.resume-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.resume-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/*  FOOTER  */
.footer {
  background-image: url("../img/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 40px 40px 40px;
  color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 100px;
  position: relative;
  z-index: 1;
  align-items: start;
  padding-left: 30%;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.footer-pic:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-gold);
}

.footer-copyright {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-copyright p {
  margin-bottom: 15px;
}

.copyright-year {
  font-weight: 700;
  margin-top: 20px;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.social-icon.github-icon {
  padding: 12px;
}

.social-icon.github-icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.social-icon.github-icon:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary-gold));
}

.footer-nav {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  gap: 50px;
  padding-left: 0px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 35px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 1.5px;
}

.footer-column h4.mt-30 {
  margin-top: 35px;
}

.footer-column:first-child h4 {
  margin-top: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transition: var(--transition-smooth);
  padding-left: 0;
  line-height: 1.5;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-column ul li:hover,
.footer-column ul li a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .header {
    width: 85vw;
  }
  
  .footer-content {
    grid-template-columns: 300px 1fr;
    gap: 60px;
    padding-left: 30%;
  }
  
  .footer-nav {
    grid-template-columns: 130px 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-left: 20%;
  }
  
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-left: 0;
  }
  
  .footer-left {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .header {
    width: 95vw;
    padding: 10px 15px;
  }
  
  #mypic {
    width: 50px;
    height: 50px;
  }
  
  .namePicture h2 {
    font-size: 1.2rem;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .nav-links li a {
    font-size: large;
  }
  
  .main-title {
    font-size: 3rem;
  }
  
  .title-side {
    font-size: 1.2rem;
  }
  
  .adventure {
    font-size: 1.8rem;
  }
  
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px 60px 30px;
  }
  
  .character-img {
    width: 250px;
    transform: translateX(0);
  }
  
  @keyframes float {
    0%, 100% { 
      transform: translateY(0px) translateX(0); 
    }
    50% { 
      transform: translateY(-20px) translateX(0); 
    }
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .banner h2 {
    font-size: 2.5rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .card-header h2 {
    font-size: 2.2rem;
  }
  
  .info-section {
    padding: 60px 15px;
  }

  .resume-card {
    padding: 50px 30px;
  }

  .resume-title {
    font-size: 2rem;
  }

  .resume-icon {
    font-size: 5rem;
  }
  
  .footer {
    padding: 60px 20px 40px 20px;
  }
  
  .footer-content {
    padding-left: 0;
    margin: 0 auto;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column h4 {
    font-size: 0.95rem;
    margin-top: 25px;
  }
  
  .footer-column ul li {
    font-size: 0.85rem;
  }
  
  .footer-pic {
    width: 80px;
    height: 80px;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .project-header {
    flex-direction: column;
  }
  
  .project-header h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 30px 15px;
  }
  
  .footer-content {
    gap: 35px;
  }
  
  .footer-nav {
    gap: 25px;
  }
  
  .icons img {
    height: 80px;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .title-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .resume-card {
    padding: 40px 20px;
  }

  .resume-icon {
    font-size: 4rem;
  }

  .resume-actions {
    flex-direction: column;
    gap: 15px;
  }

  .resume-actions .project-link {
    width: 100%;
  }
}