body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #111;
  color: gold;
  position: relative;
  flex-wrap: wrap;
  text-align: center;
}

.page-title {
  font-size: 1.5em;
  margin: 0;
  flex: 1 1 100%;
}

.home-button {
  position: absolute;
  left: 20px;
  background-color: #fff;
  color: #111;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 500px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-button {
    position: static;
    margin-bottom: 10px;
  }

  .page-title {
    text-align: left;
    font-size: 1.3em;
  }
}

.portfolio-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.portfolio-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.portfolio-item:hover {
    transform: translateY(-5px);
}
.image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.description {
    padding: 20px;
    flex: 1;
}
.description h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
}
.description p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: gold;
    margin-top: 40px;
}
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
.lightbox img {
    margin: 5% auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 20px #fff;
}
.lightbox:target {
    display: block;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    font-weight: bold;
}
.close:hover {
    color: #ccc;
}

.contact-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

.contact-section p {
  color: #555;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #111;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-btn i {
  transition: transform 0.3s ease;
  color: #111;
}

.contact-btn:hover i {
  transform: scale(1.1);
}

.contact-btn:hover {
  background-color: #333;
}

.contact-btn.whatsapp {
  background-color: #25d366;
}

.contact-btn.whatsapp:hover {
  background-color: #1ebd5a;
}

.contact-btn.gold {
  background-color: transparent;
  border: 2px solid gold;
  color: rgb(59, 51, 0);
}

.contact-btn.gold:hover {
  background-color: gold;
  color: #111;
}
