/* ============================================================
   === GLOBAL BASE STYLES (shared by all MoeStyle pages) ===
   ============================================================ */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-size: cover;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Header & Language Toggle (common structure) */
header {
  background: rgba(0, 0, 0, 0.6);
  padding: 2em;
  text-align: center;
  box-shadow: 0 0 20px #fca311;
}

h1 {
  font-size: 3em;
  margin: 0;
  text-shadow: 2px 2px 6px #000;
  color: #fca311;
}

.lang-toggle {
  margin-top: 1em;
}

.lang-toggle button {
  font-size: 1em;
  margin: 0 0.5em;
  padding: 0.4em 1em;
  background-color: #fca311;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Common intro section used in all pages */
.intro {
  margin: 2em auto;
  max-width: 800px;
  text-align: center;
  font-size: 1.2em;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1.5em;
  border-radius: 10px;
}

/* Footer shared by all */
footer {
  text-align: center;
  margin-top: 2em;
  font-size: 0.9em;
  color: #ccc;
}

/* ============================================================
   === MAIN PAGE (index.html) ===
   ============================================================ */

/* Background unique to main landing page */
body.main-page {
  background: url('../images/background.jpg') no-repeat center center fixed;
}

/* Yellow and blue theme for main intro */
.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.link-buttons a {
  background: #00ccff;
  color: black;
  text-decoration: none;
  font-weight: bold;
  padding: 1rem;
  border-radius: 8px;
  display: block;
  transition: background 0.3s;
}

.link-buttons a:hover {
  background: #ffcc00;
}

/* Responsive layout: buttons side-by-side on wider screens */
@media (min-width: 600px) {
  .link-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .link-buttons a {
    width: 200px;
  }
}

/* ============================================================
   === DJ PAGE (dj/index.html) ===
   ============================================================ */

/* DJ page background & glow theme */
body.dj-page {
  background: url('../images/background.jpg') no-repeat center center fixed;
  backdrop-filter: brightness(0.8);
}

/* Audio player section styling */
.audio-player {
  margin-top: 2em;
  background: rgba(0, 0, 0, 0.6);
  padding: 1em;
  border-radius: 10px;
  text-align: center;
}

.audio-player select {
  width: 100%;
  padding: 0.5em;
  border-radius: 5px;
  font-size: 1em;
  background: #fca311;
  color: black;
  border: none;
  margin-top: 0.5em;
}

/* Phone highlight section (orange glow) */
.phone-section {
  background: rgba(0, 0, 0, 0.6);
  padding: 2em;
  text-align: center;
  margin-top: 3em;
  box-shadow: 0 0 20px #fca311;
  color: #fca311;
  font-size: 1.8em;
  font-weight: bold;
  text-shadow: 1px 1px 5px #000;
}

/* ============================================================
   === APPS PAGE (apps/index.html) ===
   ============================================================ */

/* Apps page background shared with DJ page */
body.apps-page {
  background: url('../images/background.jpg') no-repeat center center fixed;
  backdrop-filter: brightness(0.8);
}

/* Container for demo videos */
.video-section {
  margin: 3em auto;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 10px;
  display: block;
}

/* Container for demo videos */
.feedback-section {
  margin: 3em auto;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 10px;
  display: block;
}

.video-section h2 {
  color: #00d9ff;
  margin-bottom: 1em;
  text-align: center;
}

/* Each video + title group */
.video-container {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-title {
  margin: 0.5em 0;
  text-align: center;
  font-weight: bold;
  color: #fca311;
}

/* Video appearance */
video {
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 10px #fca311;
  object-fit: contain;
}

/* Embedded Google Form section */
.form-wrapper {
  margin-top: 20px;
  border-top: 2px solid #fca311;
  padding-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-title {
  font-size: 1.1rem;
  color: #00d9ff;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.google-form-frame {
  width: 100%;
  max-width: 360px;
  height: 640px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px #fca311;
}

/* ============================================================
   === SHARED UTILITIES ===
   ============================================================ */

/* Helps visually center all small sections */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Subtle glow for any highlighted item */
.glow {
  box-shadow: 0 0 12px #fca311;
}
