/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=New+Rocker&display=swap');

::selection {
    background: #cd412b;
    color: #000000;
}
::-webkit-scrollbar-track
{
    background-color: #000000;

}

::-webkit-scrollbar
{
    width: 6px;
    background-color: red;
        border-radius: 0px;
}

::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    background-color: red
}

    

/* General */
body {font-family: 'Josefin Sans', sans-serif;}
h1, h2, h3, h4, h5, h6 {font-family: 'New Rocker', serif;}
ul {list-style:none;padding:0;}
/* Navigation bar */
nav {font-family: 'New Rocker', serif; font-size:1.1rem;font-weight: 700;}
nav .navbar-brand {line-height: 100%;}
nav .navbar-brand .a {
    font-family: 'Josefin Sans', serif;
    color: var(--bs-white)!important;
    font-weight: 700;
    font-size: 1.0rem;
    line-height: 1.0rem;
    text-transform:uppercase;
    
}
nav .navbar-brand .b {
    text-transform: uppercase;
    font-family: 'New Rocker', serif;
    color: var(--bs-primary)!important;
    font-weight: 500;
    display: block;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: 1px;
}
.scrolltop {
    background: linear-gradient(to bottom, #000000b0, transparent);
    
  }
  
.scroll {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    text-shadow:1px 1px 3px rgba(0,0,0,0.5);
}
.dropdown-menu{border-radius:0;}

.navbar-nav {--bs-nav-link-color:rgba(255, 255, 255, 0.75);--bs-navbar-hover-color: var(--bs-primary);}


/* Intro */
.intro {
    background: url('../bg.jpg') center/cover no-repeat;
    position: relative;
}

/* Create a pseudo-element for the blur effect */
.intro::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.75); /* Adjust the color and opacity as needed */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Apply the blur effect */
    backdrop-filter: blur(5px); /* Adjust the blur radius as needed */
}

/* Center text vertically and horizontally */
.intro-text {
    position: relative;
    z-index: 1; /* Ensure the text is above the pseudo-element */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #e6e6e6; /* Text color */
    text-shadow:1px 1px 3px rgba(0,0,0,0.5);
}

/* Style the text */
.intro-heading {
    font-size: 50px;
    xfont-weight: bold;
    color: var(--bs-primary);
}

.intro-subheading {
    font-size: 20px;
    font-weight: bold;
    text-transform:uppercase;
}


/* Footer */


footer .navbar-brand {line-height: 100%;}
footer .navbar-brand .a {
    font-family: 'Josefin Sans', serif;
    color: var(--bs-white)!important;
    font-weight: 700;
    font-size: 1.0rem;
    line-height: 1.0rem;
    text-transform:uppercase;
    
}
footer .navbar-brand .b {
    text-transform: uppercase;
    font-family: 'New Rocker', serif;
    color: var(--bs-primary)!important;
    font-weight: 500;
    display: block;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: 1px;
}

#hiddenadmin {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
}

/* Radio elements */
#previousTracks {line-height:1.5rem;}

#r666_player {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

#r666_player button#toggleButton:focus-visible {
    outline: 0;
}

#r666_player button {
    background: transparent;
    border: 0px solid red;
    color: red;
    font-size: 3rem;
    line-height: 1rem;
}


#r666_player input[type='range'] {
    overflow: hidden;
    width: 120px;
    -webkit-appearance: none;
    background-color: rgba(29, 29, 29, 0.795);
    border:0px solid rgba(255, 255, 255, 0.2);
    border-radius:5px;
  }
  
 #r666_player input[type='range']::-webkit-slider-runnable-track {
    height: 16px;
    -webkit-appearance: none;
    color: red;
    margin-top: -1px;
  }
  
#r666_player input[type='range']::-webkit-slider-thumb {
    width: 10px;
    -webkit-appearance: none;
    height: 16px;
    cursor: ew-resize; 
    background: #ff0000;
    box-shadow: -100px 0 0 100px #ff000060;
  }


#r666_requestbtn {
    text-transform: uppercase;
    color: inherit;
    border: 2px solid #e6e6e650;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    padding: 5px 5px 3px 5px;
    font-weight: 700;
}

#r666_requestbtn:hover {
    cursor:pointer;
    color: red;
    border: 2px solid red;
}

@keyframes infglow{
0%{
  text-shadow: 0 0 0px red;
}
50%{
  text-shadow: 0 0 20px red;
}
100%{
  text-shadow: 0 0 0px red;
}
}

.request_close.btn-close {
   --bs-btn-close-opacity: 1;

    opacity: 1;
}