/* Reset and base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2b1b10; /* dark brown */
  background-color: #f4d4b7; /* light cream */
}

a {
  color: #602e17; /* deep brown */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container for fixed max width and horizontal padding */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* Section base styles */
.section {
  padding: 3rem 0;
  width: 100%;
}

/* Background variants */
.section-light {
  background-color: #f4d4b7; /* light cream */
  color: #2b1b10;
}

.section-dark {
  background-color: #2b1b10; /* dark brown */
  color: #f4d4b7;
}

.section-accent {
  background-color: #8fac6a; /* muted green */
  color: white;
  text-align: center;
}

/* Header */
header h1 {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 700;
}

header p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Headings */
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Etsy button */
.etsy-button {
  display: inline-block;
  background-color: #602e17; /* deep brown */
  color: #f4d4b7; /* cream */
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.etsy-button:hover,
.etsy-button:focus {
  background-color: #8fac6a; /* muted green */
  color: #2b1b10;
  outline: none;
}

/* Subscribe form */
.subscribe-form {
  display: flex;
  max-width: 400px;
  margin-top: 1rem;
}

.subscribe-form input[type="email"] {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid #8fac6a;
  border-right: none;
  border-radius: 30px 0 0 30px;
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: #602e17;
}

.subscribe-form button {
  background-color: #602e17;
  border: none;
  color: #f4d4b7;
  padding: 0 1.5rem;
  font-weight: 600;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover,
.subscribe-form button:focus {
  background-color: #8fac6a;
  color: #2b1b10;
  outline: none;
}

/* Contact links */
#contact-us ul {
  list-style-type: none;
  padding-left: 0;
}

#contact-us li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-form input[type="email"],
  .subscribe-form button {
    width: 100%;
    border-radius: 30px;
    border-right: 2px solid #8fac6a;
    margin-bottom: 0.5rem;
  }
  .subscribe-form button {
    border-radius: 30px;
  }
}
