/* ---------- Global Styles ---------- */
body {
  margin: 0;
  overflow: visible;
  font-family: "Thasadith", Verdana, Geneva, sans-serif;
  color: white;
  background-color: black;
}

.v3d-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

* { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

h1, h2, h3, p, blockquote {
  color: white;
  font-family: "Thasadith", Verdana, Geneva, sans-serif;
}

/* ---------- Layout ---------- */
.txt-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  text-align: center;
}

.txt-main-head {
  color: #fff;
  font-size: 48px;
  margin-top: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 1);
}
/* ---------- Profile image ---------- */
.profile-image-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.profile-image {
  width: 200px; /* adjust size as you like */
  height: auto;
  border-radius: 50%; /* makes it circular — remove if not desired */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Profile image hover effect */
.profile-link .cj-img {
  transition: 0.25s ease;
}

/* Swap to hover image and scale slightly */
.profile-link:hover .cj-img {
  content: url("media/ChristianJelen_Hover.png");
  transform: scale(1.05);   /* small zoom effect */
  box-shadow: 0 0 20px rgba(255,255,255,0.4); /* subtle glow */
  border-radius: 10px;      /* optional rounding */
}

/* ---------- Highlight image ---------- */
.highlight-image {
  width: 200px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: 0.25s ease;
}

/* Highlight button hover */
.highlight-link:hover img {
  content: url("media/Highlights_Hover.png");
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  border-radius: 10px;
  transition: 0.25s ease;
}



/* ---------- Description Section ---------- */
.description-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(0,0,0, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

.description {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
  text-align: left;
  margin-bottom: 20px;
}

/* ---------- Subhead ---------- */
.sub-head {
  margin-top: 50px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

/* ---------- Buttons ---------- */
.button-container {
  display: flex;
  justify-content: space-evenly; /* evenly spaces buttons */
  align-items: center;           /* vertically centers them */
  flex-wrap: wrap;               /* wraps if screen is narrow */
  margin-top: 40px;
  gap:20; /* optional, since space-evenly already handles spacing */
}


.action-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: white;
  color: black;
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-button:hover {
  background-color: #ddd;
  transform: translateY(-3px);
}

/* MODIFIED: Added to remove the underline from image buttons */
.image-button {
    text-decoration: none;
}
/* ---------- Responsive ---------- */
@media screen and (max-width: 768px) {
  .txt-main-head { font-size: 36px; }
  .description-container {
    margin: 30px 20px;
    padding: 20px;
  }
  .description { font-size: 16px; }
  .button-container { flex-direction: column; }
  .action-button { width: 200px; margin: 10px auto; }
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Thasadith";
  src: url('../0000/fonts/RobotoSerif-Bold.ttf') format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Thasadith";
  src: url('../0000/fonts/RobotoSerif-Light.ttf') format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* Reel button hover */
.reel-btn:hover img {
  content: url("media/Btn_Reel_Hover.png");
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* LinkedIn button hover */
.linkedin-btn:hover img {
  content: url("media/Btn_LinkedIn_Hover.png");
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* IMDb button hover */
.imdb-btn:hover img {
  content: url("media/Btn_Imdb_Hover.png");
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* CV button hover */
.Cv-btn:hover img {
  content: url("media/Btn_Cv_Hover.png");
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* Mail button hover */
.Mail-btn:hover img {
  content: url("media/Btn_Mail_Hover.png");
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}
