@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Outfit:wght@800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #f5f1e6;
  background-image: linear-gradient(rgba(245, 241, 230, 0.6), rgba(245, 241, 230, 0.6)), url('../img/Background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.global-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 80px;
  background-color: #f5f1e6;
  width: 100%;
  border-bottom: 1.5px solid #e22326;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.global-header .logo img {
  height: 80px;
  object-fit: contain;
}

.global-header .navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.global-header .navigation a {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #e22326;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.global-header .navigation a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #e22326;
  transition: width 0.3s ease;
}

.global-header .navigation a:hover::after,
.global-header .navigation a.active::after {
  width: 100%;
}

.global-header .navigation .separator {
  color: #e22326;
  font-size: 32px;
  font-weight: 300;
  user-select: none;
}

/* Footer */
.global-footer {
  margin-top: auto;
  background-color: #e22326;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
