/* style.css */

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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

section {
  padding: 4rem 1.5rem;
  position: relative;
}

.text-center {
  text-align: center;
}

h1, h2, h3 {
  margin-bottom: 1rem;
  font-weight: bold;
}

a.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.button:hover {
  background-color: #fff;
  color: #000;
}

.p-0 {
  padding: 0 !important;
}

.w-full, .w-full img {
  width: 100%;
}

section.flex {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

section.flex .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.low-opacity {
  opacity: 0.4;
}

section.adaptative .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

section.adaptative .overlay .content {
  align-self: center;
  padding: 1.5rem;
}

.hero h1 {
  font-family: 'Felipa', cursive;
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.preview {
  max-width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 700px;
  margin: auto;
}

.tags {
  margin-top: 1rem;
}

.tags span {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  border-radius: 9999px;
}

.dark {
  background-color: #111;
}

.content-dark {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
}

#call-collab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#call-collab > span {
  white-space: nowrap;
  padding: 0 3px;
}

footer {
  font-size: 0.85rem;
  color: #888;
}

footer a {
  margin:0 6px;
  vertical-align:middle;
  text-decoration: none !important;
}

footer svg {
  vertical-align:middle;
}

@media (min-width: 768px) {
  section.flex .overlay .content {
    padding: 2rem 3rem;
  }
}

@media (min-width: 1240px) {
  section.adaptative .w-full {
    height: 100vh;
    position: relative;
  }

  section.adaptative .w-full img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: -1;
  }
}
