/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f5f5f5;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* About Me Section */
.about-me {
  margin: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Gallery Links */
.gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px;
}

.gallery-links a {
  padding: 15px 25px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.gallery-links a:hover {
  background: #0056b3;
}

/* Gallery Images */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}

.gallery-container img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Enlarged Image */
#enlarged-image-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#enlarged-image-container img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 15px;
  background: #fff;
  color: #333;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
