* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #000000;
  background: linear-gradient(
    125deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 48%,
    rgba(0, 0, 0, 1) 66%,
    rgba(69, 0, 0, 1) 83%,
    rgba(84, 2, 2, 1) 95%
  );
  background-attachment: fixed;
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ── NAVBAR ── */
header {
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 50px;
  flex-wrap: wrap;
}

.header-image {
  width: clamp(80px, 12vw, 200px);
  height: 60px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.nav-container {
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  padding: 10px;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 1px;
  color: red;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.3s;
}

nav ul li {
  border-left: 1px solid black;
}

ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 20px;
  list-style: none;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: rgba(255, 0, 0, 0.1);
  color: white;
  border-color: #ff4d4d;
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 0, 0, 0.5);
  text-shadow:
    0 0 8px #fff,
    0 0 12px red;
  transform: scale(1.05);
  border-radius: 30px;
  border: 1px solid #ff4d4d;
}

.show-link6 {
  background-color: rgba(255, 0, 0, 0.1);
  color: white;
  border-color: #ff4d4d;
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 0, 0, 0.5);
  text-shadow:
    0 0 8px #fff,
    0 0 12px red;
  transform: scale(1.05);
  border-radius: 30px;
  border: 1px solid #ff4d4d;
}

.header {
  border: 1px solid red;
}

.locatiom {
  border: 1px solid white;
  margin-top: 4px;
}

.location {
  flex: 1;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}

.gmap {
  margin-left: 40px;
  margin-top: 70px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.full-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 30px;
}

.fua {
  color: red;
  font-size: 50px;
  margin-left: 30px;
}

.address,
.landmark {
  color: #fbedd1;
  font-size: 25px;
}

.add {
  padding-left: 30px;
}

.direksyon {
  margin-top: 20px;
  border: 1px solid red;
  background: transparent;
  border-radius: 15px;
  margin-left: 45px;
  transition: 0.3s;
}

.direksyon:hover {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #ff4d4d;
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.7),
    0 0 35px rgba(255, 0, 0, 0.4),
    inset 0 0 15px rgba(255, 0, 0, 0.5);
  transform: scale(1.05);
  border-radius: 30px;
}

.direk {
  font-size: 30px;
  color: red;
  padding: 15px 80px;
  text-decoration: none;
  display: inline-block;
}

.direksyon:hover .direk {
  color: white;
  text-shadow:
    0 0 8px #fff,
    0 0 25px red;
}

.pula {
  border: 1px solid red;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.puti {
  border: 1px solid white;
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.all-footer {
  background-color: transparent;
  position: relative;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  color: white;
}

.kapi {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-top: 5px;
  margin-left: 10px;
  color: #fbedd1;
  font-size: 13px;
}

@media (max-width: 1000px) and (max-width: 768px) {
  body {
    padding-bottom: 20px;
  }

  header {
    height: auto;
    padding: 5px 24px;
    flex-direction: column;
  }

  .header-image {
    margin: 0 auto;
    padding: 5px;
    width: 80px;
    height: 60px;
  }

  .nav-container {
    padding-right: 0;
    width: 100%;
  }

  nav ul {
    gap: 4px;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li a {
    padding: 6px 10px;
    font-size: 11px;
  }

  .location {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .gmap {
    margin: 20px auto;
    width: 90%;
    display: block;
  }

  .gmap iframe {
    width: 100%;
    border-radius: 15px;
  }

  .full-address {
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .fua {
    font-size: 30px;
    margin-left: 0;
  }

  .address,
  .landmark {
    font-size: 16px;
  }

  .direksyon {
    margin-left: 0;
  }

  .direk {
    font-size: 20px;
    padding: 12px 40px;
  }

  .kapi {
    font-size: 10px;
  }
}
