/* oliver-Inspired Contact Page Styles */
.oliver-contact {
  background: #f7f7f7;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 0 4rem 0;
}

.oliver-contact-card {
  max-width: 800px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(255, 197, 0, 0.2);
  padding: 3.5rem 2.5rem 3rem 2.5rem;
  margin: 0 auto;
}

.oliver-contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.oliver-contact-title {
  font-family: 'Georgia', serif;
  font-size: 2.7rem;
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: -0.03em;
}

.oliver-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.oliver-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oliver-form-group label {
  font-family: 'Georgia', serif;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 500;
}

.oliver-input {
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: 1.5px solid var(--primary-color);
  background: #f7f7f7;
  color: #222;
  font-size: 1.1rem;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  transition: border 0.2s, box-shadow 0.2s;
}

.oliver-input:focus {
  outline: none;
  border: 1.5px solid var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 197, 0, 0.15);
}

.oliver-textarea {
  min-height: 120px;
  resize: vertical;
}

.oliver-contact-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  align-self: unset;
  margin-top: 0.5rem;
}

.oliver-contact-btn:hover {
  background: #fff;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.oliver-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

.oliver-message.success {
  background: #2ea44f22;
  color: #2ea44f;
  border: 1px solid #2ea44f;
}

.oliver-message.error {
  background: #ff555522;
  color: #ff5555;
  border: 1px solid #ff5555;
}

.oliver-contact-info {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #ff450033;
}

.oliver-contact-info h2 {
  font-family: 'Georgia', serif;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.oliver-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.oliver-contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f7f7f7;
  border-radius: 8px;
  color: #222;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.oliver-contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 197, 0, 0.2);
}

.oliver-contact-link i {
  font-size: 1.3rem;
  color: var(--primary-color);
  width: 24px;
  text-align: center;
}

.oliver-contact-link span {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .oliver-contact-card {
    padding: 2rem 1.5rem;
    margin: 0 auto;
  }
  
  .oliver-contact-title {
    font-size: 2.2rem;
  }

  .oliver-contact {
    padding: 5rem 1rem 3rem 1rem;
  }
}

@media (max-width: 600px) {
  .oliver-contact {
    padding: 4.5rem 0.5rem 2rem 0.5rem;
  }
  
  .oliver-contact-card {
    padding: 1.5rem 1rem;
    margin: 0 auto;
    max-width: 96vw;
    box-sizing: border-box;
  }
  
  .oliver-contact-title {
    font-size: 1.8rem;
  }
  
  .oliver-contact-btn {
    width: 100%;
    text-align: center;
  }
}

/* Contact Page Styles */
.main-content {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact {
  background: #F7F7E0;
  color: #222;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(255, 197, 0, 0.15);
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #FFC500;
  background: #FFFFF0;
  color: #222;
}
.contact-form button {
  background: #003AFF;
  color: #FFFFF0;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #FF4500;
  color: #FFFFF0;
}

/* Themed select dropdown for Contact section */
.contact-form select {
  background: #FFFFF0;
  color: #222;
  border: 1.5px solid #FFC500;
  border-radius: 6px;
  padding: 0.7rem 2rem 0.7rem 1rem;
  font-size: 1.1rem;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255, 197, 0, 0.15);
  appearance: none;
  outline: none;
}
.contact-form select:focus {
  border: 1.5px solid #003AFF;
  box-shadow: 0 0 0 2px #003AFF33;
}
.contact-form option {
  background: #F7F7E0;
  color: #222;
}

.contact-sample, .contact .card, .contact-sample-info {
  background: #F7F7E0;
  color: #222;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 197, 0, 0.15);
  padding: 1.5rem;
  margin-top: 2rem;
}

.quinn-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quinn-contact-btn {
  align-self: center;
}

.oliver-contact-form .oliver-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.oliver-contact-form .oliver-form-group.button-group {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
} 