/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Lora:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

html {
  background-image: url('coffee-shop-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}

body {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #333333; /* Dark Gray */
  line-height: 1.6;
  min-height: 100%;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Playfair Display', 'Lora', Georgia, serif;
  color: #3C2F2F; /* Chocolate Brown */
  margin-bottom: 0.5em;
}

/* Links */
a, .nav-link {
  color: #786C3B; /* Earthy Brown */
}

a:hover, a:focus,
.nav-link:hover, .nav-link:focus {
  color: #432B1A; /* Rich Brown */
}

/* Buttons */
button {
  background: #4A3728; /* Mocha */
  color: #F8F1E9; /* Off-White */
  border: none;
  padding: 8px 16px;
  border-radius: 5px; /* Slightly larger border-radius for softer look */
  cursor: pointer;
  font-family: 'Merriweather', Georgia, serif;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover,
button:focus {
  background-color: #786C3B; /* Earthy Brown */
}

/* Accent Color */
.accent-color {
  color: #964B00; /* Warm Brown */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #F5F5DC; /* Cream */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e7e7e7;
}

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

#user-menu {
    position: relative;
    display: inline-block;
}

#profile-pic-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.full-profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #D4A017; /* Gold border */
  display: block;
  margin: 0 auto 10px;
  object-fit: cover;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.step-number {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #007bff;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}

.step-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #007bff;
  opacity: 0.2;
  box-shadow: 0 0 0 10px #007bff;
}

.right-justified a:first-child {
  margin-right: 20px;
}
.dropdown-content a:hover {background-color: #f1f1f1}

#user-menu:hover .dropdown-content {
    display: block;
}