/* ===== BASE ===== */

body {
  margin: 0;
  background-color: #0e141c;
  color: #cfd8ff;
  font-family: Arial, sans-serif;
}

/* ===== LANGUAGE TOGGLE ===== */

.lang-toggle {
  position: fixed;
  top: 18px;
  right: 24px;
  background: #7aa2ff;
  color: #0e141c;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  z-index: 999;
}

/* ===== HEADER ===== */

.header {
  padding: 70px 60px 20px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ===== LEFT TEXT ===== */

.header-text {
  width: 65%;
}

.header-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 60px;
  margin: 0 0 6px;
  color: floralwhite;
}

.role {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7aa2ff;
  margin-bottom: 10px;
}

.header-text hr {
  width: 100%;
  height: 3px;
  background-color: #7aa2ff;
  border: none;
  margin: 10px 0;
}

.subtitle {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ===== RIGHT PROFILE ===== */

.header-image {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-image > img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #7aa2ff;
}

/* ===== PROFILE ICONS ===== */

.profile-icons {
  margin-top: 24px;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.profile-icons img {
  width: 52px;
  height: 52px;
  display: block;
}

.icon-link img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.icon-link:hover img {
  transform: translateY(-4px);
  filter: brightness(1.15);
}

/* ===== CONTENT ===== */

.content {
  padding: 10px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SECTION HEADER ===== */

.section-header {
  margin: 10px 0 24px;
}

.section-header h2 {
  font-size: 34px;
  color: #7aa2ff;
  margin-bottom: 6px;
}

.section-header hr {
  width: 100%;
  height: 3px;
  background-color: #7aa2ff;
  border: none;
}

/* ===== PROJECT GRID ===== */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== PROJECT CARD ===== */

.project-card {
  background: #111a26;
  border-radius: 10px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* ===== HOME CARD VIDEOS ===== */

.project-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ===== TEXT ===== */

.project-card h3 {
  margin: 14px 0 6px;
  color: floralwhite;
}

.genre {
  color: #7aa2ff;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */

.project-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #7aa2ff;
  color: #0e141c;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
}

.project-btn:hover {
  background: #91b2ff;
}

/* ===== PROJECT PAGE VIDEO ===== */

.project-video-wrap {
  width: 45%;
  margin: 0px 0 0; /* 🔥 FIXED GAP */
}

.project-video-wrap video {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1000px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-text,
  .header-image {
    width: 100%;
  }

  .header-text hr {
    width: 70%;
    margin: 10px auto;
  }

  .project-video-wrap {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* ===== EXPERIENCE / SKILLS ===== */

}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.skill-box {
  background: #7aa2ff;
  color: #0e141c;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(122, 162, 255, 0.45);
}
