
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  
  color: #333;
  background : url(../Assets/bg2.png) no-repeat center 0;
  background-size: cover;
  
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


.container {
  width: 100%;
  max-width: 1800px;
  margin: auto;
}



.header {
  background: transparent;
  color: #fff;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 80px;
  width: auto;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #00bcd4;
}


.text-box {
  display: inline-block;
  padding: 20px 30px;

 
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  border-radius: 18px;


  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  color: #fff8f8; 
}


.hero {
  height: 15vh;
  display: flex;
  align-items: center;
  background: transparent;
  color: #fff;
  margin-top: 100px;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
}

.hero-content {
  max-width: 600px;
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero p {
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}


.btn {
  display: inline-block;
  padding: 10px 50px;
  background: #f8f8f8;
  color: #000000;
  border-radius: 5px;
  transition: 0.3s;
  
}

.btn:hover {
  background: #f19408;
}

/* SECTION */
.section {
  padding: 60px;
}

.section h2 {
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.section p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.profile {
  display: flex;
  align-items: center;
  gap: 20px;

}

.profile-info p {
  text-shadow: 0px 0px 20px rgba(0,0,0,0.6);
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  padding: 10px 10px;
}

.profile-pict img {
  width: 200px;
  height: 200px;
  object-fit: cover;

  border-radius: 50%; 


  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.profile-pict {
  animation: float 3s ease-in-out infinite;
}

.profile-right table td {
  padding: 6px 12px;
}
.portfolio {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.profile-card {
  width: 200px;
  min-height: 260px;
   flex: 1;
}

.profile-info {
  max-width: 420px;
}

.biodata-item {
  width: 320px;
  color: white;
   min-height: 260px;
   flex: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.biodata-item p {
  margin-bottom: 10px;
}

.img-section {
  padding: 0 20px;
  margin-bottom: 40px;
}

.image img{
  width: 100%;
  max-width: 2000px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.feedback-section {
  padding: 20px 60px 60px;
}

.feedback-card {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.feedback-header h2,
.feedback-header p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.like-button,
.comment-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: 0.3s;
}

.like-button:disabled,
.comment-submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 130px;
  padding: 12px 18px;
  color: #111;
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.like-button:hover,
.like-button.liked {
  color: #fff;
  background: #e63946;
}

.like-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.comment-form {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  font: inherit;
  outline: none;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: rgba(255,255,255,0.72);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 3px rgba(0,188,212,0.2);
}

.comment-submit {
  justify-self: end;
  padding: 10px 22px;
  color: #111;
  background: #f8f8f8;
  border-radius: 8px;
  font-weight: 700;
}

.comment-submit:hover {
  background: #f19408;
}

.comment-list {
  display: grid;
  gap: 12px;
}

.comment-item {
  padding: 14px 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.comment-name {
  color: #fff;
  font-weight: 700;
}

.empty-comment {
  color: rgba(255,255,255,0.78);
  text-align: center;
}

.feedback-status {
  min-height: 22px;
  margin-top: 14px;
  color: #b8f7ff;
  text-align: center;
}

.feedback-status.is-error {
  color: #ffd1d1;
}




.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: #000000;
}

.contact-item img {
  width: 1em;
  height: 1em;
}


.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
  margin: 0;
}




@media (max-width: 1000px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    text-align: center;
    height: auto;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 20px;
  }

  .portfolio {
    flex-direction: column;
  }

  .feedback-section {
    padding: 20px;
  }

  .feedback-header {
    align-items: stretch;
    flex-direction: column;
  }

  .like-button,
  .comment-submit {
    width: 100%;
  }

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

  .profile-card,
  .biodata-item {
    width: 100%;
  }

  .profile-info {
    max-width: 100%;
  }

  .profile-pict img {
    width: 150px;
    height: 150px;
  }
  
  .image {
    width: 100%;
    justify-content: center;;
  }

  .contact-item {
    justify-content: center;
  }
}
