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

:root{
  --main-button-color: #00afb9 var(--tw-gradient-to-position);
  --main-button-color-hover: #57cfd5 var(--tw-gradient-to-position);
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-transform: uppercase;
}

h1 {
  color: black;
}

.background {
  @apply sm:bg-[url('./assets/image-small.webp')];
}

img {
  height: auto;
  width: 100%;
}

.description {
  display: none;
}
.open .description {
  display: block;
}

.card {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;  
  min-height: 350px;  
  padding: 1rem;
  border-radius: 30px;
  background: #0081a7;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

@media (max-width: 1200px) {
  .card {
    min-height: 300px;
  }
}

.logo {
  box-shadow: 15px 15px 30px rgb(25, 25, 25), -15px -15px 30px rgb(60, 60, 60);
}

.custom-bg-image {
  background-image: url("/assets/image/hero.webp");
}

@media (max-width: 640px) {
  .custom-bg-image {
    background-image: url("/assets/image/hero-small.webp");
  }
}


.sub-footer {
  background-color: #00afb9;
  position: fixed;
  bottom: 0;
  left: 0;
  color: black;
  text-decoration: none;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 100%;
}

@media (max-width: 800px ) {
  .sub-footer-mod {
    background-color: transparent !important;
  }
}


.main-btn {
  background-color: var(--main-button-color) !important;  
}

.main-btn:hover,
.main-btn:focus {
  background-color: var(--main-button-color-hover) !important;
}