:root {
  --primary-color: #2E5E4E;
  --secondary-color: #D4A373;
  --accent-color: #BC4749;
  --bg-color: #FAFAF5;
  --text-color: #333;
  --light-text: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(188, 71, 73, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(188, 71, 73, 0.4);
  background-color: #a33b3d;
}

.btn-cta--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-outline {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(46, 94, 78, 0.25);
}

.btn-outline:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 94, 78, 0.35);
}

.site-header {
  background: linear-gradient(rgba(46, 94, 78, 0.9), rgba(46, 94, 78, 0.9)), url('http://googleusercontent.com/image_collection/image_retrieval/16722126820050379690_0');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

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

.site-header .logo {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

footer {
  background-color: #222;
  color: #aaa;
  padding: 40px 20px;
  text-align: center;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  font-weight: bold;
}

.nav-wide-only {
  display: inline-block;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .nav-wide-only { display: none; }
  .nav-container { gap: 12px; }
  .nav-links { gap: 12px; }
}
