/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #ff6600, #ffcc00);
  padding: 15px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-text {
  font-size: 28px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

.navbar li {
  display: inline-block;
  padding: 0 20px;
}

.nav-item a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 5px 10px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-item a:hover {
  color: #000;
  border-bottom: 2px solid #000;
}

/* Navbar Brand */
.navbar-brand img {
  height: 60px;
  transition: transform 0.3s;
}

.navbar-brand img:hover {
  transform: rotate(360deg);
}

/* Hero Section */
.container-fluid {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('images/back3.jpg');
  height: 130vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.container-fluid h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.container-fluid p {
  font-size: 20px;
  margin-top: 15px;
  color: #ffcc00;
}

.container-fluid .loginbutton {
  margin-top: 20px;
  display: inline-block;
}

.container-fluid .loginbutton button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.container-fluid .loginbutton button:hover {
  background: #ffcc00;
  transform: scale(1.1);
}

/* Sticky Jumbotron */
.jumbotron {
  margin-top: 7%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.jumbotron h1 {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}

.jumbotron p {
  font-size: 18px;
  color: #555;
}

/* Row Images */
.row img {
  height: 60px;
  width: 60px;
  margin: 20px auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.page-footer {
  background-color: #000;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.page-footer a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s;
}

.page-footer a:hover {
  color: #ff6600;
}
