/* Haus Windham Website Styles */

/* Global Colors (Brand Palette)
   ------------------------------ */
:root {
  --primary: #3D493A;
  --secondary: #A66224;
  --text: #1D2621;
  --accent: #E7E6D7;
  --light-bg: #FDFCEE;
  --soft-bg: #F6F5E5;
  --white: #FFFFFF;
  --success: #219653;
}

/* Base Reset
   ---------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header
   ------ */
header {
  background: var(--primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

/* Layout
   ------ */
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 2rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Typography
   ---------- */
h1, h2, h3 {
  margin-top: 0;
  color: var(--primary);
}

p {
  font-size: 1rem;
}

/* Buttons
   ------- */
.button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: 0.2s ease;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Iframe Styling */
iframe {
  border-radius: 12px;
  background: var(--soft-bg);
}

/* Footer
   ------ */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--soft-bg);
  font-size: 0.9rem;
  margin-top: 3rem;
  color: var(--text);
}

/* Mobile Responsive
   ------------------ */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
  .card {
    padding: 1.5rem;
  }
  header {
    padding: 1.5rem;
  }
  iframe {
    height: 600px;
  }
}
