@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto+Slab:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("path/to/background_image.jpg"); /* Ensure this path is correct */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #333;
  backdrop-filter: blur(5px);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #d32f2f;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: 'Roboto Slab', serif;
}

.welcome-message {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  color: #444;
  line-height: 1.6;
}

.info-paragraph {
  text-align: justify;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 18px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.button-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-section:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.button-section h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #d32f2f;
  font-family: 'Roboto Slab', serif;
}

.button-section p {
  font-size: 16px;
  color: #666;
  text-align: center;
}

.button-section a {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #d32f2f;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-section a:hover {
  background-color: #b71c1c;
}
.section {
    margin-bottom: 40px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
  
  /* Section header */
.section-header {
    background-color: #d32f2f;
    color: #fff;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    font-family: 'Roboto Slab', serif;
    transition: background-color 0.3s;
}
  

.section-header:hover {
    background-color: #b71c1c;
  }
  
  /* Section content */
  .section-content {
    display: none;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9); /* Transparent white */
  }
  
  .section-content.open {
    display: block;
  }
  
  /* Links within section content */
  .links a {
    color: #d32f2f;
    text-decoration: none;
    font-size: 18px;
    margin-right: 15px;
  }
  
  .links a:hover {
    text-decoration: underline;
  }
  
  /* Small text */
  .small-text {
    font-size: 14px;
    color: #666;
  }
  .contact-info {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  text-align: center;
}

.contact-info p {
  margin: 20px 0;
}

.contact-info a {
  color: #d32f2f;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #b71c1c;
}

.coming-soon-message {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .button {
    background-color: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .button:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
  }


footer {
  background-color: #d32f2f;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  border-top: 2px solid #b71c1c;
  margin-top: auto;
}

.event-image {
  width: 50%; /* Adjust width as needed */
  margin: 20px 0; /* Add space above and below the image */
}