:root {
  /* Brand Colors */
  --primary-color: #4A2E15; /* Dark Brown */
  --primary-light: #5e3b1c;
  --secondary-color: #C19A5B; /* Gold/Tan */
  --secondary-light: #d4b581;
  
  /* Neutral/Background */
  --bg-color: #F8F5F0; /* Warm off-white, Wilder style */
  --surface-color: #FFFFFF;
  --surface-alt: #EBE5DB;
  
  /* Text */
  --text-dark: #2A2A2A;
  --text-muted: #6B655B;
  --text-light: #F8F5F0;

  /* Typography */
  --font-heading: 'Playfair Display', serif; /* Elegant serif for that premium/natural feel */
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-spacing: 100px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 24px;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--bg-color) !important; }

/* Buttons */
.btn-custom {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: 0; /* Sharp edges for luxury feel */
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
  display: inline-block;
  text-decoration: none;
}
.btn-custom:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  display: inline-block;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Navbar */
.navbar {
  background-color: var(--bg-color) !important;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(248, 245, 240, 0.95) !important;
  backdrop-filter: blur(10px);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: 1px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
}

/* Sections */
section {
  padding: var(--section-spacing) 0;
}

.section-title {
  font-size: 3rem;
  position: relative;
  margin-bottom: 50px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-top: 20px;
}

/* Footer */
footer {
  background-color: #2b1b0d; /* Darker shade to ground the page and prevent blending */
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(193, 154, 91, 0.2);
}
footer h5 {
  color: var(--secondary-color);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
footer p, footer a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--secondary-color) !important;
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}
.social-icons a:hover {
  background: var(--secondary-color);
  color: #fff !important;
}

/* Custom Overlaps (Wilder Vibe) */
.image-overlap {
  position: relative;
}
.image-overlap img:first-child {
  width: 80%;
  border-radius: 4px;
}
.image-overlap img:last-child {
  width: 50%;
  position: absolute;
  bottom: -40px;
  right: 0;
  border: 10px solid var(--bg-color);
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  section {
    padding: 60px 0;
  }
  .image-overlap img:first-child {
    width: 100%;
  }
  .image-overlap img:last-child {
    display: none;
  }
}
