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

/* Body */
body {
  font-family: 'Nordeco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f9f9f9; /* very light off-white */
  color: #1a1a1a; /* dark gray for text */
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container */
main {
  max-width: 960px;
  margin: 4rem auto 3rem;
  padding: 0 2rem;
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-weight: 700;
  font-size: 1.75rem;
  color: #af9d4c; /* rich gold */
  letter-spacing: 1px;
  user-select: none;
}

/* Navigation List */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  position: relative;
  padding-left: 0;
}

/* Each top-level nav item */
nav ul li {
  position: relative; /* for dropdown positioning */
}

/* Main nav links */
nav ul li > a {
  color: #444444;
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
  display: inline-block; /* Ensure link area is correct */
}

/* Hover and active styles for main nav links */
nav ul li > a:hover,
nav ul li > a.active {
  color: #e0cd67; /* warm gold */
  background-color: #fff7d6;
}

/* Dropdown menu - hidden by default */
nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%; /* below the parent li */
  left: 0;
  background-color: #ffffff;
  padding: 0.5rem 0;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
}

/* Dropdown links */
nav ul li .dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #444444;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

/* Hover effect for dropdown links */
nav ul li .dropdown li a:hover {
  background-color: #f0e6a0; /* soft gold highlight */
  color: #af9d4c;
}

/* Show dropdown on hover */
nav ul li:hover > .dropdown {
  display: block;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
  color: #222222;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #af9d4c;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
  color: #666666;
}

/* Footer */
footer {
  margin-top: auto;
  background-color: #ffffff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #af9d4c;
  border-top: 1px solid #e6e6e6;
  user-select: none;
}

/* About page content */
.content-section {
  max-width: 800px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

.team {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(175, 157, 76, 0.15);
  flex: 1 1 300px;
  color: #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(175, 157, 76, 0.35);
}

.team-member h3 {
  color: #af9d4c;
  margin-bottom: 0.3rem;
}

.values-list {
  list-style: none;
  padding-left: 0;
  color: #444444;
  font-size: 1.1rem;
}

.values-list li {
  margin-bottom: 1rem;
}

.values-list strong {
  color: #af9d4c;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 4rem;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(175, 157, 76, 0.15);
  color: #1a1a1a;
  font-family: 'Nordeco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #af9d4c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #af9d4c;
  border-radius: 6px;
  font-size: 1rem;
  color: #222;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e0cd67;
  box-shadow: 0 0 6px #e0cd67aa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 1rem;
  background-color: #af9d4c;
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0cd67;
  color: #222;
}
