::-moz-selection { /* Code for Firefox */
  color: #FFF;
  background: #800020;
}

::selection {
  color: #FFF;
  background: #800020;
}

a {
  color: #660033;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #800020;
}

h1, h2, h3, h4, h5 {
  color: #800020;
}

.logo-header-img{
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -2px;
}

.bg-cover {
    background-image: url('../images/marsu-o30.jpg')!important;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Module Card */
.module-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;

    /* Make all cards same height */
    height: 100%;

    /* Flexbox for internal layout */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.module-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.module-icon {
    background-color: #800020; /* maroon */
    color: #fff;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.btn-outline-maroon {
    border: 1px solid #800020;
    color: #800020;
    background: transparent;
    padding: 8px 20px;
    border-radius: 4px;
    margin-top: 15px;
    transition: 0.3s ease;
}
.btn-outline-maroon:hover {
    background-color: #800020;
    color: #fff;
}
/* End module card */
