@tailwind base;
@tailwind components;
@tailwind utilities;

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html,body{
    width: 100%;
    height: 100%;
}

#map{
    width: 100%;
    height: 100%;
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    margin-top: 20vh;
    height: 100vh;
}
.landing-container h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.landing-container p {
    font-size: 1.5em;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
}
.landing-container .btn {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: black;
    color: #fff;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
}

body {
    background-image: url('/static/images/map1-min.jpg'); /* Path to your background image */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed; /* For parallax effect */
}

@keyframes fade-in {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 1s ease-out;
}

@media (max-width: 768px) {
  .landing-container {
    margin-top: 10vh;
    padding: 0 20px;
  }
  .landing-container h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .landing-container p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  .landing-container .btn {
    padding: 8px 16px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .landing-container h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .landing-container p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .landing-container .btn {
    padding: 6px 12px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .landing-container {
    margin-top: 10vh;
    padding: 0 20px;
  }
  .landing-container h1 {
    font-size: 2.5em; /* Increased font size */
    margin-bottom: 15px;
  }
  .landing-container p {
    font-size: 1.5em; /* Increased font size */
    margin-bottom: 30px;
  }
  .landing-container .btn {
    padding: 8px 16px;
    font-size: 1.2em; /* Increased font size */
  }
}

@media (max-width: 480px) {
  .landing-container h1 {
    font-size: 2em; /* Increased font size */
    margin-bottom: 10px;
  }
  .landing-container p {
    font-size: 1.2em; /* Increased font size */
    margin-bottom: 20px;
  }
  .landing-container .btn {
    padding: 6px 12px;
    font-size: 1em; /* Increased font size */
  }
}

@media (max-width: 768px) {
  .landing-container {
    margin-top: 10vh;
    padding: 0 20px;
    justify-content: center; /* Add this line */
    text-align: center; /* Add this line */
  }
  .landing-container h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .landing-container p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  .landing-container .btn {
    padding: 8px 16px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .landing-container {
    justify-content: center; /* Add this line */
    text-align: center; /* Add this line */
  }
  .landing-container h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .landing-container p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .landing-container .btn {
    padding: 6px 12px;
    font-size: 0.9em;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.footer {
  background-color: antiquewhite;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
  color: #4b5563; /* gray-500 */
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer span {
  font-size: 0.875rem; /* text-sm */
  text-align: center;
}

.footer-link {
  color: #4b5563; /* gray-500 */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.75rem; /* mt-3 */
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-right: 1rem; /* me-4 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
}

.footer-list li:last-child {
  margin-right: 0;
}
