
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;500;700&display=swap');

/* Base light mode styles */
html, body {
  background-color: #f8f8f6 !important;
  color: #1a1a1a !important;
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

body, .hero, .content, .tile, .navbar, footer, .contact-form input, .contact-form textarea, .contact-form button, . contact-form label {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-family: 'Playfair Display', serif;
}

.navbar nav a {
  color: #1a1a1a;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #d4af37;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: #121212;
}

.hero p {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.cta {
  background-color: #d4af37;
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.cta:hover {
  background-color: #b38e2d;
}

/* Value Props */
.value-props {
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  background-color: #f0f0ed;
  flex-wrap: wrap;
}

.tile {
  flex: 1;
  min-width: 250px;
  margin: 1rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-weight: 500;
}

/* Page Headers */
.page-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.page-header h1 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  color: #121212;
}

/* General Content */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1.1rem;
}

.content h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 2rem;
  color: #121212;
}

/* Quote Band */
.quote-band {
  background-color: #0d0d0d;
  color: #f8f8f6;
  padding: 3rem 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
}

/* Footer */
footer {
  background-color: #222 !important;
  color: #ccc !important;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.tagline {
  font-style: italic;
  margin-top: 0.5rem;
}

/* Contact Form Styling */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: 500;
  display: block;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.75rem;
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  display: block;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555555;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
  background-color: #ffffff;
  color: #1a1a1a;
}

.contact-form button.cta {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #0f0f0f !important;
    color: #f0f0f0 !important;
  }

  body, .hero, .content, .tile, .navbar, footer, .contact-form input, .contact-form textarea, .contact-form button {
    background-color: #1a1a1a !important;
    color: #f0f0f0 !important;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #aaaaaa;
  }

  .cta {
    background-color: #d4af37;
    color: #000;
  }

  .cta:hover {
    background-color: #b38e2d;
  }

  .quote-band {
    background-color: #f8f8f6;
    color: #121212;
  }

  footer a {
    color: #ffd700;
  }

.navbar,
.navbar nav a,
.hero h1,
.hero p,
.page-header h1,
.content,
.content h2,
footer,
footer a {
  color: #f0f0f0 !important;
}

.navbar {
  background-color: #1a1a1a !important;
}
  
}

/* Responsive */
@media (max-width: 768px) {
  .value-props {
    flex-direction: column;
    align-items: center;
  }

  .tile {
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
