body, html {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: url("assets/BBBG.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Asap', sans-serif;
}
 
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
}
 
.logo {
  width: clamp(325px, 28vw, 700px);
  height: auto;
}

.headline {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(65px, 4.6vw, 75px);
  line-height: 1.25;
  max-width: 620px;
  margin-top: 24px;
}
 
.headline .accent {
  color: #246f58;
}
 
.sub {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.6;
  margin-top: 16px;
}

.pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
 
.pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
 
.pill-social-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
 
.pill-social-item:hover {
  color: #246f58;
}
 
.pill-social-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
 
.pill-divider {
  width: 1px;
  height: 14px;
  background: rgba(36, 111, 88, 0.4);
}
 
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .25s ease, background .25s ease;
}
 
.pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
 
/* Sol taraf: içi dolu */
.pill-filled {
  background: #F4F4EF;
  color: #050704;
  border: 1px solid #ffffff;
}
 
.pill-filled:hover {
  opacity: 0.85;
}
 
/* Sağ taraf: sadece stroke */
.pill-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
 
.pill-outline:hover {
  border-color: #246f58;
  color: #246f58;
}
 
.pill-social.pill-outline:hover {
  color: #ffffff;
}
 
.addresses {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 16px;
  line-height: 1.7;
}
 
.address {
  display: block;
  color: rgba(244, 244, 239, 0.72);
  text-decoration: none;
  font-weight: 300;
  transition: color .2s ease;
}
 
.address:hover {
  color: #246f58;
}
 
.address b {
  color: #ffffff;
  font-weight: 600;
}
 
.address em {
  font-style: italic;
}