/* --- Global styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #e0f7fa; /* sky blue background */
  color: #333; /* dark text for readability */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

#p1{
  font-weight: bold;
}
.cntnt {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

/* --- Container --- */
.container {
  background: #ffffff; /* white card background */
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* soft shadow */
  max-width: 900px;
  width: 100%;
  border: 1px solid #b3e5fc; /* light sky border */
  transition: box-shadow 0.3s ease;
  margin: 0 auto;
}

.container:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.2rem;
  color: #0277bd; /* deep sky blue */
  text-align: center;
  margin-bottom: 10px;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: #555; /* soft gray */
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
}

/* --- Heading --- */
.container h2 {
  text-align: center;
  font-size: 2rem;
  color: #0288d1; /* medium blue */
  margin-bottom: 20px;
  font-weight: 600;
}

/* --- Map --- */
#map {
  height: 300px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid #81d4fa; /* light sky blue */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

#map:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* --- Form --- */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- Labels --- */
form label {
  font-size: 1rem;
  font-weight: 500;
  color: #0277bd; /* deep sky blue */
  margin-bottom: 5px;
}

/* --- Inputs --- */
form input[type="text"],
form input[type="date"],
form input[type="time"] {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #81d4fa; /* soft sky blue border */
  background: #e1f5fe; /* very light sky background */
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

form input[type="text"]:hover,
form input[type="date"]:hover,
form input[type="time"]:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  border-color: #4fc3f7;
}

form input[type="text"]:focus,
form input[type="date"]:focus,
form input[type="time"]:focus {
  border-color: #0288d1;
  box-shadow: 0 0 8px rgba(2, 136, 209, 0.3);
  outline: none;
}

/* --- Button --- */
form button {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: #0288d1; /* medium blue button */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(2, 136, 209, 0.3);
}

form button:hover {
  background: #0277bd;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(2, 119, 189, 0.3);
}

/* --- Header --- */
.page-header {
  background: linear-gradient(to bottom, #b3e5fc, #81d4fa); /* sky gradient */
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #4fc3f7;
}

.page-header h1 {
  font-size: 2.8rem;
  color: #01579b; /* deep sky blue for header text */
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1rem;
  color: #01579b;
  margin: 8px 0;
  line-height: 1.5;
}

/* --- Footer --- */
.page-footer {
  background: linear-gradient(to top, #b3e5fc, #81d4fa); /* match header gradient */
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  color: #01579b; /* deep sky blue text */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #4fc3f7;
  font-size: 0.95rem;
}

.page-footer p {
  margin: 5px 0;
  line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 950px) {
  .container {
    max-width: 90%;
  }

  #map {
    height: 250px;
  }

  .container h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}
