/* Global Styles & Google Font */
:root {
  --primary-red: #b90100;  /* Set this to the exact red from your logo */
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #a50302‎; /* White background */
  /*background-color: var(--primary-red);*/
  color: #333;
}

/* Header with a Gradient Background & Box-Shadow */
header {
  background-color: var(--primary-red);
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  max-width: 350px;   /* Adjust based on your brand's needs */
  display: block;
  margin: 0 auto 20px;
}

.header-content h1 {
  margin-top: 0;
}

.header-content p {
  margin: 10px 0;
  font-size: 1.2em;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffffff;
  color: var(--primary-red);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.cta-btn:hover {
  background-color: #ffcccc;
  color: var(--primary-red);
}

/* Main Content Layout */
main {
  margin: 30px 20px;
}

section {
  margin-bottom: 60px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h1, h2 {
  margin-bottom: 20px;
}

/* Mission Section Styling */
#mission p {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
}

/* Video Grid with Card-Style Effects */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.video-item {
  background: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.video-item iframe {
  width: 100%;
  height: 200px;
  border-bottom: 1px solid #eee;
}

.video-item p {
  padding: 10px;
  margin: 0;
  font-size: 0.95em;
  color: #333;
}

/* Contact Section Styling */
#contact ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

#contact li {
  margin: 10px 0;
}

#contact a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

#contact a:hover {
  color: #cc0000; /* A darker red for hover */
}

/* Footer Styling */
footer {
  background-color: var(--primary-red);
  color: #ffffff;
  padding: 15px;
  text-align: center;
  font-size: 1em;
}

/* Fade-In Animation */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile-First Media Queries */
@media only screen and (max-width: 768px) {
  header {
    padding: 20px 10px;
  }
  
  .header-content h1 {
    font-size: 1.8em;
  }
  
  .header-content p {
    font-size: 1em;
  }
  
  main {
    margin: 20px 10px;
  }
  
  section {
    padding: 15px;
  }
  
  .video-grid {
    /* Stack video items vertically on smaller screens */
    grid-template-columns: 1fr;
  }
}
