/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section {
  background-image: url('https://via.placeholder.com/1500x800'); /* Replace with your background image */
  background-size: cover;
  text-align: center;
  color: white;
  padding: 100px 0;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.hero-content .btn-primary {
  padding: 10px 30px;
  background-color: #007bff; /* Blue */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.hero-content .btn-primary:hover {
  background-color: #0056b3; /* Darker Blue */
}

/* About Section */
.about-section {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Events Section */
.events-section {
  padding: 50px 0;
  text-align: center;
}

.events-list {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.events-list .event {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.events-list .event h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  background-color: #ecf0f1;
  padding: 50px 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.2rem;
}

/* Hero Video Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
  height: 100vh;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Sections */
.about, .services, .contact {
  padding: 5rem 0;
  text-align: center;
}

.about {
  background-color: #f8f9fa;
}

.contact {
  background-color: #343a40;
  color: white;
}

/* Forms */
form {
  max-width: 500px;
  margin: auto;
}

form .form-control {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #343a40;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* Member Registration Modal */
/* Modal Background */
.custom-modal {
  background: #f8f9fa; /* Light Gray */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.modal-header {
  background: #dc3545; /* Red */
  color: white; 
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Close Button */
.modal-header .btn-close {
  filter: invert(1);
}

/* Input Fields */
.input-custom {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
}

/* Custom Submit Button */
.btn-custom {
  background: #007bff; /* Blue */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #0056b3; /* Darker Blue */
}

/* Navbar Styling */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white !important;
}

.navbar-brand:hover {
  color: #dc3545 !important; /* Red */
}
