/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */
:root {
  --accent: #00d742;
  --bg-dark: #121920;
  --text-light: #abb2bf;
  --border-grey: rgba(65, 65, 65, 0.789);
}
* { margin: 0; padding: 0; box-sizing: border-box; }

/* =========================================================
   PAGE 1 / SLIDE 1 – INTRO / DIGITAL BUSINESS CARD
   ========================================================= */
.p1s1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.p1s1 .cursor { background-color: #c5c8c6; }
/* --- Profile photo --- */
.p1s1 .profile-photo-container {
  flex-shrink: 0;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.p1s1 .profile-photo {
  box-shadow: 0 0 75px rgba(255, 255, 255, 0.5);
  background-position: center;
  background-size: cover;
  width: 95%;
  height: 200px;
  border-radius: 10px 10px 1px 1px;
  object-fit: cover;
  /* TV-screen border effect */
  border-top: 15px solid var(--border-grey);
  border-left: 12px solid black;
  border-right: 15px solid black;
  border-bottom: 11px solid var(--border-grey);
}

/* =========================================================
   PAGE 1 / SLIDE 2 – CV + Contact
   ========================================================= */
.p1s2 {
  color: #ecf0f1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p1s2 .vocado-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.summary-container {
  display: flex;
  flex-direction: column;
  text-align: left;
  /* max-width: 600px; */
  height: 100%;
  width: 100%;
  padding: 2rem;
  background-color: rgba(30, 39, 46,0.93);
  /* background: linear-gradient(175deg, rgba(32, 191, 107,0.2), rgba(32, 191, 107,0.5)); */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.summary-header h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.summary-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 2rem;
}

.summary-skills {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 2.5rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.skill-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

/* Je moet hier je eigen iconen plaatsen in /img/ of /assets/ */
#icon-backend { background-image: url('https://placehold.co/50x50/ffffff/000000.svg?text=API'); }
#icon-database { background-image: url('https://placehold.co/50x50/ffffff/000000.svg?text=DB'); }
#icon-cloud { background-image: url('https://placehold.co/50x50/ffffff/000000.svg?text=Cloud'); }

.skill-item span {
  font-size: 0.8rem;
  color: #bdc3c7;
}

.cv-button {
  font-size: 13px;
  display: inline-block;
  background-color: rgba(106, 176, 76,1.0);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cv-button:hover {
  background-color: rgba(106, 176, 76, 0.768);
  transform: translateY(-2px);
}

/* =========================================================
   PAGE 1 / SLIDE 3 – ??
   ========================================================= */

/* =========================================================
   PAGE 2 / SLIDE 2 – FULL-SCREEN VIDEO
   ========================================================= */

/* =========================================================
   PAGE 3 / SLIDE 1 – TERMINAL
   ========================================================= */

   /* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 768px) {
  .profile-photo-container { max-width: 400px; }
  .profile-photo {
    width: 90%;
    height: 320px;
    border-top-width: 10px;
    border-left-width: 8px;
    border-right-width: 10px;
    border-bottom-width: 8px;
  }
}

@media (max-width: 480px) {
  /* .p1s1 { padding: 1rem 0.5rem; } */
  .profile-photo {
    height: 200px;
    border-top-width: 8px;
    border-left-width: 6px;
    border-right-width: 8px;
    border-bottom-width: 6px;
  }
}
