* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #1a1a1a;
  font-family: 'Nunito Sans', 'Work Sans', Arial, sans-serif;
  min-height: 100%;
}

/* @font-face {
  font-family: 'Chelsea Market';
  src: url('../fonts/Chelsea_Market,Jua,Roboto,Signika/Chelsea_Market/ChelseaMarket-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Jua';
  src: url('../fonts/Chelsea_Market,Jua,Roboto,Signika/Jua/Jua-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Chelsea_Market,Jua,Roboto,Signika/Roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Signika';
  src: url('../fonts/Chelsea_Market,Jua,Roboto,Signika/Signika/Signika-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
} */




/* Header/Nav */
header {
  width: 100%;
  padding-top: 22px;
  padding-right: 55px;
  box-sizing: border-box;
  min-height: 70px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  flex-wrap: wrap;
  position: relative;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}

.nav li a {
  text-decoration: none;
  font-family: 'Nunito Sans', 'Work Sans', Arial, sans-serif !important;
  color: #a4a29e;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
  padding: 0 7px;
}

.nav li a.active,
.nav li a:hover {
  color: #2e3739;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2e3739;
  border-radius: 2px;
}

/* Main Photo Section */
.photo-section {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 90px;
  margin-bottom: 25px;
  width: 100%;
}

.about-photo {
  max-width: 500px;
  height: auto;
  display: block;
  border: none;
  box-shadow: 0 2px 14px 1px #eee;
  background: #e8e8e7;
}

/* About/Bio text */
.about-text {
  margin: 35px auto 0 auto;
  max-width: 920px;
  text-align: justify;
  color: #1a1a1a;
  font-family: 'Work Sans', 'League Spartan', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.60;
  letter-spacing: 0.01em;
  padding-left: 16px;
  padding-right: 16px;
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  color: #a4a29e;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 28px;
}

.social {
  margin-top: 38px;
  margin-bottom: 6px;
}

.instagram-icon {
  width: 24px;
  height: 24px;
  opacity: 0.62;
  transition: opacity 0.18s;
  filter: grayscale(45%);
}

.instagram-icon:hover {
  opacity: 1;
  filter: none;
}

.copyright {
  margin-top: 0;
  letter-spacing: 0.02em;
  color: #727060;
}

footer li {
  list-style-type: none;
  margin-top: 10px;
}

.privacy {
  
  font-family: 'Nunito Sans', 'Work Sans', Arial, sans-serif;
  color: #74726f;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: color 0.15s;
  padding: 0 7px;
}


@media (max-width: 850px) {
  .about-photo { max-width: 98vw; }
  .about-text { font-size: 16px; }
  header { padding-right: 10px;}
  .nav ul { gap: 18px; }
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .burger {
    display: flex;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: #fafafa;
    border-top: 1px solid #ddd;
    gap: 16px;
  }

  .nav ul.open {
    display: flex;
  }

  .nav li {
    width: 100%;
  }

  .nav li a {
    padding: 10px 0;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .about-text { padding:10px; font-size: 14px;}
  .photo-section { margin-top: 60px;}
}

@media (max-width: 575px) {

  .nav li a {
    font-size: 14px;
  }

  .burger span {
    width: 20px;
    height: 2px;
  }
}

