body {
    background-color: #83C0CF;
}

/*navbar styling*/

.brand {
    font-family: Lato, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4F6A6E;
}

.custom-navbar {
    background-color:#D2C0A7; 
    color: #fff;
    padding: 0.75rem 1rem;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    color: #fff;
    font-weight: 600;
}

.custom-navbar .nav-link:hover {
    color:  #83C0CF;
    text-decoration: underline;
}

.custom-navbar .navbar-toggler {
    border-color:  #83C0CF;
}


.navbar-toggler .fa-bars {
    font-size: 1.4rem; /* Adjust size as needed */
    color: #fff;
}

/*branding */

.d-o {
    color: #098D8A;
}

.thin {
    font-weight: 300;
}

.light-bg {
    background-color: #fff;
}

.dark-bg {
    background-color: #445261;
}

.main-bg {
    background-color: rgba(113, 169, 183, 1)
}

.card {
    border: none;
    background-color: transparent;
}

.image-container {
    position: relative;
}

.image-flash {
    position: absolute;
    bottom: 5%;
    min-width: 30%;
    left: -2px;
    background-color: #188181;
}

.scale {
    width: 100%;
    height: auto;
}

.author {
    color: white;
    margin: 4px;
    text-transform: uppercase;
}

/*post-detail.html*/
.masthead {
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    height: 33vh;
    width: 100%;
}

.masthead-text {
    background-color: #D2C0A7;
    color: white;
    position: relative;
}

.masthead-image {
    position: relative;
    overflow: hidden;
}

.masthead-image:after {
    content: "";
    position: absolute;
    top: 0;
    right: 90%;
    height: 100%;
    width: 150%;
    background:  #D2C0A7;
    -webkit-transform: skew(15deg);
    -moz-transform: skew(15deg);
    transform: skew(15deg);
    z-index: 100;
}

.post-link {
    text-decoration: none;
    color: #fff;
}

.post-link:hover,
.page-link {
    color: #098D8A;
}

.post-title {
    margin-top: 10%;
    margin-left: 5%;
}

.post-subtitle {
    margin-left: 5%;
    color: #098D8A;
    font-weight: 600;
}

.btn-signup,
.btn-edit {
    background-color: #188181;
    color: #fff;
}

.btn-signup:hover,
.btn-signup:active {
    background-color: #fff;
    color: #23BBBB;
}

.link {
    color: #23BBBB;
    text-decoration: none;
}

.link:hover,
.link:active {
    color: #445261;
    text-decoration: underline;
}

.btn-like {
    color: #E84610;
    border: none;
    background: transparent;
}

.btn-delete {
    color: #fff;
    background: #E84610;
}

.btn-like:hover,
.btn-like:active {
    color: #E84610;
    background: transparent;
    border: none;
}

.faded {
    color: rgb(172, 175, 175);
}

.approval {
    color: rgb(222, 146, 168);
}

/*filter-post btns*/
.btn-filter {
    background-color: #098D8A; /* .light-bg */
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-filter:hover {
    background-color: #D6DFDF;
}

.btn-reset {
    background-color: #D2C0A7; /* .brand */
    color: #333;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-left: 0.5rem;
}

.btn-reset:hover {
    background-color: #D6DFDF;
    color: #222;
}

/* Alerts / Messages */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #098D8A;
}

.alert-success {
    background-color: #098D8A;
    color: #fff;
}

.alert-info {
    background-color: #83C0CF;
    color: #fff;
}

.alert-warning {
    background-color: #D2C0A7;
    color: #222;
}

.alert-danger {
    background-color: #E84610;
    color: #fff;
}

.btn-close {
    color: #fff;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/*tag posts styles*/

.tag-box {
  display: inline-block;
  background-color: #D2C0A7; /* brand */
  color: #fff;
  padding: 0.4rem 0.8rem;
  margin: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}