@font-face {
    font-family: 'Keleti';
    src: url('./fonts/Keleti-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

body{
    margin: 0;
    padding: 0;
    cursor: url("https://i.ibb.co/1G1qQQT6/main-cursor.png") 0 0, auto;
    transition: background-color 0.3s ease;
    background-color:rgba(71, 151, 87, 1) ;
}

#main-container {
    width: 100%;
    background-color: rgba(71, 151, 87, 1);
    transition: background-color 0.5s ease;
}

#logo-text {
    font-family: 'Keleti', sans-serif;
    margin: 0px;
    font-size: 50px;
    color: rgb(228, 228, 131);
    margin-left: 30px;
    transition: color 0.3s ease;
}

#docs p {
    font-family: "Pixelify Sans", sans-serif;
    color: white;
    font-size: 20px;
    margin: 0px;
    text-align: center;
    transition: color 0.3s ease;
}

#docs img {
    image-rendering: pixelated;
    transition: transform 0.3s ease;

}

#docs img:hover {
    transform: scale(1.05);
      cursor: url("https://i.ibb.co/0pVbb8KQ/Slice-5-1-1.png") 0 0, auto;

}

nav {
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

#docs {
    margin-right: 20px;
}

#farmx-logo {
    display: flex;
    justify-content: center;
}

#farmx-logo img {
    width: 200px;
    height: auto;
    image-rendering: pixelated;
    transition: transform 0.4s ease;
}

#farmx-logo img:hover {
    transform: scale(1.1);
}

#input-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#second-well {
    transform: scaleX(-1);
    transition: transform 0.3s ease;
}

.well {
   width: 20%;
    transition: all 0.3s ease;
}

#input-box input {
    height: 30px;
    border-radius: 5px;
    background-color: #BE775A;
    color: white;
    font-family: "Pixelify Sans", sans-serif;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    outline: none;
    padding: 0 10px;
}

@keyframes inputFocusGlow {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.3);
    }
}

#input-box input:focus {
    border-color: #fff;
    background-color: #A65E43;
    transform: scale(1.03);
    animation: inputFocusGlow 0.8s ease-in-out;
}

input::placeholder {
    font-family: "Pixelify Sans", sans-serif;
    color: white;
    font-size: 15px;
    font-style: italic;
    text-align: center;
    transition: color 0.3s ease;
}

#announcement {
    font-family: "Pixelify Sans", sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

#announcement img {
    margin: 0px;
    height: 60px;
    margin-bottom: 24px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

#announcement img:hover {
    transform: scale(1.05);
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

button {
    font-family: "Pixelify Sans", sans-serif;
    width: 70px;
    font-size: 15px;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #BE775A;
    background-color: rgba(195, 172, 144, 1);
    transition: all 0.3s ease;
}

button:hover {
    cursor: url("https://i.ibb.co/1G1qQQT6/main-cursor.png") 0 0, auto;
    transform: scale(1.05);
    background-color: rgba(215, 192, 164, 1);
}

#trees {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    transition: all 0.3s ease;
}

#follow-us {
    font-family: "Pixelify Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
    transition: all 0.3s ease;
}

#follow-us img {
    height: 30%;
    transition: transform 0.3s ease;

}

#follow-us img:hover {
    transform: scale(1.1);
    cursor: url("https://i.ibb.co/0pVbb8KQ/Slice-5-1-1.png") 0 0, auto;
}

#tree-right img, #tree-left img {
    width: auto;
    height: 110px;
    image-rendering: pixelated;
    transition: transform 0.3s ease;
    overflow: hidden;
}

#tree-right img:hover, #tree-left img:hover {
    transform: scale(1.1);
}


#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#popup-content {
  background: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Pixelify Sans', sans-serif;
}

#popup-content button {
  margin-top: 10px;
  font-size: 16px;
  padding: 5px 15px;
  cursor: pointer;
}


#popup-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}




@media (max-width: 726px) {
  #announcement {
    flex-direction: column;
    text-align: center;
  }

  #announcement h1 {
    font-size: 20px;
    padding: 10px;
  }
}
