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

body {
  background-color: #121212;
  color: white;
}

header {
  background-color: #75b2e8;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #121212;
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  color: white;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #121212;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #121212;
  transition: all 0.3s ease;
}

/* Project Header */
.project-header {
  text-align: center;
  padding: 40px 20px;
}

.project-title {
  font-size: 3rem;
  margin-bottom: 40px;
}

.featured-image {
  max-width: 400px;
  margin: 0 auto;
}

.featured-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Project Description */
.project-description {
  padding: 40px 20px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.project-details {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

.details-column {
  flex: 1;
  padding: 0 20px;
  text-align: left;
}

.details-column:first-child {
  flex: 0 0 300px;
  border-right: 1px solid #444;
}

.details-column p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.illustrator {
  color: #e67e22;
}
.after-effect {
  color: #001475;
}
.photoshop {
  color: #6560ff;
}
.inDesign {
  color: #ff38eb;
}
.html {
  color: #ff8921;
}
.css {
  color: #663399;
}
.js {
  color: #fff600;
}
.link {
  color: #46b2ff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.link:hover {
  text-decoration: none; /* Remove the standard underline */
}

.link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #46b2ff; /* Same color as the text */
  transition: width 0.3s ease-in-out;
}

.link:hover::after {
  width: 100%;
}
/* Project Gallery */
.project-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background-color: #222;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Additional Project Section */
.additional-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.billboard-image {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 60px;
    left: 0;
    flex-direction: column;
    background-color: #75b2e8;
    width: 100%;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    padding: 20px 0;
    opacity: 0;
    pointer-events: none;
  }

  nav ul.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  nav ul li {
    margin: 15px 0;
  }

  .project-title {
    font-size: 2.2rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-details {
    flex-direction: column;
  }

  .details-column {
    padding: 20px;
  }

  .details-column:first-child {
    border-right: none;
    border-bottom: 1px solid #444;
    text-align: left;
  }
}
