html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Josefin Sans', sans-serif !important;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

.desktop-container {
    display: flex;
}

.left {
    width: calc(100% - 500px);
    position: fixed;
    height: 100vh;
    overflow: hidden;
}

.left img {
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right {
    flex: 1;
    max-width: 500px;
    margin-left: auto;
    box-sizing: border-box;
}

@media only screen and (max-width: 500px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .right {
        max-width: 100%;
        margin-left: 0;
    }
}
		
.show-popup-btn {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: fadeInUp 0.5s ease-out;
}

.popup-images {
    display: flex;
    justify-content: space-between;
}

.popup-header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
}

.custom-popup-close {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(to right, #00adef, rgb(75, 86, 98));
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
}

.custom-popup-close:hover {
    background: linear-gradient(to right, #001F3F, #003366);
}

.font-esthetic {
    font-family: 'Sacramento', cursive !important;
    color: #000000 !important;
}

.font-arabic {
    font-family: 'Noto Naskh Arabic', serif !important;
    color: #000000 !important;
}

.img-crop {
    width: 14rem;
    height: 14rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.img-crop>img {
    display: inline;
    margin: 0 auto;
    height: auto;
    width: 100%;
}

.btn-music {
    position: fixed;
    bottom: 9vh !important;
    right: 2vh !important;
    z-index: 1055 !important;
}

.loading-page {
    position: fixed;
    inset: 0 !important;
    width: 100%;
    height: 100%;
    background-color: #111111;
    z-index: 1056 !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-page::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

.loading-page .text-center {
    z-index: 1;
}

.card-body {
    overflow-wrap: break-word !important;
    border-color: rgba(91, 121, 89) !important;
}

.mouse-animation {
    padding: 0.25rem 0.625rem;
    height: 2rem;
    border: 0.1rem solid #000000;
    border-radius: 1.4rem;
    opacity: 0.75;
    box-sizing: content-box;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

.mouse-animation>.scroll-animation {
    width: 0.25rem;
    height: 0.625rem;
    border-radius: 25%;
    background-color: #000000;
    animation-name: scroll;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spin-icon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-button {
    animation: spin-icon 5s linear infinite;
}

.dark-section {
    background-color: #ffffff !important;
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}

#footer {
    /* background-color: #111111 !important; */
    margin-top: -0.5rem;
    padding-bottom: 5rem;
}

.comments-container {
    border: 1px solid #ddd;
    padding: 10px;
    height: 70vh;
    overflow-y: auto;

}

.comment {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.comment-created {
    font-family: Arial, Helvetica, sans-serif;
    font-size: smaller;
}

.comment-author {
    font-weight: bold;
}

.comment-content {
    margin-top: 5px;
}

.fas {
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.story h2 {
  color: var(--pink);
  font-family: "Sacramento", cursive !important;
  font-size: 3rem !important;
  font-weight: bold !important;
}

.timeline-heading, .timeline-body {
    text-align: left;
    color: #ffffff;
}
  
.story span {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}
  
.story p {
    font-size: 1rem;
    font-weight: 400;
}

.timeline {
    list-style: none;
    padding: 1.4rem 0;
    margin-top: 1rem;
    position: relative;
}
  
.timeline::before {
    content: "";
    top: 0;
    bottom: 0;
    position: absolute;
    width: 1px;
    background-color: #a145a1;
    left: 50%;
}
  
.timeline li {
    margin-bottom: 1.5rem;
    position: relative;
}
  
.timeline li::before,
.timeline li::after {
    content: "";
    display: table;
}
  
.timeline li::after {
    clear: both;
}
  
.timeline li .timeline-image {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
  
.timeline li .timeline-panel {
    width: 45%;
    float: left;
    border: 1px solid #ccc;
    padding: 1rem;
    position: relative;
    border-radius: 8px;
    background-color: #a145a1;
}
  
.timeline li.timeline-inverted .timeline-panel {
    float: right;
}
  
.timeline li.timeline-inverted .timeline-panel::before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}
  
.timeline li.timeline-inverted .timeline-panel::after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -13px;
    right: auto;
}