
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}


header {
  background-color: transparent;
  padding: 30px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar .logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
}


.portfolio-hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url("assets/port.jpg") center center / cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 60px 20px;
}

.portfolio-hero .hero-content {
  max-width: 800px;
  z-index: 2;
}

.portfolio-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 25px;
  color: white;
}

.portfolio-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
}


.portfolio-skills {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: linear-gradient(145deg, #f4e9e7 0%, #e9d6d2 50%, #f7eeec 100%);
  color: #000;
  text-align: center;
  padding: 80px 0;
}

.portfolio-skills > * {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.skill-col, .skill-col h3, .skill-col li { color: #000; }

.skill-col ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}


.portfolio-packages {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: linear-gradient(135deg, #f7ecea 0%, #e7d5d1 50%, #f3e1de 100%);
  color: #000;
  text-align: center;
  padding: 80px 20px;
}

.portfolio-packages h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.package {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #d9c4c0;
  transition: all 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package h3 {
  margin-bottom: 15px;
  color: #000;
}

.package p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}


.portfolio-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

.portfolio-projects h2 {
  text-align: center;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.project-card img.project-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card h3 {
  margin-bottom: 10px;
}

.project-card p {
  color: black;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.project-card .tech {
  font-size: 0.85rem;
  color: black;
  margin-bottom: 15px;
}

.project-card a {
  display: inline-block;
  padding: 8px 16px;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.project-card a:hover {
  background: #34495e;
  border: 2px solid  #5C7C8A;
}


footer {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url("assets/port.jpg") center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 0;
  
}
footer h2 {
  color: white;
  text-decoration: none;
}

footer a {
  color: #f0f0f0;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  font-size: 1.5rem;
  justify-content: center;
}


@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .navbar .logo {
    width: 70px;
    height: 70px;
  }

  .nav-links {
    flex-direction: row;
    gap: 20px;
  }

  .portfolio-hero {
    height: 100vh;
    padding: 40px 20px;
    background-position: center;
  }

  .portfolio-hero h1 {
    font-size: 2rem;
  }

  .portfolio-hero p {
    font-size: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/*Reviews*/
.portfolio-reviews {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  color: #000;
  text-align: center;
  padding: 80px 20px;
}

.portfolio-reviews h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e0d0cc;
  transition: all 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: 600;
  color: #000;
  text-align: right;
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
