/* Root */
#landing-page {
    /* variable color */
    --primary-color: #f8b1b3;
    --gray-color: #ddd;
    --black-color: #17191c;
    font-size: 20px;    
}

/* Additional styling on top of Bootstrap */
#landing-page body {
    /*background-image: url("../../assets/img/dark-background.jpg");
    background-size: 100%;
    background-repeat: no-repeat;*/
    background-color: var(--black-color);
    color: #e8e8e8;
}

#landing-page body.animated {
    margin: auto;
    overflow: auto;
    background: linear-gradient(315deg, rgb(47, 7, 44) 3%, #404040 38%, #17191c 68%, #f8b1b3 98%);
/*    animation: gradient2 20s ease infinite;*/
    background-size: 400% 400%;
    background-attachment: fixed;
    background-position: 0% 50%;
}


#landing-page h1, #landing-page h2, #landing-page h3 {
    color: white;
    text-align: center;
    font-family: "Rubik", sans-serif;
}

#landing-page h3 {
    text-align: left;
}

#landing-page h1 {
    /*color: #bfbfbf;*/
}

#landing-page h1 .emphasis {
    color: white;
}

#landing-page h2.stylized {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: auto;
    background: white;
    color: black;
    box-shadow: -10px 10px 0 #f69192, -20px 20px 0 #c67071
}

/*
#landing-page .top-margin {
    margin-top: 5rem !important;
}*/


#landing-page #landing-logo {
    height: 30px;
}

#landing-page #landing-footer-logo {
    height: 20px;
}

@media (min-width: var(--xs-breakpoint)) {
    #landing-page #landing-logo {
        height: 40px;
    }
}


.navbar-dark .navbar-nav .nav-link {
    font-family: "Rubik", sans-serif;
    color: var(--gray-color);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}

#description {
    max-width: 530px;
    margin: auto;
    text-align: center;
}

#footer-title {
    font-size: 1.5rem;
}

.sep {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mw-400 {
    margin: auto;
    max-width: 600px;
}

.mw-600 {
    margin: auto;
    max-width: 600px;
}


.gradient-text {
    display: inline;  /* Keep the span inline with other text */
    background: linear-gradient(to right, var(--primary-color), white);
    background-size: 200% 200%;  /* Extend the background size for a smooth transition */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;  /* Make the text color transparent to show the background */
    animation: gradient-animation 3s ease-in-out infinite;  /* Apply the animation */
}

.filled-text {
    color: var(--primary-color);
}


#landing-page .btn-primary {
    text-transform: uppercase;
/*    box-shadow: 0.3em 0.25em 0 var(--primary-color);*/
    border-radius: 0;
    background: var(--black-color);
    border: 4px solid white;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: 1rem;
    color: white;
}

#landing-page .btn-primary:hover {
    background: white;
    /*color: var(--primary-color);*/
/*    box-shadow: 0.4em 0.35em 0 var(--primary-color);*/
    color: #6a4b4c;
}

#landing-page .btn-secondary {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;

    /* copied from size=lg, color=black */ 
    background: white;
    color: black;
    border: calc(0.0625rem * var(--mantine-scale)) solid black;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.1s background ease;

    margin-left: 0.5em;
    margin-right: 0.5em;
}

#landing-page .btn-secondary:hover {
    background: #f0f0f0;
    color: black;
    border-color: transparent;
}

#landing-page #gallery .row {
    justify-content: center;
}

.placeholder-anim {
    width: 300px;
    height: 300px;
    background: gray;
    margin: auto;
}

.placeholder-img {
    display: block;
/*    width: 150px;*/
    height: 150px;
    background: white;
    margin: auto;
    border: 5px solid #d7d3d3;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: var(--xs-breakpoint)) {
    .placeholder-anim {
        width: 400px;
        height: 400px;
    }
    .placeholder-img {
        width: 200px;
        height: 200px;
    }
}

#landing-page video {
    border-radius: 10px;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 500px;
}


#faqAccordion {
    max-width: 900px;
    margin: auto;
}

.accordion {
    font-size: 0.9rem;
}

.accordion-item {
    background-color: #333;
    /*border: 1px solid #444;*/
}

.accordion-button {
    background-color: #222;
    color: #fff;
}

.accordion-button.collapsed {
    background-color: #333;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: #ddd;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #111;
}


.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8b1b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


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

.p-outline {
    position: relative;
    padding: 1rem;
    margin-bottom: 1.6em;
    background-color: black;
/*    box-shadow: 0.6em 0.6em 0 var(--gray-color);*/
    font-weight: bold;
    color: var(--primary-color);
    border: 1px solid white;
}

.p-outline::before {
    position: absolute;
    right: -20px;
    top: -20px;
    content: "";
    width: 50px;
    height: 50px;
    padding: 5px;
    background-color: black;
    background-image: url("../../assets/img/icon-black-contour.svg");
    background-size: 100%;
    border-radius: 100%;
}


#footer {
    font-size: 0.8rem;
    color: var(--gray-color);
}

#footer a {
    color: var(--gray-color);
    text-decoration: none;
}

#footer a:hover {
    color: white;
    text-decoration: underline;
}
