/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
 
}
.header {
  position: relative;
  width: 100%; /* Ensure the header spans the full width of the viewport */
  max-width: 2000px; /* Maximum width of the image */
   margin-top: 10px;
  overflow: hidden; /* Prevent the image from overflowing */
}

.banner-image {
  width: 100%; /* Ensure the image stretches to fit the width of the container */
  height: 100%; /* Ensure the image takes the full height of the container */
  object-fit: cover; /* Ensure the image covers the space without distorting */
}

.container {
  width: 100%;
  max-width: 1300px; /* Keeps content inside the container centered */
  margin: 0 auto; /* Centers the container horizontally */
  padding: 0 20px; /* Adds padding to the container's content */
  box-sizing: border-box; /* Ensures padding is included in the width calculation */
}

/* Header content layout */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo img {
  width: 150px;
  height: auto;
}

/* Conference Title */
.conference-title {
  flex: 1;
  text-align: center;
}

.conference-title p {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin: 5px 0;
}

/* Conference Details */
.conference-details {
  text-align: right;
}

.conference-details p {
  margin: 5px 0;
  font-size: 16px;
}

/* Navbar */
nav {
  background-color: #34495e;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: lightgray;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: white;
}

/* Dropdown */
nav .dropdown {
  position: relative;
}

nav .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #34495e;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1;
}

nav .dropdown:hover .dropdown-content {
  display: block;
}

nav .dropdown-content a {
  padding: 12px 16px;
  color: lightgray;
  text-decoration: none;
  display: block;
}

/* Main Content */
.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ecf0f1;
  text-align: center;
}

.welcome-section {
  width: 90%;
  max-width: 700px;
  padding: 30px;
  background-color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.welcome-section h2 {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 20px;
}

.welcome-section p {
  font-size: 1.2em;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 10px 20px;
  background-color: #1abc9c;
  color: white;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
}

.cta-btn:hover {
  background-color: #16a085;
}

/* Responsive: Larger Screens */
@media (min-width: 1024px) {
  .welcome-section {
      width: 60%;
      max-width: 900px;
  }

  .welcome-section h2 {
      font-size: 3em;
  }

  .welcome-section p {
      font-size: 1.4em;
  }

  .cta-btn {
      font-size: 1.4em;
  }
}

/* Responsive: Mobile & Tablets */
@media (max-width: 1000px) {
  /* Header Adjustments */
  .header-content {
      flex-direction: column;
      text-align: center;
  }

  .logo img {
      width: 120px;
  }

  .conference-title {
      order: 2;
  }

  .conference-details {
      text-align: center;
      order: 3;
  }

  /* Navbar Adjustments */
  nav ul {
      flex-direction: column;
      align-items: center;
  }

  nav ul li {
      margin: 10px 0;
  }

  nav .dropdown-content {
      position: static;
      box-shadow: none;
      background-color: #34495e;
  }

  /* Main Content Adjustments */
  .main-content {
      padding: 40px 15px;
  }

  .welcome-section h2 {
      font-size: 2em;
  }

  .welcome-section p {
      font-size: 1.1em;
  }

  .cta-btn {
      font-size: 1.1em;
  }

  /* Footer Adjustments */
  footer {
      padding: 15px;
  }
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}
.running-text {
  background-color:white;
  color: red;
  padding: 10px 0;
  font-size: 1.0rem;
  font-weight: bold;
  
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}