/* Reset default browser styles */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}

/* Body and layout */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(180deg, #3c3c94 0%, #2f2f7f 100%);
  color: white;
  line-height: 1.6;
  min-height: 100vh;
}

/* Header */
header {
  background: linear-gradient(90deg, #2f2f7f, #4a4ab8);
  color: white;
  text-align: center;
  padding: 2em 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  letter-spacing: 1px;
}

header h1 {
  font-size: 2.2em;
  text-transform: uppercase;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 0.8em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 0 0 12px 12px;
}

nav ul li {
  margin: 0 1em;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 0.4em 0.9em;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: #ffcc00;
  color: #2f2f7f;
  transform: scale(1.05);
}

/* Main content */
main {
  max-width: 850px;
  margin: 2.5em auto;
  padding: 2em;
  background-color: #f5f5ff;
  color: #333;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-in;
}

/* Section title */
main h2 {
  text-align: center;
  color: #2f2f7f;
  font-size: 1.8em;
  margin-bottom: 1em;
}

/* Contact section */
#contact {
  background: linear-gradient(180deg, #ffffff, #eaeaff);
  border: 1px solid #ccc;
  padding: 1.5em;
  border-radius: 10px;
  text-align: center;
  margin-top: 1.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#contact:hover {
  transform: translateY(-5px);
}

#contact a {
  color: #3c3c94;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
}

#contact p {
  margin-bottom: 0.8em;
  font-size: 1.1em;
}

/* Map */
.map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  background: linear-gradient(90deg, #2f2f7f, #4a4ab8);
  color: white;
  text-align: center;
  padding: 1.2em 0;
  margin-top: 3em;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  font-size: 0.95em;
  letter-spacing: 0.5px;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

/* Subtle animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
