body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #0f172a;
  color: #fff;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #020617;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #38bdf8;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.hero span {
  color: #38bdf8;
}

button {
  padding: 10px 20px;
  border: none;
  background: #38bdf8;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.1);
}

.about, .projects, .contact, .hobbies, .volleyball {
  padding: 60px 50px;
}

.about-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.about img {
  width: 220px;        /* mas malaki */
  height: 220px;
  object-fit: cover;   /* para hindi ma-stretch */
  border-radius: 20px; /* box style instead of circle */
  border: 4px solid #38bdf8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: 0.3s;
}

/* hover effect */
.about img:hover {
  transform: scale(1.05);
}

.project-card {
  background: #1e293b;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  border-top: 2px solid #38bdf8; /* bar sa taas */
  display: flex;
  justify-content: center; /* gitna */
  align-items: center;
}


.hobby-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hobby-item {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.hobby-item:hover {
  transform: translateY(-10px);
}

.volleyball-link {
  text-decoration: none;
  color: white;
  border: 2px solid #38bdf8;
}

.volleyball-link:hover {
  background: #38bdf8;
  color: #000;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
  max-width: 400px;       /* limit sa lapad */
  margin: 0 auto;          /* center horizontally */
  padding: 20px;
  text-align: center;       /* CENTER the text */
}

.contact-info a {
  color: #38bdf8;
  text-decoration: none;
}

.contact-info i {
  margin-right: 10px;
}

.contact-info p {
  transition: 0.3s;
}

.contact-info p:hover {
  transform: translateX(10px);
}

.hobby-item {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  transition: 0.4s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: white;
}

.hobby-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: #38bdf8;
  color: #000;
}

/* Gallery Cards for visiting & sunset pages */
.gallery-card {
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.back-link {
  color: white; /* white text */
  text-decoration: none;
  margin-left: 50px;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.back-link:hover {
  color: #38bdf8;
  box-shadow: 0 0 10px #38bdf8, 0 0 20px #38bdf8;
}

/* CLICK EFFECT */
.back-link:active {
  transform: scale(0.95);
  box-shadow: 0 0 25px #38bdf8;
}

.volley-about {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.volley-about img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #38bdf8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.volley-about img:hover {
  transform: scale(1.05);
}

/* Volleyball Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
  cursor: pointer;
}

/* hover animation */
.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* awards list style */
.project-card ul {
  padding-left: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}