/* Basic Styling */
@media (max-width: 768px) {
  /* Styles for smaller screens */
  .main-content {
    width: 90%; /* Make the content wider on smaller screens */
  }

  .feature-grid {
    flex-direction: column; /* Stack features vertically */
  }

  .contact-info {
    flex-direction: column; /* Stack contact image and email vertically */
  }
}

body {
  font-family: sans-serif;
  background-image: url("ballroom-dancers.jfif"); /* Set the background image */
  background-size: cover; /* Cover the entire viewport */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image repetition */
  background-attachment: fixed; /* Keep the background fixed while scrolling */
}

.dance-list {
  list-style: none; /* Remove bullet points */
  padding: 0;             /* Remove default padding */
  margin: 0;              /* Remove default margin */
  /* Add any other styles you want, such as: */
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333; 
}

.dance-list li {
  margin-bottom: 10px;  /* Add space between list items */
  border-bottom: 1px solid #eee; /* Add a separator line */
  padding-bottom: 5px;
}

.dance-category {
  margin-bottom: 30px; /* Add space between categories */
}

.dance-category h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #337ab7; /* Example color */
}

.dance-style {
  border: 1px solid #ddd; /* Add a subtle border */
  padding: 15px;
  margin-bottom: 10px;
  background-color: #f9f9f9; /* Light background */
  border-radius: 5px; /* Add rounded corners */
}

.dance-style h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #d9534f; /* Example color */
}

.dance-style p {
  line-height: 1.6; /* Improve readability */
}


.main-content {
  width: 70%; /* Set the width to 70% of the screen */
  margin: 0 auto; /* Center the content horizontally */
  padding: 20px; /* Add some padding for visual spacing (optional) */
  background-color: #f8f8f8; /* Light background */
}

.main-content h2 {
  color: #d9534f; /* Example: A reddish color */
}

.main-content h3 {
  color: #337ab7; /* Example: A bluish color */
}

.hero {
  text-align: center;
  padding: 50px 0;
  background-color: #f8f8f8; /* Light background */
}

.navbar {
  text-align:center;
  padding:5px 0;
  background-color: #ffffff; /* Light background */
  color: blue;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.feature-grid {
  display: flex;
  justify-content: space-around;
}

/* Pure CSS customizations */
.pure-button-primary {
  background-color: #3b8cfc; /* Example primary color */
  color: white;
  border-radius: 5px; /* Add rounded corners */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.pure-button-primary:hover {
  background-color: #2c78d6; /* Darker shade on hover */
}

.my-song-form input {
  width: 300px; 
}

/* Responsive design */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
}

.hero {
  position: relative; /* Required for positioning the image */
  text-align: center;
  padding: 50px 0; 
  width: 70%; /* Set the width to 70% of the screen */
  margin: 0 auto; /* Center the content horizontally */
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the image behind the content */
  overflow: hidden; /* Hide excess image */
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area */
  filter: blur(5px); /* Adjust blur amount as needed */
}

.contact-info {
  display: flex;
  align-items: center; /* Align items vertically */
  margin-bottom: 20px;
}

.contact-email {
  flex: 1; /* Allow the email to take up available space */
}

.footer {
  background-color: #333; /* Dark background color */
  color: white;
  padding: 20px 0; 
  text-align: center; /* Center the content */
}

.footer-content {
  max-width: 960px; /* Limit the width of the footer content */
  margin: 0 auto; /* Center the content horizontally */
}

.footer .logos {
  margin-top: 20px; 
}

.footer .logos img {
  height: 30px;
  margin: 0 10px; /* Add space between logos */
}

/* style.css */
.accordion {
  background-color: #eee; /* Light gray background */
  color: #444; /* Dark gray text */
  cursor: pointer; /* Indicate it's clickable */
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s; /* Add a transition for smoother opening/closing */
}

/* Add a background color on hover */
.active, .accordion:hover {
  background-color: #ccc; 
}

/* Style the accordion panel */
.panel {
  padding: 0 18px;
  display: none; /* Hidden by default */
  background-color: white;
  overflow: hidden;
}

/* Quiz Container */
.quiz-container {
  width: 70%;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9); /* More opaque white background */
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Quiz Title */
.quiz-container h1 {
  text-align: center;
  color: #337ab7; /* Blue color */
  margin-bottom: 20px;
}

/* Question Sections */
.quiz-container h2 {
  color: #d9534f; /* Reddish color */
  margin-top: 20px;
}

/* Individual Questions */
.question {
  margin-bottom: 15px;
}

.question label {
  display: block; 
  margin-bottom: 5px;
}

.question input[type="radio"] {
  margin-left: 20px; /* Add indentation for radio buttons and checkboxes */
}

.question select, 
.question input[type="range"] { 
  width: 80%; /* Make select and range inputs wider */
  margin: 0 auto; /* Center the inputs */
  display: block; /* Place them on their own line */
} 


/* Input Elements (Radio buttons, select, range) */
.question input[type="radio"],
.question input[type="range"],
.question select {
  margin-bottom: 10px;
}

/* Submit Button */
input[type="submit"] {
  background-color: #337ab7; /* Blue color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #2c78d6; /* Darker blue on hover */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .quiz-container {
    width: 90%;
  }
}