/* GLOBAL STYLES */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #F7F3ED;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Lobster', cursive;
  color: #C2502A;
}

a { text-decoration: none; color: #C2502A; }
a:hover { text-decoration: underline; }

section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 { margin-bottom: 30px; }

/* HEADER */
header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
}

nav a {
  margin: 0 15px;
  font-weight: bold;
}

nav .cta {
  background: #C2502A;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
}

/* HERO */
.hero {
  background: #C2502A;
  color: white;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5em;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #C2502A;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card, .price-card {
  background: white;
  padding: 20px;
  border: 2px solid #C2502A;
  border-radius: 8px;
}

.price-card h3 { margin: 0; }

/* CONTACT FORM */
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.contact input, .contact textarea, .contact button {
  margin: 10px 0;
  padding: 12px;
  font-size: 1em;
}

.contact button {
  background: #C2502A;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background: #a33f1f;
}

/* FOOTER */
footer {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
}
