:root {
  --color-primary: #9a9c87;
  --color-secondary: #9b7368;
  --color-text-light: #ffffff;
  --color-text-dark: #222222;
  --color-text-muted: rgba(34, 34, 34, 0.4);
  --font-heading: 'Arima Madurai', cursive;
  --font-body: 'Roboto', sans-serif;
  --font-special: 'Roboto Condensed', sans-serif;
  --font-ui: 'Montserrat', sans-serif;
  --font-sub: 'Cabin', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--color-text-dark);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  position: relative;
  overflow: hidden;
}

.section-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.wave-separator {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.wave-separator-top {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

@media (max-width: 768px) {
  h1, h2 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
}