@import url("https://fonts.googleapis.com/css2?family=Boldonse&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #f8f8ec;
  overflow-x: hidden;
}

:root {
  --yellow: #efc21e;
  --orange: #f79645;
  --pink: #ffe8c2c6;
  --light-blue: #2d52a0;
  --red: #df131f;
  --neon-pink: #ff007f;
  --electric-blue: #00e5ff;
  --black: #0d0d0d;
  --soft-purple: #9b59b6;
  --light-cyan: #81d4fa;
  --cream: #ffccbc;
  --slate: #2c3e50;
  --light-emerald: #2ecc71;
  --cloudy-white: #ecf0f1;
}

/* HEader*/
.hero {
  padding: 100px 40px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url(../portfolio-imgs/banner/PC-ABout-me.png) ;
  background-position: left center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-background {
  position: absolute;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #efc21e, #f79645);
  opacity: 0.8;
  background-size: cover;
  background-position: center;

}
.hero-sticker {
  width: 600px !important;
  height: 600px !important;
  display: block;

}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-content {

  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  color: #0d0d0d;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideInLeft 0.8s ease-out;
}

.hero-subtitle {
  font-size: 28px;
  color: #0d0d0d;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-sticker {
  width: 300px;
  height: auto;
  animation: bounce2 3s ease-in-out infinite;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* HEader */
.intro {
  padding: 80px 40px;
  background-color: black;
  position: relative;
}

.intro-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 40px;
  align-items: center;
}

.intro-content {
  grid-column: 2;
}

.intro-content h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;

  transition: 0.5s ease;
}

.intro-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  transition: 0.5s ease;
}

.intro-sticker{
  height: 400px;
  width: auto;
}

.intro-content h2:hover,p:hover{
  color: var(--neon-pink);
  transition: 0.5s ease;
    cursor: pointer;

}

.intro-sticker.left {
  grid-column: 1;
  /* margin-left: -100px;
  margin-top: -250px; */

  
}

.intro-sticker.right {
  grid-column: 3;
  bottom: 0;


}

/* ===== SKILLS SECTION ===== */
.skills {
  padding: 100px 40px;
  text-align: center;

  background:
    /* linear-gradient(
      0deg,
      rgba(255, 15, 207, 0.61),
      rgba(253, 187, 45, 0.79)
    ), */ 
  linear-gradient(90deg, var(--yellow), var(--orange), var(--pink)),

    url('../portfolio-imgs/banner/about-banner2.jpg');
  background-repeat: no-repeat;
  background-position: right center;
}
.skills h2 {
  font-size: 48px;
  color: #0d0d0d;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink));
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.skill-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.skill-card h3 {
  font-size: 24px;
  color: #0d0d0d;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.skill-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.skill-sticker {
  width: 80px;
  height: auto;
  opacity: 0.6;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.portfolio-preview {
  background-color: #fff;
  padding: 100px 40px;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}

.portfolio-sticker {
  width: 200px;
  height: auto;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.portfolio-content h2 {
  font-size: 42px;
  color: #0d0d0d;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.portfolio-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(247, 150, 69, 0.3);
}



.cta-section {
  background: linear-gradient(135deg, #2d52a0 0%, #00e5ff 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-sticker {
  position: absolute;
  width: 250px;
  height: auto;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
  0%,
  100% {
    transform: translateY(-50%) rotate(-5deg);
  }
  50% {
    transform: translateY(-50%) rotate(5deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-content h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
}

.cta-button.primary {
  background: white;
  color: #2d52a0;
  border: 2px solid white;
}

.cta-button.primary:hover {
  background: transparent;
  color: white;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 30px;
    min-height: 60vh;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-sticker {
    width: 200px;
  }

  .intro-container {
    grid-template-columns: 1fr;
  }

  .intro-sticker {
    display: none;
  }

  .intro-content h2 {
    font-size: 32px;
  }

  .skills h2,
  .values h2,
  .cta-content h2 {
    font-size: 36px;
  }

  .portfolio-container {
    grid-template-columns: 1fr;
  }

  .portfolio-sticker {
    width: 150px;
    margin: 0 auto;
  }

  .cta-sticker {
    width: 150px;
    right: -30px;
    opacity: 0.5;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}


.values {

  background: linear-gradient(90deg, var(--yellow), var(--orange) , var(--pink));
  padding: 100px 40px;
  text-align: center;
}

.values h2 {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}





.value p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  max-width: 900px;
  margin: 50px auto 0; 
  justify-content: center;
}

.skill {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 15px 20px;
  border-radius: 12px;

  background: transparent;
  border: 1px solid var(--red);

  color: var(--red);
  cursor: pointer;

  transition: 0.3s;
}

.skill i {
  font-size: 24px;
}

.skill:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink);
  color: var(--neon-pink);
}