/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: montserrat, sans-serif;
}

body {
  margin: 0%;
}

.container{
  margin:0 5%;
}

/* Header home-profile*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  /* transparan */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: none;

}

.logo {
  display: flex;
  align-items: center;
  padding: 30px;
}

.logo img {
  width: 50px;
  margin-right: 10px;
  margin-left: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.text-logo {
  line-height: 1;
  letter-spacing: -3px;
  font-size: 14px;
  color: rgb(255, 255, 255);
}

nav {
  padding: 10px;
  background: transparent;
  padding-top: 20 px;
}

nav ul {
  list-style: none;
  margin-right: 50px;
  margin-left: 10px;
  display: flex;
  gap: 40px;
}

nav ul :hover {
  transform: scale(1.5);
  transition: filter 0.3s ease, transform 0.3s ease;

}

nav ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: -2px;

}

/* Header home-profile-member*/
header-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #9c0000, #202020);
  height: 80px;

}

.logo-member {
  display: flex;
  align-items: center;
  padding: 30px;
}

.logo-member img {
  width: 50px;
  margin-right: 10px;
  margin-left: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.text-logo-member {
  line-height: 1;
  letter-spacing: -3px;
  font-size: 14px;
  color: rgb(255, 255, 255);
}

navbar {
  padding: 10px;
  background: transparent;
  padding-top: 20 px;
}

navbar ul {
  list-style: none;
  margin-right: 50px;
  margin-left: 10px;
  display: flex;
  gap: 40px;
}

navbar ul :hover {
  transform: scale(1.5);
  transition: filter 0.3s ease, transform 0.3s ease;

}

navbar ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: -2px;

}

/* Main */
main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: transparent;
}

.member {
  display: flex;
  width: 100%;
}

.card {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.card img {
  width: 400px;
  height: 400px;
  margin: 10px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.card img:hover {
  filter: grayscale(0%);
  transform: scale(1.2);
}

.card img.no-hover-scale:hover {
  transform: none;
  filter: none;
}


.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('asset-profil/png/profile-homepage.png');
  background-size: cover;
  background-position: center;
  height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-text-container h1 {
  font-family: montserrat, sans-serif;
  letter-spacing: -13px;
  font-size: 10vw;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 0.85;
  text-transform: capitalize;
  text-align: center;
}

.logo-home img {
  height: 200px;
  position: relative;
}


.bg {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 800px auto;
  background-attachment: fixed;
}


.card .info {
  position: relative;
  left: 5px;
  letter-spacing: -3px;
  color: rgb(0, 0, 0);
}

.card .info h3 {
  font-size: 30px;
  line-height: 1.2;
}

.card .code {
  font-size: 80px;
  letter-spacing: -9px;
  font-weight: bold;
  position: static;
  bottom: 5px;
  right: 5px;
  color: rgb(0, 0, 0);
  opacity: 0.9;
}

/* Profile Card Layout */
.profile-card {
  display: flex;
  align-items: flex-start;

  gap: 30px;
  padding: 20px;
  background: rgba(240, 240, 240, 0.87);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-section {
  flex: 0 0 auto;
  position: relative;
}

.detail-section {
  flex: 1;
  padding: 20px;
}

.detail-section h2 {
  color: #b80000;
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid #b80000;
  padding-bottom: 5px;
}

.detail-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.detail-section ul li {
  margin-bottom: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #9c0000, #202020);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: -1px;
  font-family: 'Zen Dots', sans-serif;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: -1px;
  font-family: 'Zen Dots', sans-serif;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #f0f0f0;
  font-size: 14px;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .profile-card {
    flex-direction: column;
    align-items: center;
  }

  .image-section {
    flex: none;
  }
}