/* ----- ----- ----- ----- ----- BODY SECTION ----- ----- ----- ----- ----- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #F8F6FB;
  margin: 0;
  padding: 0;
}

/* ----- ----- ----- ----- ----- HERO-IMAGE SECTION ----- ----- ----- ----- ----- */

.hero-image {
  background-image: url("images/SarahMartin3.jpg");
  background-size: cover;
  background-position: 70% center;

  width: 100%;
  min-height: 100vh;
  position: relative;
}

.hero-logo-img {
  width: clamp(150px, 30vw, 500px);
  height: auto;
}

.hero-logo {
  position: absolute;
  bottom: 5%;
  left: 5%;
}

/* ----- ----- ----- ----- ----- DESKTOP NAVIGATION SECTION ----- ----- ----- ----- ----- */

nav {
    background: transparent;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 25px 50px;
    margin: 0;

    align-items: right;
    justify-content: right;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  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;
  }

/* ----- ----- ----- ----- ----- COLOR PALETTE ----- ----- ----- ----- ----- */

/* #F8F6FB WHITE */
/* #060408 BLACK */

/* #7851A9 ROYAL PURPLE */

/* rgba(120, 81, 169, 0.5) 50% ROYAL PURPLE */


/* 3C2955 DARK ROYAL PURPLE */
/* #BBA8D4 LIGHT ROYAL PURPLE */

