@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --main-text-color: #30bd65;
  --primary-text-color: #002232;
  --main-font: "Mulish", "san-sarif";
}



html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--main-font);
}

input, textarea, select {
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

nav ul li .nav-link {
  background-color: transparent;
  display: inline-block !important;
  border-radius: 10px;
  padding: 5px;
  font-size: 15px;
}

nav ul li .nav-link.active {
  background-color: var(--main-text-color);
}


.seafood-main {
  background-color: #FEFFEB;
  padding-bottom: 20px;
}

@media screen and (min-width: 360px) and (max-width: 900px) {
  .before-toggle-nav {
    display: none;
  }
  .android-absolute {
    position: absolute;
    top: 70px;
    z-index: 10;
    width: 80%;
    left: 10%;
    border-radius: 25px;
  }
}

.container {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.about-us-shadow {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

#get_in_touch {
 background-image: url("../assets/get_in_touch_bg.svg");
 background-repeat: no-repeat;
  background-size:cover;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1198px;
  }
}

.section {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .section {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .section {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .section {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .section {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .section {
    max-width: 1486px;
  }
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

/* Style for the dropdown button */
.dropdown-btn {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  width: 135px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #002232;
  border-radius: 39px;
}

/* Style for the chevron icon */
.chevron-icon {
  width: 16px;
  height: 16px;
  fill: #333; /* Icon color */
  transition: transform 0.3s;
}

/* Rotate icon when the menu is open */
.dropdown-btn.open .chevron-icon {
  transform: rotate(180deg);
}

/* Style for the dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 50px;
  /* background-color: #fff; */
  min-width: 200px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 10px;
  /* box-shadow: 0 4px 13px rgba(0, 0, 0, 0.6); */
  z-index: 1;
  border-radius: 3px;
  border: 1px solid #d8d8d8;
  /* padding-left: 25px; */
}

/* Style for the list items */
.dropdown-menu li {
  padding: 8px 16px;
  border: 1px solid #ccc;
  cursor: pointer;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

/* Hover effect for the list items */
/* .dropdown-menu li:hover {
  background-color: #f1f1f1;
} */
