/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=Orbitron:wght@500;700&display=swap');

/* Base Styles */
body {
  margin: 0;
  font-family: 'Crimson Pro', serif;
  background-color: #0b0c10;
  color: #eee;
  line-height: 1.7;
  font-size: 1.05rem;
}

.home-page-bg{
  background: url('../images/home-bg.webp') no-repeat center center fixed;
  background-size: cover;
  padding: 50px;
}
.single-page-bg{
  background: url('../images/the signal (2).webp') no-repeat center center fixed;
  background-size: cover;
  padding: 50px;
}
.cycle-page-bg{
  background: url('../images/the cycle.webp') no-repeat center center fixed;
  background-size: cover;
  padding: 50px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.8);
  z-index: -1;
}


/* Header */
header {
  background-color: #1c1f26;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #444;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  color: #d4af37;
  letter-spacing: 1px;
}

/* Navigation */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  position: relative;
}

nav ul li {
  position: relative;
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 1em;
  font-family: 'Orbitron', sans-serif;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d4af37;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1c1f26;
  min-width: 240px;
  border: 1px solid #333;
  z-index: 1000;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #ccc;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #2a2f38;
  color: #d4af37;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn {
  cursor: pointer;
}

/* Section Content Styling */
section {
  max-width: 900px;
  margin: 0px auto;
  margin-bottom: 30px !important;
  padding: 40px 30px;
  background-color: #121418;
  border: 1px solid #333;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.06);
}


section h2 {
  font-size: 1.9rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

section p {
  margin-bottom: 1.4rem;
  color: #ddd;
}

section ul {
  margin-bottom: 1.4rem;
  padding-left: 20px;
}

section ul li {
  list-style-type: square;
  margin-bottom: 0.8rem;
  color: #ccc;
}

.subtitle{
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Lyrics Styling */
.lyrics {
  white-space: pre-wrap;
  font-family: 'Crimson Pro', serif;
  line-height: 1.7;
  color: #ddd;
}

footer{
  background-color: #0b0c10 !important;
  padding: 40px 20px !important;
  width: 100% !important;
}

footer p{
  color: white !important;
}




 h1,h2,h3,h4 {
  font-family: 'Crimson Pro', serif !important;

}












.signal-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 30px;
  background-color: #121418;
  border: 1px solid #333;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
  line-height: 1.8;
  font-size: 1.1rem;
}

.signal-page h1 {
  color: #d4af37;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.signal-page p {
  margin-bottom: 1.5rem;
  color: #ddd;
}

.signal-page .breakout {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

a.link{
  color: #d4af37 !important;
}









label {
  font-weight: bold !important;
  color: #bbbbbb !important;
  display: block !important;
  margin-bottom: 5px !important;
}

input, textarea, select {
  width: 100% !important;
  padding: 10px;
  margin-bottom: 1rem !important;
  background-color: #333 !important;
  border: 1px solid #444 !important;
  color: #f5f5f5 !important;

}

textarea {
  height: 150px;
}

button {
  background-color: #d4af37;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #444;
  color: #f5f5f5;
}

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: bold;
}

.form-feedback.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-feedback.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}



.thank-you h2{

margin-bottom: 20px;
}

.thank-you a{
  padding: 15px 25px;
  color: black;
  background-color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
}