


html {
  position: relative;
  min-height: 100%;
}

a {
  color: lightblue;
}

img {
    opacity: 0.9;
    border-radius: 33px;
    z-index: 2;
}

.cust-bg {
    /* Semi-transparent navbar with blur */
    background: rgba(0, 31, 63, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body {
    font-family: 'Nunito Sans', sans-serif;
    /* Futuristic animated gradient background */
    background: linear-gradient(135deg, #2b0d0d, #5c2b80, #fd731d, #ffb347);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg,#ffb347,#ffcc33,#ffb347);
    background-size: 200% 200%;
    animation: titleGradient 6s ease-in-out infinite;
    color: #1a1a1a;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0.9;
}
@keyframes titleGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.Bible {
    color: white !important;
    font-weight: bold;
    font-size: 19px;
    text-decoration: none !important;
}

.white {
    color: white !important;
}

.my-link {
    position: relative;
    display: inline-block;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    border-radius: 25px;
    padding: 6px 14px;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.my-link:hover {
    background: linear-gradient(135deg,#ffb347,#ffcc33);
    color: #1a1a1a !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* Circular orange sweep every 20 s */
.my-link::after {
    content: "";
    position: absolute;
    inset: -4px; /* expand slightly outside for a halo */
    border: 2px solid transparent;
    border-radius: 30px;
    pointer-events: none;
    animation: orbit 20s linear infinite;
}
@keyframes orbit {
  0%   {border-color:transparent; opacity:0; transform:rotate(0deg);}
  2%   {border-top-color:#ffcc33; opacity:1;}
  10%  {border-top-color:#ffcc33; border-right-color:#ffcc33; transform:rotate(90deg);}
  18%  {border-right-color:#ffcc33; border-bottom-color:#ffcc33; transform:rotate(180deg);}
  26%  {border-bottom-color:#ffcc33; border-left-color:#ffcc33; transform:rotate(270deg);}
  34%  {border-color:#ffcc33; transform:rotate(360deg); opacity:0;}
  100% {border-color:transparent; opacity:0;}
}

.bold {
    font-weight: bold;
}

.par, .glass-card {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 25px;
    font-size: 18px;
}

.glass-card .card {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
}

.glass-card .card-body {
    background: transparent;
}

.glass-card input,
.glass-card textarea {
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.glass-card input::placeholder,
.glass-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.glass-card .btn-outline-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.glass-card .btn-outline-secondary:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.glass-card .btn-outline-secondary i {
    color: #ffffff;
}

.foot {
    background-color: rgba(0, 31, 63, 0.75);
    color: white;
    font-size: 13px;
    font-weight: 400;
}

.slider {
    height: 550px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider .list {
    width: 100%;
    height: 100%;
    position: absolute;
    width: max-content;
    left: 0; /* adjusted to the center if portrait */
    top: 0;
    display: flex;
    transition: 1s;
    overflow: hidden; /* Add overflow: hidden to hide overflowing content */
}

.slider .list .item {
    width: 100%; /* Set height to 100% to match parent height */
    position: relative;
}

.slider .list .item img {
    height: 100%; /* Set height to 100% to match parent height */
    object-fit: contain; /* Use "contain" to maintain aspect ratio and fit the image within the container */
    position: relative;
    margin-left:auto;
    margin-right:auto;
}


.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5A5A5A;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
    z-index: 3;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}

.logged-info {
    margin-left: auto;
    margin-right: auto;
}

.new-post {
    position: absolute;
    z-index: 1;
}

#snackbar {
  background: rgba(0, 0, 0, 0.6);
  display: block;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 25px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 16px 24px;
  position: fixed;
  z-index: 1000;
  bottom: 80px;
  font-size: 24px;
  transform: translateY(200px);
  transition: transform 0.5s;
}


#snackbar.show {
  transform: translateY(0);
}


@media screen and (max-width: 768px){
    .slider{
        height: 300px;
    }
    .navbar-brand{
        font-size: 0.8rem !important;
        white-space: normal;
    }
    .my-link{
        display: block;
        margin: 4px 0;
        text-align: center;
    }
}
