* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #F5F3F0;
  color: #3A3A3A;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.font-sans {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #F5F3F0;
}

::-webkit-scrollbar-thumb {
  background: #D4CFC9;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A8998F;
}

/* Photo styling */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}
