/* --- Global Styles --- */
body {
  font-family: 'Montserrat', 'Cormorant Garamond', serif; /* Luxury font combination */
  background-color: #f9f5f0; /* Soft cream background */
  color: #333333; /* Deep charcoal for text */
  line-height: 1.8;  /* Generous line height */
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased; /* Smooth text rendering */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header Styles --- */
header {
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #8B7355; /* Rich gold/bronze */
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

header h1:hover {
  color: #6B5B45; /* Darker gold */
}

header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

header nav ul li {
  margin-left: 2.5rem;
}

header nav ul li a {
  color: #555555;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #8B7355; /* Gold color */
}

header nav ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #8B7355;
  transition: width 0.3s ease;
}

header nav ul li a:hover:after,
header nav ul li a.active:after {
  width: 100%;
}

/* --- Main Content Styles --- */
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

main .bg-white {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  padding: 4rem;
  width: 100%;
  max-width: 800px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

main .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

main h1 {
  color: #5D432C; /* Deep brown */
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}

main p {
  color: #444444;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

main ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}

main ul li {
  color: #444444;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.75rem;
}

main ul li:before {
  content: '•';
  color: #8B7355; /* Gold bullet */
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

main form {
  margin-bottom: 0;
}

/* --- Form Styles --- */
form button {
  background-color: #8B7355;
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

form button:hover {
  background-color: #6B5B45;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

form button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

input[type="text"],
input[type="password"],
textarea {
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid #e0d6c8; /* Warm gray */
  margin-bottom: 1.75rem;
  width: 100%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: none;
  background-color: #fcfaf7;
  font-family: 'Montserrat', sans-serif;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: #8B7355;
  box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.2);
  background-color: #ffffff;
}

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

label {
  display: block;
  margin-bottom: 0.75rem;
  color: #5D432C;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.bg-blue-100 {
  background-color: #f0f4f8;
  border-left: 4px solid #8B7355;
  color: #5D432C;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
  font-style: italic;
}

.bg-red-100 {
  background-color: #f9f0f0;
  border-left: 4px solid #c49e9e;
  color: #8c5e5e;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

.bg-gray-200 {
  background-color: #f5f3f0;
  border-left: 4px solid #d8d1c9;
  color: #6B5B45;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

/* --- Footer Styles --- */
footer {
  background-color: #2A2118; /* Deep brown */
  color: #d9d1c7; /* Warm light gray */
  padding: 3rem 0;
  margin-top: 5rem;
}

footer .container {
  text-align: center;
}

footer p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

footer a {
  color: #c9b18d; /* Light gold */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: #e5d5b5;
  border-bottom: 1px solid #e5d5b5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  header {
    padding: 1rem 0;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header nav ul {
    flex-direction: column;
    text-align: center;
  }
  
  header nav ul li {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  main .bg-white {
    padding: 2.5rem;
  }
}

/* --- Luxury Utility Classes --- */
.text-center { text-align: center; }
.font-serif { font-family: 'Cormorant Garamond', serif; }
.text-gold { color: #8B7355; }
.text-brown { color: #5D432C; }
.mt-6 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2.5rem; }
.bg-cream { background-color: #f9f5f0; }
.border-l-gold { border-left: 4px solid #8B7355; }
.p-6 { padding: 2rem; }
.rounded-sm { border-radius: 4px; }
.tracking-wide { letter-spacing: 0.5px; }
.uppercase { text-transform: uppercase; }
.text-xl { font-size: 1.5rem; }
.leading-relaxed { line-height: 1.75; }
