@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import "tailwindcss";

@theme {
  --color-deep-blue: #00295c;

  --font-playfair: "Playfair Display", "serif";
  --font-poppins: "Poppins", "sans-serif";
  --font-notoserif: "Noto Serif", "serif";
}

.hover-button {
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  &:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    z-index: -2;
  }
  &:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #111111;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
  }
  &:hover {
    color: #fff;
    &:before {
      width: 100%;
    }
  }
}

/* dropdown transition */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

button.oklu::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: gray;
  transform-origin: left;
  transition: background-size 0.7s ease-in-out;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, #00295c, #00295c);
}

.group:hover button.oklu::before {
  background-size: 100% 100%;
}

.search-input {
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  right: 12rem;
  position: absolute;
}
.search-input.active {
  width: 60vw;
  opacity: 1;
  pointer-events: auto;
}

.list li {
  list-style-type: disc;
  margin-left: 16px;
}

/* search icon edit  */
.is-form-id-352 > .is-search-submit {
  height: 55px !important;
}

.btn-class.active {
  color: white;
  padding-left: 2rem; /* px-8 */
  padding-right: 2rem;
  padding-top: 1rem; /* py-4 */
  padding-bottom: 1rem;
  background-color: #001f3f; /* bg-deep-blue — replace with your actual color */
  border-radius: 9999px; /* rounded-full */
  font-weight: 600; /* font-semibold */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 1024px) {
  .btn-class {
    padding-left: 3rem; /* lg:px-12 */
    padding-right: 3rem;
  }
}

.btn-class:hover {
  background-color: #1e3a8a; /* hover:bg-blue-950 — update as needed */
}
.btn-class {
  color: white;
  padding-left: 2rem; /* px-8 */
  padding-right: 2rem;
  padding-top: 1rem; /* py-4 */
  padding-bottom: 1rem;
  background-color: #aeaeb2; /* bg-deep-blue — replace with your actual color */
  border-radius: 9999px; /* rounded-full */
  font-weight: 600; /* font-semibold */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 1024px) {
  .btn-class {
    padding-left: 3rem; /* lg:px-12 */
    padding-right: 3rem;
  }
}

.btn-class:hover {
  background-color: #1e3a8a; /* hover:bg-blue-950 — update as needed */
}

.grid-for-info {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  @media (min-width: 768px) {
    .grid-for-info {
		width: 70%;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
