:root {
  --primary-color: #2d5f4f;
  --accent-color: #c85a54;
  --bg-cream: #f5f1e8;
  --text-dark: #333333;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
}

.primary-color { color: var(--primary-color); }
.accent-color { color: var(--accent-color); }
.bg-primary-custom { background-color: var(--primary-color); }
.bg-accent-custom { background-color: var(--accent-color); }

.divider-accent {
  height: 4px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 2px;
  margin: 1.5rem auto;
}

.section-padding {
  padding: 100px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(245, 241, 232, 0.85), rgba(245, 241, 232, 0.85)),
              url("{% static 'images/seu-novo-fundo.jpg' %}");
  /*background: linear-gradient(rgba(245, 241, 232, 0.85), rgba(245, 241, 232, 0.85)),*/
  /*            url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80");*/
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-section h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  margin: 0 15px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
  transition: transform 0.6s ease;
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #1e4035;
  border-color: #1e4035;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 80px 0 40px;
}

.footer h5 {
  color: #F5F1E8;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
}

/* Custom Utilities */
.italic { font-style: italic; }
.text-gray-300 { color: #d1d5db; }

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