/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ================= BODY BACKGROUND ================= */
body {
  background: url("background.jpg") center/cover fixed no-repeat;
  color: #e5e7eb;
  line-height: 1.7;
}

/* ================= SECTION BASE ================= */
.section {
  max-width: 1000px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* ================= PROFILE IMAGE ================= */
.profile-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ================= NAME & TAGLINE ================= */
.main-name {
  font-size: 2.5rem;
  font-weight: 700;
}

.tagline {
  font-size: 1.1rem;
  color: #cbd5e1;
  letter-spacing: 1px;
}

/* ================= GOLD HEADINGS ================= */
.section h2 {
  font-size: 2rem;
  margin-bottom: 45px;
  display: inline-block;

  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #fff3a0,
    #ffd700,
    #b8860b
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ================= SILVER SUB HEADINGS ================= */
.sub-heading {
  font-size: 1.4rem;
  margin: 40px 0 20px;

  background: linear-gradient(
    90deg,
    #9ca3af,
    #e5e7eb,
    #ffffff,
    #e5e7eb,
    #9ca3af
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silverShine 5s linear infinite;
}

@keyframes silverShine {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ================= MODERN MINIMAL BUTTONS ================= */
.btn,
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);

  color: #e5e7eb;

  transition: all 0.25s ease;
}

/* Hover */
.btn:hover,
.link-btn:hover {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.45);
  transform: translateY(-3px);
}

/* ================= SKILLS ================= */
.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.skills span {
  padding: 10px 22px;
  border-radius: 25px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

/* ================= PROJECT GRID ================= */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* ================= GLASS PROJECT CARD ================= */
.card {
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* ================= PROJECT TEXT ================= */
.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 18px;
}

.project-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 25px;
}

.project-tech {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

/* ================= LINKS SECTION ================= */
.links-section {
  max-width: 1000px;
  margin: 120px auto;
  padding: 40px 20px;
  text-align: center;
}

.links-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */
footer {
  margin-top: 120px;
  text-align: center;
  color: #94a3b8;
  padding-bottom: 40px;
}
