/* JONESTIME MEDIA - (C) 2025  ALL RIGHTS RESERVED */

/* Fonts */ 
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color: #4e4e4e; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a090f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #14bf98; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #113448; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #14bf98; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #0078ff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #3393ff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/******** GENERAL STYLES ********/
* {
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: #0f0e0f00;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.content-center {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.center {
  margin: 0;
  position: relative;
  top: 50%;
  left: 48%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/**** Image Position ****/
.img_left {
  float: left;
  padding: 0 12px 0 0;
}

.img_right {
  float: right;
  padding: 0 0 0 12px;
}

.img_center {
  margin: auto;
  display: flex;
}

.space-20 {
  padding: 10px 0 10px 0;
}

.space-30 {
  padding: 15px 0 15px 0;
}

.space-40 {
  padding: 20px 0 20px 0;
}

.space-80 {
  padding: 40px 0 40px 0;
}

.space-600 {
  padding: 300px 0 300px 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #0f0e0f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: #000000;
  border-bottom: .2px solid rgba(255, 0, 0, 0.274);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .dropdown-items-divide-hr {
    width: 100%;
    height: 1px;
    margin: 0.75rem auto 0.75rem auto;
    border: none;
    background-color: #b5bcc4;
    opacity: 0.2;
  }

  .navmenu .dropdown-items-divide-hr {
    width: 84%;
}

}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/******** FOOTER ********/
.footer {
  padding-top: 5rem;
  background-color: #113448;
}

.footer .text-container {
  margin-bottom: 2.25rem;
}

.footer h4 {
  margin-left: 68px;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer p,
.footer ul {
  font-size: 0.875rem;
  line-height: 1.375rem;
}

.footer-links h4 {
  margin-left: 30px;
  margin-bottom: 20px;
}

.footer .foot-abt {
  width: 470px;
}

.copyright {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background-color: #113448;
  text-align: center;
}

.copyright p,
.copyright a {
  color: #dfe5ec;
  text-decoration: none;
}

.copy-clr {
  margin-top: 30px;
}

.copy-clr a {
  text-decoration: none;
  color: cornsilk;
}

.widget h4 {
  margin-left: 32px;
}

.about {
  color: #fff;
}

.cornsilk {
  color: cornsilk;
}

.words {
  margin-bottom: 25px;
  color: rgb(155, 151, 135);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin: 0;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/******** RADIO HEADER ********/
.rhead {
  background: linear-gradient(rgba(0, 0, 0, 0.466), rgba(0, 0, 0, 0.315)), url('../img/ticktock/ticktock_bg.jpg') center center no-repeat;
  background-size: cover;
}

.rhead .rhead-content {
  padding-top: 3.5rem;
  padding-bottom: 2.125rem;
  text-align: center;
  min-height: 750px;
}

/**** Radio Streams ****/
.rhead .station-head {
  margin: 0 auto;
  height: 750px;
}
.rhead .station-head h1 {
  padding-bottom: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 38px;
  word-spacing: .2em;
  text-transform: uppercase;
  color: red;
}

.rhead .station-head span {
  letter-spacing: .1rem;
  font-family: "Playwrite CO", cursive;
  font-optical-sizing: auto;
  font-size: 15px;
  font-weight: 200;
  font-style: normal;
  color: #fdeaea;
}

.rhead .station-head h2 {
  padding-top: 60px;
  padding-bottom: 35px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 28px;
  word-spacing: .4em;
  text-transform: uppercase;
  color: rgb(132, 0, 255);
}

/********* SCANNER STREAMS **********/
.station-head-time h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F3FEB8;
}
.station-head-time h2 {
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 25px;
  word-spacing: .6em;
  text-align: center;
  text-transform: uppercase;
  color: #FFDE4D;
}

.station-head-time h3 {
  letter-spacing: .1rem;
  font-family: "Playwrite CO", cursive;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  color: #FFB22C;
}

.tcontainer {
	margin: 0 auto;
  max-width: 230px;
  background-color: rgba(88, 63, 63, 0.397);
  border-radius: 10px;
}
.time {
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	margin-top: 20px;
	color: #D1F8EF;
}

#img-seal {
  margin-top: 50px;
  margin-left: 3%;
}

#backsta {
  margin-left: 4%;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #caccd8;
}

#backsta a {
  text-decoration: none;
  color: #a7989c;
}

.status {
  display: flex;
  align-items: center;
}

#status-text {
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #caccd8;
}

.indicator {
  margin-left: 44%;
  margin-right: 10px;
  margin-bottom: 25px;
  width: 40px;
  height: 15px;
  border-radius: 6%;
}
.checking {
  background-color: #FFC107;
}
.online {
  background-color: #4CAF50;
}
.offline {
  background-color: #F44336;
}

/*********** RADIO CONTROLS **********/
.rcontrols {
  margin: 0 auto;
}

.ap {
	background: #000;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	max-height: 100%;
	margin: auto;
	font-family: Arial, sans-serif;
	font-size: 14px;
	user-select: none;
	color: #333;
	background: rgba(0, 0, 0, 0.06);
	opacity: 0.9;
	border-top: 1px solid rgba(255, 255, 255, 0.19);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	-webkit-transition: all 30s ease-in-out;
	-moz-transition: all 30s ease-in-out;
	-o-transition: all 30s ease-in-out;
	transition: all 1s ease-in-out;
}

.ap-inner {
	max-width: 100%;
	margin: 0 auto;
}

.ap-panel {
	display: flex;
	background: #000;
}

.ap-item {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
}

.ap--track {
	flex: 1 40%;
	padding: 0 20px;
}

.ap-info {
	width: 100%;
	position: relative;
	align-self: flex-start;
	padding: 5px 0 0;
}

.ap-title {
	position: relative;
	overflow: hidden;
	padding-right: 80px;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #ffffff;
}

.ap-title:hover {
	position: relative;
	overflow: hidden;
	padding-right: 80px;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #ff4500;
	font-weight: bold;
}

.ap-time {
	position: absolute;
	top: 5px;
	right: 0;
	color: #ffffff;
}

.ap-time:hover {
	position: absolute;
	top: 5px;
	right: 0;
	color: #ff4500;
	font-weight: bold;
}

.ap-progress-container {
	padding: 5px 0 10px;
	cursor: pointer;
}

.ap-progress {
	position: relative;
	height: 3px;
	border-radius: 5px;
	background: #fff;
}

.ap-preload-bar,
.ap-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	border-radius: 5px 0 0 5px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 999;
}

.ap-bar {
	background: #ff4500;
	z-index: 9999;
}

.ap-bar:after {
	position: absolute;
	top: 0;
	right: -5px;
	width: 12px;
	height: 12px;
	margin-top: -4px;
	content: "";
	border-radius: 6px;
	background: #ff4500;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ap-progress-container:hover .ap-bar:after {
	opacity: 1;
}

.ap-controls {
	position: relative;
	z-index: 1000;
	display: block;
	height: 50px;
	cursor: pointer;
	transition: background 0.2s ease;
	text-align: center;
	color: EEEEEE;
	border: 0;
	outline: 0;
	background: none;
}

.ap-controls svg {
	fill: #fff;
}

.ap-controls:hover svg {
	fill: #ff4500;
}

.ap-controls:active {
	background: rgba(0, 0, 0, 3);
}

.ap--playback>.ap-controls,
.ap--settings>.ap-controls {
	flex: 0 25%;
}

.ap--pause,
.playing>.ap--play {
	display: none;
}

.playing>.ap--pause {
	display: inline;
}

.ap-volume-container {
	z-index: 9999;
}

.ap-volume {
	position: absolute;
	right: 0;
	bottom: 50px;
	overflow: hidden;
	width: 100%;
	height: 0;
	cursor: pointer;
	visibility: hidden;
	transition: height 0.9s cubic-bezier(0.17, 0.72, 0.26, 1.23);
	background: rgba(255, 255, 255, 0.02);
	opacity: 0.7;
	border: 1px solid rgba(255, 255, 255, 0.02);
	border-bottom: 0;
	z-index: 9999;
}

.ap-volume-btn {
	display: block;
	text-align: center;
	width: 100%;
    background-color: #000;
    border: none;
}

.ap-volume-btn>.ap--volume-off,
.muted>.ap--volume-on {
	display: none;
}

.muted>.ap--volume-off {
	display: inline;
}

.ap-volume-container:hover {
	background: #000;
}

.ap-volume-container:hover .ap-volume {
	height: 120px;
	visibility: visible;
}

.ap-volume-progress {
	display: block;
	width: 4px;
	height: 100px;
	margin: 10px auto;
	background: rgba(0, 0, 0, 0.2);
	position: relative;
	border-radius: 3px;
}

.ap-volume-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ff4500;
	height: 50%;
	border-radius: 3px;
}

.ap-active {
	background: rgba(0, 0, 0, 0.15);
	opacity: 1;
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.playing>.ap--pause {
	animation: blink 1.5s linear infinite;
}

@media (max-width: 880px) {
	.ap-item>.ap-controls {
		flex: 1;
	}
}

@media (max-width: 550px) {
	.ap {
		min-width: 250px;
	}

	.ap,
	.ap-panel {
		height: auto;
	}

	.ap-panel {
		flex-wrap: wrap;
	}

	.ap--track {
		margin-bottom: 10px;
		padding: 0 20px;
		order: 1;
		flex: 1 1 100%;
	}

	.ap--playback,
	.ap--settings {
		flex: 1 1 50%;
		order: 2;
	}
}

::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: #ff4500;
}

@keyframes eq {
	0% {
		height: 3px;
	}

	50% {
		height: 20px;
	}

	100% {
		height: 3px;
	}
}

.eq {
	display: flex;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: flex-end;
}

.eq-bar {
	width: 4px;
	background: rgb(255, 250, 250);
}

.eq-bar:nth-child(1) {
	animation: eq 0.8s ease-in-out infinite 0s;
}

.eq-bar:nth-child(2) {
	animation: eq 0.8s ease-in-out infinite 0.2s;
}

.eq-bar:nth-child(3) {
	animation: eq 0.8s ease-in-out infinite 0.4s;
}

#overflow {
	white-space: nowrap;
	max-width: 25em;
	overflow: hidden;
}

