/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* ===== Header ===== */
header {
  background-color: #e53935; /* bright red */
  color: white;
  padding: 1rem 0;
  text-align: center;
}

header h1 {
  font-size: 2rem;
}

/* ===== Main Content ===== */
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

/* ===== Schedule Link ===== */
.schedule-link {
  text-align: center;
  margin: 2rem 0;
}

.schedule-link a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e53935;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.schedule-link a:hover {
  background-color: #c62828; /* darker red hover */
}

/* ===== Class Panels ===== */
.class-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.panel {
  background-color: #fff;
  border: 2px solid #e53935;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel h3 {
  color: #e53935;
  margin-bottom: 0.75rem;
}

.panel p {
  font-size: 1rem;
  color: #555;
}

.panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* ===== Footer Navigation ===== */
footer {
  background-color: #333;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

footer nav ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

footer nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: #e53935;
}

footer nav a.active {
  font-weight: bold;
}

footer p {
  font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  .schedule-link a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .class-panels {
    grid-template-columns: 1fr;
  }

  footer nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Privacy Page */
.privacy-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  line-height: 1.7;
}

.privacy-content h2 {
  color: #e53935; /* matches bright red theme */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy-content p,
.privacy-content ul {
  margin: 1em 0;
}

.privacy-content a {
  color: #e53935;
  text-decoration: underline;
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.privacy-content table th,
.privacy-content table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

.privacy-content table th {
  background-color: #ffe6e6;
  color: #e53935;
}

/* Terms Page Styling */
.terms-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  line-height: 1.7;
}

.terms-content h2 {
  color: #e53935; /* bright red headers to match theme */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.terms-content p,
.terms-content ul {
  margin: 1em 0;
}

.terms-content a {
  color: #e53935;
  text-decoration: underline;
}

/* Privacy / Do Not Sell Form Styling */
.opt-out-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1.5em;
}

.opt-out-form label {
  font-weight: bold;
}

.opt-out-form input,
.opt-out-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.opt-out-form button {
  padding: 10px 20px;
  background-color: #e53935; /* bright red theme */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  align-self: flex-start;
}

.opt-out-form button:hover {
  background-color: #c62828;
}

/* Logo Styling */
.site-logo {
  max-width: 150px;   /* adjust size as needed */
  height: auto;
  display: block;
  margin: 0 auto 1rem; /* center logo with spacing below */
}
