
* {
  margin: 0;
  padding: 10;
  box-sizing: border-box;
  font-family:'Segoe UI', Arial, Helvetica, sans-serif;
}
body {
  background: #fff0f5;
  color: #444;
  line-height: 1.5;
 font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}
header {
  background: #ffb6c1;
  padding: 15px 0;
  position: sticky;
  top: 0;
}

nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav ul li a:hover {
  color: black;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #ffc0cb, #ffd6e0);
  color: #5a2a2a;
}
.hero h1 {
  font-size: 36px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  color: #555;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  width: 90%;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  color: #c71585;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.4);
  margin-bottom: 20px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.4);
}

.project-card:hover {
  transform: translateY(-5px);
  background: #fff5f7;
}

#contact a {
  color: #ff69b4;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}
.card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 20px;
}

.card img {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.card img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}
.contact-icons .icon {
  width: 150px;
  height: 50px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-icons .icon img {
  width: 150px;
  height: 30px;
  object-fit: contain;
}

.contact-icons .icon span {
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.contact-icons .icon:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.contact-icons .icon:nth-child(1):hover {
  background: rgba(255, 200, 200, 0.6);
}

.contact-icons .icon:nth-child(2):hover {
  background: rgba(200, 220, 255, 0.6);
}

.contact-icons .icon:nth-child(3):hover {
  background: rgba(255, 200, 240, 0.6);
}
.contact-icons .icon {
  position: relative;
}

.contact-icons .icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 70px; /* taas ng tooltip */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #333;
  color: #fff;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.contact-icons .icon::before {
  content: "";
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #333;
  opacity: 0;
  transition: 0.25s ease;
}

.contact-icons .icon:hover::after,
.contact-icons .icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.logo {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff9eb5, #ff6f91);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo span {
  color: white;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}
.project-card img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}