/* File: css/index.css */
/* This file contains styles for the Index Page */
	@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
		body, h1, h2, h3, h4, h5, h6{
			font-family: 'Open Sans', sans-serif;
		}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
}


 body {
      background: url('images/background.jpg') no-repeat center center/cover;
      min-height: 100vh;
      margin: 0;
      padding: 0;
 }
 input::placeholder {
      color: rgba(0, 0, 0, 1);
    }

.navbar {
  position: relative;     /* or fixed if you want sticky */
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo .highlight {
  color: orange;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.admin-btn {
  background-color: orange;
  border: none;
  padding: 5px 10px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container {
  display: flex;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card {
  background: white;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  width: 300px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.card p {
  font-size: 19px;
  font-weight: bold;
}
