/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/styles/BatonLogo.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
/* BatonLogo.css */

.logo-container {
  display: inline-block;
  padding: 10px;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease-in-out;
}

.logo-text {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #333;
  margin-right: 10px;
}

.logo-symbol {
  position: relative;
  width: 24px;
  height: 24px;
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #333;
}

.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(-60deg);
}

.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(60deg);
}

.logo-container:hover .logo {
  transform: rotate(360deg);
}

/* Additional styles for the header */
.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-item {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #1a202c;
}

.contact-button {
  background-color: #3182ce;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #2c5282;
}
