/* Base styles and global utilities */
html,
body {
  margin: 0 !important; /* Ensure no default margin */
  padding: 0 !important; /* Ensure no default padding */
  box-sizing: border-box; /* Ensure padding/border are included in element's total width/height */
}

:root {
  --primary-color: #bab078;
  --primary-dark: #9b8b32;
  --secondary-color: #6c757d;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --success-color: #28a745;
  --warning-color: #ffc107;
  

  /* Define mobile-specific heights for fixed elements, referencing main style variables */
  --top-contact-bar-mobile-height: var(--contact-bar-height);
  --navbar-mobile-height: var(--navbar-height);
}

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.section-title {
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Utility Classes */
.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded {
  border-radius: .25rem !important;
}

.object-cover {
  object-fit: cover;
}

a {
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-dark);
}
