/* ----------------------------------------- */
/* PART ONE - Default for the whole website  */
/* ----------------------------------------- */
body {
    background-color: black;
    font-family: 'Raleway', sans-serif;
}
/* Header and footer  */
.navbar-dark .navbar-nav .nav-link {
    color: #F7DCAF;
    font-size: 1.5rem;
}
.navbar-dark .navbar-brand {
    font-size: 2rem;
}
.navbar-dark .navbar-toggler-icon {
    color: #F7DCAF;
}
.navbar-dark {
    background-color: black;
}
.footerNav .navbar-nav .nav-link {
    color: #F7DCAF;
    font-size: 1.1rem;
}
.footerInfo {
    color: white;
    font-size: 1rem;
}
.footerInfo a {
    color: white;
    font-size: 1rem;
}
p a {
    color: #F7DCAF;
}
a:hover {
    color: #F7DCAF;
}
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right,  rgba(0, 0, 0, 0.75),white, rgba(0, 0, 0, 0.75));
}
#logoIcon {
    width: 4rem;
}
/* Title colour */
.title {
    color: white;
    margin-bottom: 1.5rem;
}
/* Navbar bottem border for pages other than index */
.headerNav {
    border-bottom: 3px double #F7DCAF;
}
/* Scrollbar  */
html {
    --scrollbarBG: #CFD8DC;
    --thumbBG: #90A4AE;
}
body::-webkit-scrollbar {
    width: 11px;
}
body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}
/* Back to top button  */
#topButton {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 2rem; /* Place the button at the bottom of the page */
    right: 1.5rem; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: transparent; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 1rem; /* Some padding */
    border-radius: 0.5rem; /* Rounded corners */
    font-size: 2rem; /* Increase font size */
}
#topButton:hover {
    background-color: rgb(36, 36, 36); /* Add a dark-grey background on hover */
}

/* ----------------------------------------- */
/*       PART TWO - Specific to contact      */
/* ----------------------------------------- */
#section1 {
    margin-top: 8rem;
}
.textBox {
    color: #F7DCAF;
    line-height: 1;
    font-weight: 100;
    font-size: 1.125rem;
}
#section2 {
    color: #F7DCAF;
}
#submitButton {
    color: #F7DCAF;
    background-color: rgb(36, 36, 36);
    border: rgb(36, 36, 36) solid 5px;
}
.form-control {
    background: black;
    color: #F7DCAF;
}
.form-control:focus {
    background: black;
    color: #F7DCAF;
}
.recaptcha {
    display: inline-block;
}
