@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraLight.woff2') format('woff2'),
        url('../fonts/Barlow-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Italic.woff2') format('woff2'),
        url('../fonts/Barlow-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/Barlow-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Black.woff2') format('woff2'),
        url('../fonts/Barlow-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Bold.woff2') format('woff2'),
        url('../fonts/Barlow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Light';
    src: url('../fonts/Barlow-Light.woff2') format('woff2'),
        url('../fonts/Barlow-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-BlackItalic.woff2') format('woff2'),
        url('../fonts/Barlow-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraLightItalic.woff2') format('woff2'),
        url('../fonts/Barlow-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-BoldItalic.woff2') format('woff2'),
        url('../fonts/Barlow-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ExtraBold.woff2') format('woff2'),
        url('../fonts/Barlow-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-SemiBold.woff2') format('woff2'),
        url('../fonts/Barlow-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Barlow-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-MediumItalic.woff2') format('woff2'),
        url('../fonts/Barlow-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-ThinItalic.woff2') format('woff2'),
        url('../fonts/Barlow-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Thin.woff2') format('woff2'),
        url('../fonts/Barlow-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-LightItalic.woff2') format('woff2'),
        url('../fonts/Barlow-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Regular.woff2') format('woff2'),
        url('../fonts/Barlow-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Medium.woff2') format('woff2'),
        url('../fonts/Barlow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


html, body {
    height: 100%; /* Make sure the html and body are taking full height */
    margin: 0; /* Reset default margin */
    font-family: 'Barlow', Verdana;
    src: url('../fonts/Barlow-Regular.woff2') format('woff2'),
        url('../fonts/Barlow-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-size: 17px;
}

body {
    display: flex; /* Apply flex container to body */
    flex-direction: column; /* Arrange flex items in a column */
    min-height: 100vh; /* Ensure body is at least viewport height */
}


a,a:hover,a:focus {
    color: #008b8b;
    font-family: 'Barlow', Verdana;
    font-weight: 500;
}


p {
      font-size: 18px;  
}


main {
    flex: 1; /* This will make the main content expand to fill available space, pushing the footer down */
}



/* NAVBAR */

.navbar {
    background-color: #008b8b !important;
    padding: 0px;
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar-brand img {
    max-height: 90px;
    width: auto;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
    color: #ffffff !important;
    font-size: 1.2rem;
}

.nav-link:hover {
    color: #dda926 !important;
}

/* Adjust the navbar for mobile screens */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item + .nav-item {
        margin-left: 0;
    }

    .navbar-nav {
        margin-top: 15px;
    }
}



/* Ensure the container allows for flexible height adjustment */
.section-header .container {
    display: flex;
    /* flex-direction: column; */
    min-height: 100%; /* Minimum height to 100% of its parent or more based on content */
}

/* Make the row flexible but only as tall as needed */
/* .section-header .row {
/*    width: 100%;
/*    display: flex;
/*    flex-grow: 1; /* Allows the row to expand as needed within the container */
/*    align-items: center; /* Centers content vertically */
/* }

/* Apply Flexbox to the column and ensure content is centered without forcing height */
.section-header .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* HEADER */

.header-website {
    background-image: url('/images/bg-header.png?v2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    padding-top: 0px; /* Adjust as needed for vertical centering */
    padding-bottom: 0px; /* Adjust as needed for vertical centering */
}

.section-header img {
    max-width: 100%;
    height: auto;
}

        .zoom {

  transition: transform .2s; /* Animation */

}

.zoom:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center; /* This vertically centers the content */
    height: 100%; /* You might need to adjust this depending on your layout */
}

.card {
    border-radius: 0px;
}

.card-title {
    color: #ffffff;
}


/* ROUNDED IMAGES */

.img-rounded {
     border-radius: 14px;
}


/* SONGINFO */

.songinfo-card {
     max-width: 540px;
     /* background-color: rgba(255, 255, 255, 0.5); */
     background-color: #ffffff;
}

.songinfo-artist {
    /* color: #ffffff; */
    color: #008b8b;
    font-weight: bold;
    font-size: 20px;
}

.songinfo-title {
    color: #000000;
    font-size: 16px; 
    
}

playlist-body {
    padding: 0px !important;
}

playlist-card {
    border: 0px !important;
}

.playlist-artist {
    /* color: #ffffff; */
    color: #008b8b;
    font-weight: bold;
    font-size: 20px;
}

        
        
/* Hide splash image on smaller screens */
@media (max-width: 768px) {
  #splash-image {
    display: none;
  }

  #album-cover {
    margin-top: 2rem; /* Adjust the margin-top value as needed */
  }
} 


.footer-links {
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-links a {
    font-size: 14px;
}

.footer-bottom {
    font-size: 12px;
}


.footer-logo {
    height: 150px;
}


/* SQUARES */

  .block-square {
    width: 100%;
    height: 315px;
    position: relative;
    overflow: hidden;
  }

  .block-square-content {
    position: absolute;
    bottom: 0px;
    left: 10px;
   /* font-size: 18px; */
  }
  
.article-block-title {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Bold.woff2') format('woff2'),
        url('../fonts/Barlow-Bold.woff') format('woff');
    /* font-weight: bold; */
    font-style: normal;
    font-display: swap;
    color: #ffffff;
    text-decoration: none;
}

.article-block-title:hover, .article-block-title:focus  {
    /* font-weight: bold; */
    color: #dda926;
}



.article-wrap-image {
      float: left;
      margin-right: 15px;
    }





/* BUTTONS */

.btn {
    border-radius: 0px;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus {
    color: #ffffff;
    background-color: #008b8b;
    border-color: #008b8b;
}

.btn-outline-primary, .btn-outline-primary:hover, .btn-outline-primary:focus {
    color: #008b8b;
    background-color: #ffffff;
    border-color: #008b8b;
}

.btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: #008b8b;
    border-color: #008b8b;
}



.btn-secondary {
    color: #008b8b;
    background-color: #ffffff;
    border-color: #ffffff;
}
.btn-secondary:hover, .btn-secondary:focus {
    color: #008b8b;
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}


.btn-pill {
    color: #ffffff;
    background-color: #dda926;
    border-color: #dda926;
    border-radius: 25px;
}

.btn-pill:hover, .btn-pill:focus {
    color: #ffffff;
}



.color-1 {
    color: #008b8b !important;
}



.color-3 {
    color: #000000 !important;
}

.bg-1 {
    background-color: #008b8b !important;
}

.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.font-black {
        font-family: 'Brandon Grotesque Black';
        font-weight: 900;
    font-style: normal;
}



/* PLAYLIST */

.music-card {
  display: flex;
  align-items: center;
  padding: 5px;
}

.album-art img {
  max-width: 100px;
}

.music-info {
  flex-grow: 1;
  padding-left: 20px; /* Adjust the spacing as needed */
}

.artist {
  font-size: 20px;
  font-weight: bold;
  color: #008b8b; /* Replace with the exact color used in the design */
}

.title {
  font-size: 18px;
  color: #333;
}

.time {
  font-size: 14px;
  color: #333;
  padding-right: 20px; /* Adjust the spacing as needed */
  white-space: nowrap;
}


/* SCHEDULE */

.schedule-program {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Bold.woff2') format('woff2'),
        url('../fonts/Barlow-Bold.woff') format('woff');
    /* font-weight: bold; */
    font-style: normal;
    font-display: swap;
}

.schedule-presenter {
        font-family: 'Barlow Light';
        font-weight: bold;
    font-style: normal;
    font-size: 0.8em;
}


/* ARTICLE BLOCK */



/* NEW HEADER */



    /* Responsive Adjustments for Mobile Devices */
    @media (max-width: 576px) {
      header {
        height: 150px; /* Reduce header height on smaller screens */
      }
      .overlapping-card {
        width: calc(100% - 2rem); /* Full width minus gutters */
        height: auto; /* Reset height to allow aspect ratio */
        aspect-ratio: 1 / 1; /* Maintains square aspect ratio */
        bottom: -25px; /* Maintain overlap proportion */
        right: 1rem; /* Ensure the card doesn't exceed the viewport width */
        border-radius: 0.25rem; /* Optional: Rounded corners */
      }
    }
    
.custom-card {
  background-color: #f5c242;
  border-radius: 10px;
  padding: 20px;
  color: #ffffff;
  margin: auto;
}

.custom-card img {
  width: 80%;
}

.show-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.live-indicator {
  font-size: 1rem;
  margin-bottom: 20px;
}

.live-indicator .dot {
  color: #e74c3c; /* red */
  margin-right: 5px;
}

.live-indicator .label,
.live-indicator .time {
  color: #ffffff; /* white */
  margin-right: 5px;
}

.song-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.artist-name,
.song-title {
  color: white;
  font-size: 1rem;
}

.artist-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.song-title {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0;
}

.play-btn {
  background-color: #ffffff;
  border: none;
  color: #f5c242;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.play-btn:hover {
  background-color: #f5b534;
  color: #ffffff;
}

.custom-card .col-md-6 {
  min-height: 100%;
}
   .card-news {
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            /* aspect-ratio: 1 / 1; */
            font-weight: bold;
        }
        .info-card-news {
            background-color: #008080;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 1.25rem;
            font-weight: bold;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* aspect-ratio: 1 / 2; */
        }
        .info-card-news img {
            max-width: 100%;
            height: auto;
            margin-top: 10px;
        }