body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Century Gothic', Arial, sans-serif;
  color: #333;
  background-color: #ffffff00;
  background-repeat: repeat;
}
/* Specific styles for HOLYARD and PRODUCTIONS */
.custom-font {
  font-family: Arial, sans-serif;/* Custom font for h1 and h2 */
  color: #fff; /* White or any preferred color */
  text-transform: uppercase;
  margin: 0;
}

#hol-yard-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 900px;
}

.hol-yard {
  --logo-size: 160px;
  --logo-opacity: 0.12;
  --logo-blur: 0.8px;
  --logo-depth: 0px;
  position: absolute;
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  opacity: var(--logo-opacity);
  animation: floatRotate 20s ease-in-out infinite;
  filter: blur(var(--logo-blur)) brightness(0.95) saturate(0.75) contrast(1.08) drop-shadow(0 16px 36px rgba(0, 0, 0, 0.18));
  will-change: transform;
}

.hol-yard:nth-child(1),
.hol-yard:nth-child(4) {
  --logo-size: 118px;
  --logo-opacity: 0.08;
  --logo-blur: 1.6px;
  --logo-depth: -140px;
  animation-duration: 24s;
}

.hol-yard:nth-child(2),
.hol-yard:nth-child(5) {
  --logo-size: 150px;
  --logo-opacity: 0.11;
  --logo-blur: 1px;
  --logo-depth: -60px;
  animation-duration: 21s;
}

.hol-yard:nth-child(3) {
  --logo-size: 190px;
  --logo-opacity: 0.15;
  --logo-blur: 0.35px;
  --logo-depth: 40px;
  animation-duration: 22s;
}

@keyframes floatRotate {
  0%, 100% { 
    transform: translate3d(0, 0, var(--logo-depth)) rotate(0deg) scale(1);
  }
  50% { 
    transform: translate3d(0, -18px, var(--logo-depth)) rotate(180deg) scale(1.03);
  }
}

body > :not(#hol-yard-container):not(#popup) {
  position: relative;
  z-index: 1;
}

body > header:not(#hol-yard-container):not(#popup) {
  position: relative;
  z-index: 30;
}

@media (max-width: 640px) {
  #hol-yard-container {
    perspective: 700px;
  }

  .hol-yard {
    --logo-size: 108px;
    --logo-opacity: 0.09;
  }

  .hol-yard:nth-child(3) {
    --logo-size: 140px;
    --logo-opacity: 0.12;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  background: linear-gradient(to right, #000, #333); /* Add a gradient for depth */
  color: #fff;
  padding: 10px 20px; /* Add some padding for spacing */
  height: 100px; /* Set a specific height */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* Box shadow (box-shadow: 0 2px 8px) gives the header subtle depth. */
}

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

.logo img.production-logo {
  height: 120px;
  margin-left: 10px;
  margin-bottom: -5px;
}

.logo .logo-text {
  color: #fff;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: -5px;
}

.logo .logo-text h1,
.logo .logo-text h2 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo .logo-text h1 {
  font-size: 50px;
}

.logo .logo-text h2 {
  font-size: 32px;
margin-top: -10px;
}

.logo-text a {
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Inherits the color from the parent element */
}

.logo-text a:hover {
  color: inherit; /* Ensures the color stays the same on hover */
}


nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

nav ul li {
  position: relative;
  right: -20px; /* Moves the entire nav to the left */
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin-right: 40px;
  font-family: 'Century Gothic';
  font-style: bold;
  font-size: 20px;
}


/* Dropdown Container */
nav ul li.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  top: 100%;
  left: 0;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* Dropdown Links */
nav ul li .dropdown-content a {
  font-weight: normal;
  color: rgb(255, 255, 255);
  padding: 12px 19px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Change color on hover */
nav ul li .dropdown-content a:hover {
  color: #ffffff; /* Change this color to whatever you prefer */
}

/* Highlight Dropdown Links with Background on Hover */
nav ul li .dropdown-content a:hover {
  background-color: #b7ee53; /* Background color on hover */
}

/* Show the Dropdown Menu on Hover */
nav ul li.dropdown:hover .dropdown-content,
nav ul li.dropdown:focus-within .dropdown-content {
  display: block;
}
nav ul li a#explore {
  display: inline-flex;
  align-items: center;
}

nav ul li a#explore:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  margin-left: 10px;
  transition: border-top-color 0.3s;
}

nav ul li a#explore:hover:after {
  border-top-color: #ff0;
}

.featured-section {
  background-color: rgb(253, 229, 12);
  padding: 0px;
  text-align: center;
  margin-left: -150px;
}

.featured-section .featured-image {
  max-width: 100%;
  height: auto;
}

.featured-section > .featured-image > img {
  max-width: 100%;
  height: auto;
}

.featured-section .featured-text {
  padding: 10px;
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  margin-left: 230px;
  font-family: 'Montserrat';
}

.article-content {
  padding: 20px;
  text-align: center;
}

.article-header {
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: 28px;
  color: #232121;
  font-weight: bold;
  margin: 0 0 10px 0;

}

.article-meta {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}
.custom-font2 {
  font-family: Arial, sans-serif;
  color: #000000;
}
.author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #000000;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.author span {
  font-size: 16px;
  font-weight: bold;
  font-family: 'Century Gothic';
}

.article-body {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.article-body p {
  margin: 0;  /* Ensure no extra space between paragraphs */
  line-height: 1.6;  /* Adjust line height for readability */
  font-family: "Montserrat";
  font-size: 17px;
  font-family: 'Century Gothic';
}

.video-feature {
  margin-top: 30px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.video-feature__frame {
  padding: 0;
  border: 0;
  background: transparent;
}

.video-feature__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.video-feature__screen--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #111;
}

.video-feature__watch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", "Century Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.video-feature__watch-link:hover,
.video-feature__watch-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}


footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 0px;
  height: auto;
}

.footer-social-media {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.footer-social-media a img {
  width: 30px;
  margin: 0 1px;
  transition: transform 0.3s ease;
}
.footer-social-media a img:hover {
  transform: scale(1.2);
}

@media (min-width: 641px) and (max-width: 1364px) {
  .featured-section {
    margin-left: 0;
  }
}

@media (min-width: 1365px) and (max-width: 2051px) {
  .featured-section.article-hero {
    margin-left: 0;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  header {
    height: auto;
    min-height: 100px;
    flex-wrap: wrap;
  }

  nav {
    flex: 1 0 100%;
    overflow-x: auto;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  nav ul li {
    right: auto;
  }

  nav ul li a {
    margin-right: 0;
  }

  header nav ul {
    column-gap: 20px;
    row-gap: 10px;
  }
}

@media (min-width: 1024px) {
  nav ul li.dropdown .dropdown-content {
    left: auto;
    right: 20px;
  }
}

@media (max-width: 640px) {
  header {
    height: auto;
    min-height: 92px;
    padding: 8px 12px;
    gap: 8px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo img.production-logo {
    height: 78px;
    margin: 0 6px 0 0;
    flex: 0 0 auto;
  }

  .logo .logo-text {
    min-width: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .logo .logo-text h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .logo .logo-text h2 {
    font-size: clamp(20px, 6.5vw, 26px);
    margin-top: 0;
  }

  nav {
    flex: 1 0 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 4px 0 0;
    padding: 0;
  }

  nav ul li {
    right: auto;
    margin: 0;
  }

  nav ul li a {
    font-size: 12px;
    margin-right: 0;
    padding: 6px 8px;
  }

  nav ul li .dropdown-content {
    right: 0;
    left: auto;
  }

  .featured-section .featured-text {
    margin-left: 0;
    padding: 10px 12px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  main,
  .featured-section,
  .article-content {
    max-width: 100%;
    box-sizing: border-box;
  }

  .featured-section {
    margin-left: 0;
  }

  .article-header h1 {
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1.18;
    padding: 0 12px;
    overflow-wrap: anywhere;
  }
}

.spaced-paragraph {
  margin: -07px 0;
  line-height: 0.6;
  font-size: 22px;
  font-family: 'Century Gothic';
  margin-bottom: 20px;
  color: #fff;
}

.footer-newsletter p {
  margin: 0;
}

#newsletter-form input[type="email"]::placeholder {
  color: #b0b0b0;
  font-style: Regular;
  font-family: 'Century Gothic';
}

#newsletter-form input[type="email"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 17px;
  color: #333;
  background-color: #fff;
  margin-right: 8px;
}

#newsletter-form button {
  padding: 10px 40px;
  border: none;
  background-color: #b7ee53;
  color: #000000;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

#newsletter-form button:hover {
  background-color: #b7ee53;
}

#search {
  padding: 15px;
  margin-top: 20px;
  border: 3px solid #ffffff;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  background-color: #b7ee53;
  width: 320px;
}

#search::placeholder {
  color: #fff;
  font-style: light;
  font-family: 'Century Gothic';
  font-style: bold;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  color: #ffffff; /* Default color */
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth color and transform transition */
}
.footer-link:hover {
  color: #b8ee5339; /* New color on hover */
  transform: scale(1.1); /* Optional: Slightly enlarge the text for a flowing effect */
  font-weight: bold; /* Optional: Make text bold on hover */
}

.footer-links a {
  color: #99caff;
  text-decoration: none;
  margin: 1px 0;
  font-style: Regular;
  font-family: 'Century Gothic';
}

.footer-copy {
  margin-top: 5px;
}

.footer-copy p {
  color: #fff;
  margin: 2;
  font-style: bold;
  font-family: 'Comic Sans MS';
}


/* Popup styles */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 0); /* Yellow background with slight transparency */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: visible; /* Initially visible */
  opacity: 1;
  transition: visibility 0s linear 0.5s, opacity 0.5s ease-in-out;
}

.spinning-logo {
  width: 100px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}


  /* Optional: Add a specific rule if you want to target only the links under the featured text and author sections */
  .featured-text a,
  .author a {
    text-decoration: none;
  }
  .article-meta a{
    text-decoration: none;
  }

/* Preserve the approved mobile wordmark; separate the wider brand lines. */
@media (min-width: 641px) {
  .logo .logo-text h2 {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hol-yard,
  .spinning-logo {
    animation: none;
  }

  .article-body,
  .popup-container {
    transition: none;
  }

  .popup-container {
    opacity: 0;
    visibility: hidden;
  }
}

  .music-banner {
    position: fixed;
    bottom: 10px; /* You can adjust this to make it appear from the bottom */
    left: 50%; /* Align the left edge of the banner to the middle of the page */
    transform: translateX(-50%); /* Shift the banner left by 50% of its width to center it */
    height: 50px;
    width: 80%; /* Set the width to a percentage or fixed value */
    background-color: rgba(255, 255, 255, 0.148);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Ensure it appears above other elements */
}

.album-cover {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.song-details {
    display: flex;
    flex-direction: column;
}

.song-title {
    font-size: 16px;
    font-weight: bold;
    color: #00ed4f;
}

.artist-name {
    font-size: 14px;
    color: #fff0f0;
}

.playback-controls {
    display: flex;
    align-items: center;
}

.play-button {
    background-color: transparent;
    border: none;
    font-size: 24px;
    margin-right: 20px;
    cursor: pointer;
}

.progress-container {
    display: flex;
    align-items: center;
}

.progress-bar {
    width: 200px;
    margin: 0 10px;
}

.current-time, .remaining-time {
    font-size: 14px;
    color: #ffd500;
}

.music-logo img {
    width: 40px;
}



