/* css styles */
.logo {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    /* object-fit: cover; */
}

.navbar-logo {
    width: 60px;
    height: 60px;
    padding: 0%;
    margin: 0%;
    color: white;
    fill: white;        
    /* background-color: white; */
}

#quarto-content {
    background-color: white;
}

.navbar-container {
    min-height: auto;
}

.card {
    position: relative;
    overflow: hidden;
    border: 3px solid #8c063a !important;
  }
  
  .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(140, 6, 58, 0); /* Transparent initially */
    transition: background-color 0.3s ease;
    z-index: 1;
  }
  
  .card:hover::after {
    background-color: rgba(140, 6, 58, 0.4); /* Magenta at 40% opacity */
  }
  
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 0;
  }
  
  .title {
    color: white; 
  }

  .about-links {
    display: flex;
    justify-content: center;
    gap: 10px; /* even spacing between buttons */
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .about-link {
    display: inline-flex;
    align-items: center;
    background-color: #8c063a; /* hardcoded color instead of $button-bg */
    color: white; /* instead of $button-color */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
  }
  
  .about-link:hover {
    background-color: #a8204d; /* slightly lighter */
    color: #ffffff;
  }
  