/*
 * Custom CSS for CumulusClips.
 * Theme: Starbound School
 * Background: Light orange and yellow gradient
 * Title: "Starbound School"
 */

/* General body styling for the gradient background */
body {
  background: linear-gradient(to bottom, #ffe8a3, #ffc977);
  background-attachment: fixed; /* Ensures the gradient stays in place on scroll */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

/* Header and title styling */
.header .logo {
  /* Set the width and height of the logo container */
  width: 250px;
  height: 50px;
  /* Hide the default logo image */
  background-image: none;
  background-color: transparent;
  text-align: center;
  line-height: 50px;
  font-size: 28px;
  font-weight: bold;
  color: #8c4b00; /* Darker text color for the title */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); /* Adds a subtle shadow for readability */
}

/* Change the title text */
.header .logo a {
  text-decoration: none;
  color: inherit;
}

.header .logo a::before {
  content: "Starbound School";
}

/* Other site elements to match the theme */
.navbar {
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white for the navigation bar */
  border-bottom: 1px solid #ffc977;
  border-radius: 8px;
}

.navbar .nav > li > a {
  color: #666;
  font-weight: 500;
}

.navbar .nav > li > a:hover {
  background-color: #ffc977;
  color: #fff;
}

/* Card and container styling */
.well, .thumbnail, .container {
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent background for containers */
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
  background-color: #ff8c00;
  border-color: #e67e00;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background-color: #e67e00;
  border-color: #cc6c00;
}

/* Video player controls */
.flowplayer .fp-controls {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Footer styling */
.footer {
  color: #666;
  text-align: center;
  padding: 20px 0;
  background-color: transparent;
}
