/* Global Styles - Black background and White text */
/* Body section settings */
body {
  font-family: 'Eras Bold ITC'', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #000000;
  margin: 0;
  padding: 20px;


/* Responsive Image Rules */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Optional: Typography and Containers for better readability */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

a {
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 100%; /* or 800px */
    margin: 0 auto;
} 
    
 /* Navigation Bar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
}

/* Brand/Logo Styling */
.nav-logo a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

/* Navigation Links Container */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
}

/* Individual Links */
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

/* Hover State */
.nav-links a:hover {
  background-color: #555;
  color: #00bcd4;
}
  
 /* Mobile Responsive Rules */
@media (max-width: 768px) {
  /* Stack the logo and links vertically */
  .navbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Make links grid-like or rows, but cleanly spaced */
  .nav-links {
    flex-direction: row; /* Forces horizontal row */
    flex-wrap: wrap;     /* Allows wrapping if words are too long */
    justify-content: center;
    gap: 10px;
  }

  /* Adjust padding for easier thumb-tapping */
  .nav-links a {
    font-size: 16px;
    padding: 10px 15px;
  }

.mp3-player {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  background: #f2f2f2;
  border-radius: 8px;
  font-family: sans-serif;
  margin-bottom: 12px;
}
.mp3-play-btn, .mp3-stop-btn {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 14px;
}
.mp3-seek {
  flex: 1 1 auto;
  min-width: 0;
}
.mp3-volume {
  width: 80px;
  flex-shrink: 0;
}
.mp3-time {
  flex-shrink: 0;
  font-size: 13px;
  color: #333;
  min-width: 40px;
  text-align: center;
}
.mp3-vol-icon {
  flex-shrink: 0;
}

/* By default, hide the blocking overlay */
#rotate-overlay {
  display: none;
}

/* Detect mobile screens in PORTRAIT mode */
@media screen and (max-width: 767px) and (orientation: portrait) {
  #rotate-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    color: #fff;
    z-index: 99999;
    text-align: center;
    font-size: 1.5rem;
    padding: 20px;
  }
  
  /* Hide your main content until they rotate */
  #site-content {
    display: none;
  }
}
