/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: #444;
  line-height: 1.6;
}

/* White and Burgundy Theme */
:root {
  --color-primary: #800020; /* Burgundy */
  --color-secondary: white;
  --text-on-dark: white;
}

/* Navigation Menu */
.navbar {
  background-color: var(--color-primary);
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar li a {
  display: block;
  color: var(--color-secondary);
  text-decoration: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar li a:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* Responsive Container */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 20px auto;
  padding: 20px;
}

/* Image below menu */
.hero-image {
  width: 100%;
  height: 250px;
  background-image: url('hero-bg.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  margin: 20px 0;
  border-radius: 10px;
}

/* Content Sections with Transparent Backgrounds */
.section {
  position: relative;
  height: 300px;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  color: var(--text-on-dark);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  opacity: 0.8; /* 80% transparency */
  z-index: -1;
}

/* Section-specific backgrounds */
#overview { background-image: url('overview-bg.jpg'); }
#videos { background-image: url('videos-bg.jpg'); }
#music { background-image: url('music-bg.jpg'); }
#christian { background-image: url('christian-bg.jpg'); }
#greentech { background-image: url('greentech-bg.jpg'); }
#political { background-image: url('political-bg.jpg'); }

/* Page-specific content */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.page-content img {
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  margin: 20px 0;
}

.page-content .text {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid var(--color-primary);
}   


/* 1. Standard Phones (up to 576px) */
@media (max-width: 576px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
  }
  .navbar li a {
    width: 80%;
    text-align: center;
  }
  .section {
    height: 250px;
    font-size: 1.2em;
  }
}

/* 2. Large Phones (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .section {
    height: 280px;
  }
}

/* 3. Tablets (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .container {
    width: 95%;
  }
  .section {
    height: 320px;
  }
}

/* 4. Laptops (993px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .section {
    height: 350px;
  }
}

/* 5. Large Desktops (1201px and up) */
@media (min-width: 1201px) {
  .section {
    height: 400px;
  }
  .container {
    width: 85%;
  }
}   
