/* General Page Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 60px;
  color: #faf6f6;
  background-color: rgb(193, 165, 24);
}

h1 {
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
  text-decoration: underline;
}

/* Background Video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #444;
}

nav a {
  color: #fff;
  padding: 1rem;
  text-decoration: none;
  display: block;
}

nav a:hover,
nav a.active {
  background: #555;
  font-weight: bold;
}

/* Main Content Container */
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* About Section */
.about-pg {
  margin-top: 2rem;
}

/* Accordion Section */
#accordion {
  width: 100%;
  margin: 2rem 0;
  background-color: transparent;
  color: inherit;
}

#accordion .ui-accordion-header {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 0;
  letter-spacing: 2px;
  background-color: #444;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  border-bottom: 2px solid #f4b400;
}

#accordion .ui-accordion-header:hover {
  background-color: #555;
}

#accordion .ui-accordion-content {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  color: white;
  border-left: 3px solid #f4b400;
  border-right: 3px solid #f4b400;
  border-bottom: 3px solid #f4b400;
}

.accordion-panel {
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 8px;
}

#performance-panel {
  background-image: url('img/MPEngineBay.jpg');
}

#interior-panel {
  background-image: url('img/MPInterior1.jpg');
}

#exterior-panel {
  background-image: url('img/carside.png');
}

#audio-panel {
  background-image: url('img/subs.png');
}

#upcoming-panel {
  background-image: url('img/soundproof.png');
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Sponsor Bubble Style */
#contact {
  background: #303132;
  color: #f2f2f2;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  width: 80%;
}

.sponsor-bubble {
  background-color: #444;
  border: 2px solid #f4b400;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sponsor-bubble h3 {
  color: #f4b400;
  margin-top: 0;
}

.sponsor-bubble a {
  color: #f4b400;
  text-decoration: none;
}

.sponsor-bubble a:hover {
  text-decoration: underline;
}

/* Square Box Style for Thank You Section */
#hours {
  background: #1e1e1e;
  color: #f2f2f2;
  padding: 2rem;
  margin: 2rem auto;
  width: 80%;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hours-box {
  background-color: #2a2a2a;
  border: 2px solid #f4b400;
  padding: 1.5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.hours-box h3 {
  margin-top: 0;
  color: #f4b400;
}

.hours-box ul {
  list-style: none;
  padding-left: 0;
}

.hours-box li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-box li:last-child {
  border-bottom: none;
}

.hours-box a {
  color: #f4b400;
  text-decoration: none;
}

.hours-box a:hover {
  text-decoration: underline;
}

.hours-note {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  color: #ccc;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
