
/* ----- ----- ----- ----- ----- BODY SECTION ----- ----- ----- ----- ----- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  padding-top: 100px;
  background-color: #F8F6FB;
  margin: 0;
}

/* ----- ----- ----- ----- ----- DESKTOP NAVIGATION SECTION ----- ----- ----- ----- ----- */

nav {
  background: #7851A9;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 25px 50px;
  margin: 0;
  box-sizing: border-box;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
  
nav a {
  text-decoration: none;
  color: #F8F6FB;
  font-family: "Playfair Display" , serif;
  letter-spacing: 5px;
  font-size: 15px;
}
  
nav .contact {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: #F8F6FB;
  border: 3px solid #F8F6FB;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: bold;
}

/* ----- ----- ----- ----- ----- PORTFOLIO SECTION ----- ----- ----- ----- ----- */

#portfolio {
  align-items: center;
  justify-content: center;
}

#portfolio h1 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-size: 25px;
  color: #060408;
  text-align: center;
}

/* ----- PORTFOLIO FILTER ----- */

.portfolio-filters {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.portfolio-filters button {
  background: transparent;
  color: #060408;
  border: none;
  padding: 10px 15px;
  font-family: "Playfair Display", serif;
  font-weight: normal;
  font-size: 15px;
  cursor: pointer;
}

/* ----- PORTFOLIO CARD ----- */

.portfolio-card {
  background-color: #7851A9;
  padding: 25px;
  min-height: 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  color: #F8F6FB;
  text-align: center;
}

.portfolio-card a {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  color: #F8F6FB;
  text-decoration: none;
  text-align: center;
}

.portfolio-card p {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: #F8F6FB;
  text-align: center;
}

/* ----- PORTFOLIO CARD ----- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 50px;
}

/* ----- ----- ----- ----- ----- FOOTER SECTION ----- ----- ----- ----- ----- */

footer {
    background-color: #7851A9;
    padding: 50px; 
  }

footer h1 {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    color: #F8F6FB;
}

footer p {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    color: #F8F6FB;
}

footer .footer-info {
    columns: 2;
    display: flex;
    column-gap: 25px;
    padding: 25px 0px;
}

footer ul, li, a {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    color: #F8F6FB;
    text-decoration: none;

    list-style: none;
    padding: 0;
}

footer .copyright {
    text-align: center;
}