/* all */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* body */
body {
  background-color: black;
  color: #f5f5c5;
  font-family: monospace;
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background-color: black;
  border-bottom: 1px solid #222;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
/* logoFont, header part */
.chokokutai-regular {
  font-family: "Chokokutai", system-ui;
  font-weight: 400;
  font-style: normal;
  color: beige;
  font-size: 20px;
}
.logo a:hover {
  color: #f5f5c5;
}

.logo a {
  color: #f5f5c5;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu a {
  color: #c0c0c0;
  text-decoration: none;
  background-color: #333;
  border: 1px solid #666;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.nav-menu a:hover {
  background-color: #555;
  color: #fff;
}

main {
  margin-top: 60px;
  padding: 20px;
  color: #fff;
}
.image {
  background-image: url('snkbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 300px;       
  padding: 40px;
  color: white;      
}

/* signup part */
.gridContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 40px;
  gap: 40px;
}

.leftSide {
  padding: 30px;
}

.rightSide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup {
  background: rgb(123, 118, 118);
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.signup h2 {
  margin-bottom: 20px;
  color: #333;
}

.signup label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #333;
}

.signup input,
.signup select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.signup button {
  width: 100%;
  background-color: #ffe04e;
  padding: 12px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}

.mh{
    font-size: 20px;
    font-weight: bolder;
}

.mp{
    font-size: 15px;
    font-weight: 1000;
    color: rgb(255, 255, 255);
}
/* data part */
.snake-categories {
  margin-top: 40px;
  padding: 20px;
}

.snake-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.snake-box {
  flex: 1;
  height: 330px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
}

.non-venomous {
  background-image: url('nvsbg.jpg');
}

.venomous {
  background-image: url('vsbg.png');
}

.myths {
  background-image: url('msbg.jpg');
  height: 250px;
}

/* footer */
      .video-footer {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        font-family: monospace;
        color: white;
      }

      .footer-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 1;
      }

      .footer-content {
        position: relative;
        z-index: 2;
        height: 100%;
        width: 100%;
        padding: 0 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(0, 0, 0, 0.4);
      }

      /* Navigation */
      .footer-nav a {
        color: #ffe04e;
        margin: 0 12px;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
      }

      .footer-nav a:hover {
        color: #ffffff;
      }

      /* Social links */
      .footer-social a {
        color: #f5f5c5;
        margin: 0 12px;
        text-decoration: none;
        font-size: 16px;
      }

      .footer-social a:hover {
        color: #ffffff;
      }
