/* General Styles */
body {
 
  margin: 0;
  padding: 0;
  background-color: #000;

}
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c6c6c6;
}


/* Header and Navigation */
header {
  background-color: #000;
  padding: 1em 0;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
nav ul li {
  margin: 0 1em;
}
nav ul li a {
  color: #eee;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background-color: #000;
  padding: 2em 1em;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-image img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  margin: 0 2em 1em 0;
}
.hero-content {
  max-width: 600px;
}
.hero-content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.social-links a {
  margin-right: 1em;
  font-size: 1.1em;
  text-decoration: none;
  color: #eee;
}

/* Featured Videos Section */
.featured-videos .videos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 0 1em;
}
.featured-videos .video {
  flex: 1 1 300px;
  max-width: 560px;
}

/* Call-to-Action Section */
.cta {
  background-color: #111;
  padding: 2em 1em;
  text-align: center;
}
.cta-buttons {
  margin-top: 1em;
}
.cta-buttons .btn {
  padding: 0.5em 1em;
  background-color: #444;
  color: #eee;
  text-decoration: none;
  margin: 0 0.5em;
  border-radius: 5px;
}

/* Social Feed Section */
.social-feed {
  padding: 2em 1em;
  text-align: center;
}
.social-feed .social-embeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.social-feed .social-item {
  flex: 1 1 300px;
}

/* Events Section */
.events {
  background-color: #111;
  padding: 2em 1em;
  color: #eee;
}
.events ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.events li {
  margin-bottom: 1em;
}

/* Newsletter Signup Section */
.newsletter {
  padding: 2em 1em;
  text-align: center;
}
.newsletter form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.newsletter input[type="email"] {
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222;
  color: #eee;
}
.newsletter button {
  padding: 0.75em;
  background-color: #ff4081;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Testimonials Section */
.testimonials {
  background-color: #111;
  padding: 2em 1em;
  text-align: center;
  color: #eee;
}
.testimonials .testimonial {
  max-width: 600px;
  margin: 1em auto;
  font-style: italic;
}
.testimonials cite {
  display: block;
  margin-top: 0.5em;
  font-style: normal;
  font-weight: bold;
}

/* About Section */
.about {
  padding: 2em 1em;
  text-align: center;
}
.about .btn {
  padding: 0.75em 1.5em;
  background-color: #444;
  color: #eee;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1em;
}

/* Footer */
footer {
  background-color: #000;
  color: #eee;
  text-align: center;
  padding: 1em 0;
  margin-top: 2em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .featured-videos .videos-grid,
  .social-feed .social-embeds {
    flex-direction: column;
    align-items: center;
  }
}
/* Biography Page Layout */
.bio-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
}

.bio-image img {
  width: 250px;
  height: auto;
  border-radius: 5px;
}

.bio-text {
  max-width: 600px;
  text-align: left;
  line-height: 1.6;
  font-size: 1.1em;
}
.video-label {
  text-align: center;
  color: #eee; /* Adjust the color as needed for your dark theme */
  margin-top: 0.5em;
  font-size: 1em;
}
.featured-videos h2 {
  text-align: center;
}

h2{
    text-align:center;
}
/* Ensure all images in the media grid are the same width */
.media-grid img {
  width: 100%;
  max-width: 560px; /* Adjust to your desired fixed width */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Optional: Style adjustments for the media grid layout */
.media-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
}

.media-item {
  text-align: center;
  max-width: 560px;
  width: 100%;
}
.logo {
 font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem; /* Adjust size as needed */
  letter-spacing: 0.05em;
  color: #9eb2c7; /* A sophisticated dark shade */
  text-shadow:0 0 5px rgba(52, 58, 64, 0.5),
    0 0 10px rgba(52, 58, 64, 0.4),
    0 0 15px rgba(52, 58, 64, 0.3);
  text-decoration: none; /* Remove underline if it's a link */
}



