/* ===============================
   Black Brilliance Academy - CSS
   Theme: Community & Cultural
   =============================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Open+Sans&display=swap');

/* --- Global Styles --- */
:root {
  gold: #C49A2C;
  ebony: #1C1C1C;
  green: #2E8B57;
  coral: #E36C5A;
  cream: #FFF8E7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--cream);
  color: var(--ebony);
  line-height: 1.6;
}

/* --- Header & Navigation --- */
header {
  background-color: var(--ebony);
  color: var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--coral);
}

/* --- Hero Section --- */
#hero {
  background: url('https://images.pexels.com/photos/5940836/pexels-photo-5940836.jpeg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  background-blend-mode: multiply;
  background-color: rgba(28, 28, 28, 0.6);
}

#hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--ebony);
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--coral);
  color: #fff;
}

/* --- About Preview --- */
#about-preview {
  padding: 3rem 2rem;
  text-align: center;
  background-color: white;
}

#about-preview h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#about-preview p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Footer --- */
footer {
  background-color: var(--ebony);
  color: var(--cream);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  #hero h2 {
    font-size: 2rem;
  }
}
