/* ------------------------
   RESET + BASE
------------------------- */
@font-face {
  font-family: 'MyGameFont';
  src: url('fonts/LuckiestGuy-Regular.ttf') format('truetype');
}

body {
  font-family: 'MyGameFont', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff0066;
  text-shadow: 0 0 10px #ff0066;
  text-align: center;
}

/* ------------------------
   HERO (Landing Screen)
------------------------- */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #0f0f0f, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.hero h1 {
  font-size: 3rem;
  color: #00ffcc;
  text-shadow: 0 0 20px #00ffcc;
}

.hero p {
  margin: 15px 0;
  font-size: 1.2rem;
  color: #bbb;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00ffcc;
  color: #0d0d0d;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00ffcc;
}

/* ------------------------
   INTRO SECTION
------------------------- */
.intro-section {
  background: radial-gradient(1200px 600px at 70% 10%, rgba(0, 255, 204, 0.08), transparent),
    radial-gradient(1000px 500px at 10% 90%, rgba(255, 0, 102, 0.07), transparent),
    #0e1117;
}

.intro-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 100px) clamp(16px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(320px, 580px) 1fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}

.intro-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-badge {
  display: inline-block;
  background: #00ffcc;
  color: #0b0f14;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.intro-name {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
  animation: textGlow 2s infinite alternate;
}

.intro-role {
  font-size: clamp(18px, 2.4vw, 28px);
  color: #ff4da6;
  text-shadow: 0 0 18px rgba(255, 0, 102, 0.6);
  margin-bottom: 20px;
}

/* Contact Info */
.info-list {
  list-style: none;
  margin: 10px 0 22px 0;
  width: 100%;
  max-width: 520px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.info-list .icon {
  width: 32px;
  text-align: center;
  font-size: 18px;
}

.info-list a {
  color: #3aa0ff;
  text-decoration: none;
}

.info-list a:hover {
  text-decoration: underline;
}

/* Socials */
.social-row {
  display: flex;
  gap: 18px;
}

.social-row a {
  font-size: 22px;
  color: #cbd5e1;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s, text-shadow 0.2s;
}

.social-row a:hover {
  transform: translateY(-2px);
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc;
}

/* Profile Photo */
.intro-right {
  display: flex;
  justify-content: center;
}

.avatar-ring {
  width: clamp(200px, 28vw, 320px);
  height: clamp(200px, 28vw, 320px);
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(closest-side, rgba(0, 255, 204, .25), transparent 70%);
  box-shadow: 0 0 30px rgba(0, 255, 204, .4);
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #3a3f46;
}

/* Responsive Intro */
@media (max-width: 900px) {
  .intro-shell {
    grid-template-columns: 1fr;
  }

  .intro-right {
    justify-content: flex-start;
  }

  .avatar-ring {
    margin-top: 20px;
  }
}

/* ------------------------
   ABOUT + SKILLS
------------------------- */
.about-section {
  padding: 80px 10%;
  background: #0f0f0f;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  max-width: 600px;
  text-align: justify;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: left;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Sub-heading */
.skills-heading {
  font-size: 1.8rem;
  text-align: left;
  margin: 40px 0 20px;
}

/* Skills Pills */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills-list span {
  padding: 8px 16px;
  background: #111;
  color: #ff00ff;
  border: 1px solid #ff00ff;
  border-radius: 20px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.skills-list span:hover {
  background: #ff00ff;
  color: white;
}

/* ------------------------
   PROJECTS
------------------------- */
.projects-section {
  padding: 60px 20px;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  /* responsive */
}

.project-image {
  flex: 1;
  min-width: 280px;
  margin-left: 60px;
  margin-right: 60px;
}

.project-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.project-info {
  flex: 2;
  text-align: left;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.project-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gradient {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
}

/* ------------------------
   CONTACT
------------------------- */
/* Contact Section */
.contact-section {
  padding: 80px 10%;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* Left Side */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #6a11cb;
  /* purple gradient start */
}

/* Right Side (Form) */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #f9fafc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 6px rgba(106, 17, 203, 0.2);
}

.btn-gradient {
  background: linear-gradient(45deg, #6a11cb, #ff6a00);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(106, 17, 203, 0.3);
}


/* ------------------------
   FOOTER
------------------------- */
footer {
  background: #111;
  padding: 15px;
  text-align: center;
  color: #777;
}

/* ------------------------
   ANIMATIONS
------------------------- */
@keyframes textGlow {
  from {
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
  }

  to {
    text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}