/* Typography */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #2A2A2A;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2D3142;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.navbar-brand {
  font-weight: bold;
  color: #2D3142 !important;
}

.nav-link {
  color: #2D3142 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #B28B44 !important;
}

/* Buttons */
.btn-primary {
  background-color: #B28B44;
  border: none;
}

.btn-primary:hover {
  background-color: #967539;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #F9F9F9, #fff);
  padding: 5rem 0;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero p.lead {
  color: #5c5c5c;
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-of-type(even) {
  background-color: #F9F9F9;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-title {
  color: #2D3142;
}

/* Icons */
.bi {
  color: #B28B44;
}

/* Footer */
footer {
  background-color: #2D3142;
  color: #ddd;
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: #B28B44;
}

/* Divider lines */
hr {
  border-top: 1px solid #e3e3e3;
}

/* Animations (AOS) */
[data-aos] {
  transition: all 0.6s ease-in-out;
}