
:root {
    --dark-purple-grey:#41436A;
    --burgundy: hsl(336, 40%, 42%);
    --sticker-red: #F54768;
    --pastelorango: #FF9677;
    --almost-white: #e0eae7;
    --almost-transparent: rgba(65, 67, 106, 0.1);
}

@font-face {
    font-family: 'redhatdisplay_variable';
    src: url('../fonts/RedHatDisplayVF.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;

}


 /**
#41436A dark-purple-grey
#974063 burgundy
#F54768 sticker-red
#FF9677 pastelorango
*/

#landing_section {
    max-height: 750px;
}
body {
    background-color: #040D0B;
    font-family: 'redhatdisplay_variable', sans-serif;
}

.main-image-col {
    padding-top: 50px;
    padding: auto 0px !important;
}

.main-row {
    margin: auto 0px !important;
}


@media (max-width: 768px) {
    .main-image {
        width: 100%;
        height: auto;
    }

    .post-card-image-container {
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0.8em;
        border-top-right-radius: 0.8em;
        width: 100%; /* Set your desired width */
        overflow: hidden; /* Hide the overflow of the scaled image */
        position: relative; /* Relative positioning for absolute positioned image */
    }

    .post-card .img-fluid {
        border-bottom-left-radius: 0px !important;
        border-top-right-radius: 0.8em !important;
        border-top-left-radius: 0.8em !important;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
    }
}

@media (min-width: 769px) {
    .main-image {
        max-height: 500px;
        width: 100%;
        height: auto;
    }
}

.main-image {
    filter:grayscale(1);
}

.navbar {
    font-family: redhatdisplay_variable;
}

.navbar-brand-mg {
    margin: auto 25px auto 25px;
}

.dark-section {
    background-color: #040D0B;
    color: white;
    font-family: redhatdisplay_variable;
    padding: 50px;
}

.gradient-section, .gradient-card {
    background: radial-gradient(83.2% 128.72% at 66.1% 122.75%, #276E5A 10.65%, #18D9A9 100%);
    color: #35313f;
}

.gradient-section, .dark-section, .dark-grey-section {
    padding: 50px 0;
}

h1 {
    color: var(--burgundy);
    font-size: 200px;
    opacity: 100%;
    text-shadow: 10px 10px var(--pastelorango);
    transition: text-shadow 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

h1:hover{
    color: var(--sticker-red);
    text-shadow: 5px 5px var(--pastelorango);
    opacity: 80%;
}

.dark-grey-section .section-header {
    font-weight: bold;
    font-size: 40px;
    text-transform: uppercase;
    color: #DFEDEFDF;
}

.bright-section .section-header {
    font-weight: bold;
    font-size: 40px;
    text-transform: uppercase;
    color: #35313f;
}

.dark-section-accents {
    color: #55B99C;
}

.feature-card {
    border-radius: 20px;
    padding: 10px;
}

.bright-section {
    background-color: #DFEDEFDF;
}

.red-accent {
    color: #DE5D50;
}

.bg-dark-vr {
    background-color: #040D0B;
}

.bg-bright-vr {
    background-color: #FFF;
}

a {
    text-decoration: none;

}

.navbar a, .nav-link, .nav-item .nav-link {
    color: #DE5D50;
}

.navbar a:hover, .nav-link:hover {
    color: #974063;
}

.footer-section{
    background: linear-gradient(-25deg, #DE5D50, #F54768, #974063, #41436A);
}


.hover-link {
  position: relative;
  color: #55B99C;
  text-decoration: none;
}

.hover-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #55B99C;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}




.hover-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.white-card {
    background-color: white;
    color: #15332B;
    border: none;
}

.white-card .btn {
    background-color: #276E5A;
    color: white;
    border: none;
}

.gradient-card .btn {
    background-color: white;
    border: none;
    color: #15332B;
}

.dark-grey-section, .dark-grey-card {
    background-color: #35313f;
    color: #DFEDEFDF;
}

.dark-grey-card .btn {
    background-color: #DFEDEFDF;
    color: #35313f;
}

/** different from bright-section **/
.bright-card {
    background-color: #DFEDEFDF;
    color: #276E5A;
}

.bright-card .btn {
    background-color: #18D9A9;
    color: #15332B;
    border: none;
    border-radius: 10px;
}

.bright-card .btn:hover {

}


.feature-card {
    margin: 20px;
}

.bright-card.feature-card {
   /* box-shadow: 1px 1px 3px #18D9A9;*/

}

.header-title-area {
    background-color: #55B99C;
    padding: 20px;
    min-height: 250px;
}

.header-title-area .pagetitle {
    font-size: 60px;
    color: #DFEDEFDF;
    opacity: 100%;
    text-shadow: 2px 2px #15332B;
    transition: text-shadow 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.pagetitle {
    margin-top: 50px;
}

.header-title-area .pagetitle:hover{
    color: #DE5D50;
    text-shadow: 5px 5px #276E5A;
    opacity: 80%;
}

.bright-section-stream > div {
    padding:20px;
} 

.plain-text-area {
    padding:20px;
    background-color: #DFEDEFDF;
}

.plain-text-area a {
    color: #DE5D50;
    transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}

.plain-text-area a:hover{
    color: #15332B;
    transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
    background-color: #18D9A9;
}

.svg-header {
    height: 20px;
}

.topbar {
    border-bottom: 0.2rem solid;
    border-color: #DE5D50;
}

.top-section {
    padding: 1em;
    background-color: #040D0B;
}

.top-section .top-title {
    background: linear-gradient(-45deg, #DE5D50, #F54768, #974063, #41436A);
    background-size: 300% 300%; 
    font-size: 10vw;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.top-section .top-subtitle {
    background: linear-gradient(-45deg, #DE5D50, #F54768, #974063, #41436A);
    -webkit-background-clip: text;
    background-size: 300% 300%; 
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient 15s ease infinite;
    background-clip: text;
    font-size: 2vw;
    color: #000;
    
}

.link-bright {
    color: #e0eae7;
    transition: color 0.3s ease;
}

.link-bright:hover {
    color: #a29f9f;
    
}

.link-footer, .text-bright {
    color: #e0eae7;
}

.link-footer:hover {
    color: #a29f9f;
}

.post-card {
    background: linear-gradient(-77deg, #DE5D50, #F54768, #974063, #41436A);
    border-radius: 1em;
    border-width: 0.2em;
    border-color: #e0eae7;
    transition: border-color 0.3s ease;
}

.post-card:hover {
    border-color: #F54768;
}

.post-card .img-fluid {
    border-bottom-left-radius: 0.8em;
    border-top-left-radius: 0.8em !important;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}



.post-card:hover .img-fluid {
    transform: scale(1.1); /* Scales the image up by 10% */
    
}

.post-card-image-container {
    border-bottom-left-radius: 0.8em;
    border-top-left-radius: 0.8em;
    width: 100%; /* Set your desired width */
    overflow: hidden; /* Hide the overflow of the scaled image */
    position: relative; /* Relative positioning for absolute positioned image */
}




.post-card-button {
    background: white;
    border: none;
    color: #040D0B;
    transition: color ease 0.3s;
}

.post-card-button:hover {
    color: #F54768;
    background:white;
}

.image-gallery {
    display: flex;
    flex-direction: column; /* Stack each image item vertically */
    align-items: center; /* Center align all items */
    padding: 20px; /* Optional: padding for gallery styling */
}

.gallery-image {
    max-width: 900px; /* Limit image width to a maximum of 900px */
    height: auto;
    width: 100%;
    box-shadow: #e0eae7 10px 10px;
    transition: box-shadow ease 0.3s;
}

.gallery-image:hover {
    box-shadow: #DE5D50 5px 5px;
}

.blur-back {
    box-shadow: #2a2b2b 10px 10px 100px 10px;
    background: transparent;
}

.info-card-wrapper {
    max-width: 900px;
    margin: auto;
}

.gallery-info-card:hover {
    box-shadow: #DE5D50 5px 5px;
    
}

.gallery-info-card {
    border-radius: 0px;
    max-width: 900px;
    border: none;
    box-shadow: #e0eae7 10px 10px;
    transition: box-shadow ease 0.3s;
}
.block-kkrich {
    margin-top: 3vw;
    margin-bottom: 3vw;
    color: var(--almost-white);
    background: var(--almost-transparent);
    transition: all 250ms ease-in-out;
    border-bottom: 0px solid;
}

.block-kkrich ul {
    list-style-type: square;
}

.block-kkrich:hover {
    border-bottom: 5px solid #DE5D50;
    transition: all 250ms ease-in-out;
    padding-left: 1vw;
}