body {
  margin: 0;
  font-family: Playfair Display, sans-serif;
}

a {
  color: #818181;
}

hr {
  margin: 50px 0px 50px 0px;
  border-top: 1px #DDDDDD solid;
}

h1, h2, h3, h4, h5 {
  color: #616161;
}

.logo {
  font-size: 24px;
  letter-spacing: 0.03em;
}

.pf-font {
  font-family: Playfair Display, sans-serif !important;
}

.do-font {
  font-family: Display Open !important;
}

.clean-list {
  list-style-type: none;
  padding: 0px;
}

.content-container {
  color: #818181;
  min-height: 500px;
}

.page-content {
  padding: 2rem;
  background-color: rgba(0,0,0,0);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.page-text {
  font-family: Open Sans;
  font-weight: 300;
  line-height: 2;
}

.sub-header {
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  /*line-height: 30px;*/
}

.navbar {
  display: flex;
  justify-content: space-between;
  background: #333;
  padding: 1rem;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a:hover {
  border: 1px white solid;
  padding: 5px 14px 10px 14px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 5px 15px 10px 15px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hero {
  /*height: 75vw; /* 3/4 width ratio */
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero h1 {
  position: absolute;
  bottom: 165px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 5rem;
  text-shadow: 2px 2px 5px black;
  font-weight: 300;
}

.std-btn {
  padding: 14px 30px 14px 30px;
  border: #616161 1px solid;
  color: #616161;
  background-color: white;
}

.std-btn:hover {
  background-color: #EEEEEE;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #f4f4f4;
  margin-top: 2rem;
}

.col-wrapper {
  display: flex;
  flex-flow: wrap;
  width: 100%;
}

.col {
  flex: 50%;
}

.centered {
  text-align: center;
}

.spinner {
  border: 2px solid rgba(40, 200, 200, 0.5);
  border-top: 2px solid white;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#form-messages {
  margin-top: 1rem;
  font-weight: 600;
  transition: opacity 0.5s ease;
}

.form-success {
  color: #2c7a2c;
}

.form-error {
  color: #c53030;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #333;
    padding: 1rem;
  }
  .hamburger {
    display: block;
  }
  .nav-links.active {
    display: flex;
  }
}

/* ===== Contact Form ===== */
* {
  box-sizing: border-box;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  /*border-radius: 12px;*/
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

form div {
  margin-bottom: 1.5rem;
}

.form-long {
  width: 500px !important;
}

.form-short {
  width: 235px !important;
}

input::placeholder {
  color: #CCCCCC;
}

form label {
  display: block;
  font-family: Open Sans;
  font-size: 12px;
  font-weight: 300;
  color: #818181;
  margin-bottom: 10px;
}

label[required]:after {
  content: " *";
  color: red;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  /*border-radius: 8px;*/
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

form input[type="submit"], 
form button {
  padding: 14px 30px 14px 30px;
  border: #616161 1px solid;
  color: #616161;
  background-color: white;
  font-weight: 700;
}

form input[type="submit"]:hover,
form button:hover {
  background: #EEEEEE;
}

form ul {
  list-style: none;
  padding: 0;
}

form li.success {
  color: #2c7a2c;
}

form li.danger {
  color: #c53030;
}
