@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}


body {
    background: linear-gradient(135deg, #bcedf6, #087E8B);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}


/* Dropdown container */
.navbar .dropdown {
  position: relative; /* anchor for submenu */
}

/* Dropdown menu hidden by default */
.navbar .dropdown-menu {
  position: absolute;
  top: 100%; /* directly under Contact button */
  left: 0;
  display: none; /* hidden initially */
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 50px;
  z-index: 2000;
}

/* Remove list bullets */
.navbar .dropdown-menu li {
  list-style: none;
}

/* Links styling */
.navbar .dropdown-menu a {
  padding: 12px 20px;
  display: block;
  color: white;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
}

.navbar .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Show dropdown when hovering Contact or the menu itself */
.navbar .dropdown:hover .dropdown-menu {
  display: flex;
}




/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 35px 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 100;
}



.navbar ul {
  list-style: none;
  display: flex;
  gap: 80px;
  align-items: center;
  font-size: x-large;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}


.form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0b8499;
}

label {
    display: block;
    font-weight: 600;
    margin-top: 1rem;
    color: #333;
}

input, textarea {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #5f0a87;
    outline: none;
}

button {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #bcedf6, #087E8B);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: linear-gradient(135deg, #a4508b, #5f0a87);
    transform: translateY(-2px);
}

#form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #333;
}

footer {
    pointer-events: none;
    position: fixed;
    padding-top: 43%;
    justify-self: center;
}