/* GENERAL */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 40px;
  flex-wrap: wrap;
}

/* PROFILE */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  color: #007acc;
}

/* NAVIGATION BAR */
.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-grow: 1;
}

.nav-links li a {
  text-decoration: none;
  color: #005f99;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #e8f3ff;
  white-space: nowrap;
}

.nav-links li a:hover {
  background-color: #007acc;
  color: white;
}

.nav-links li a.active {
  background-color: #005f99;
  color: white;
  font-weight: bold;
}


/* PAGE */
.page-container {
  display: flex;
  min-height: calc(100vh - 80px);
}

.page-left {
  flex: 1;
  background-color: #d6ebff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-photo {
  width: 70%;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-right {
  flex: 2;
  background-color: #f4f7fb;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-right h1 {
  color: #1e90ff;
  margin-bottom: 10px;
}

.page-right h2 {
  color: #0066cc;
  margin-top: 40px;
}

.page-video {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background-color: #eee;
  border-top: 1px solid #ccc;
  margin-top: 40px;
}

