* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/* Body Styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2c2f33;
  color: #dcddde;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #202225;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: #dcddde;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover,
.social-icons a:hover {
  color: #7289da;
}

.nav-links i {
  margin-right: 6px;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #dcddde;
  z-index: 1100;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 55px;
    right: 20px;
    background: #202225;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 10px 15px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 180px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Main Contact Container */
main.contact-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
}

.contact-wrapper {
  width: 100%;
  max-width: 600px;
}

/* Form */
.contact-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-wrapper form {
  background: #202225;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
  width: 100%;
  display: flex;
  flex-direction: column;
}

input, textarea {
  background: #2f3136;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
  color: #fff;
  resize: vertical;
}

button {
  background-color: #7289da;
  border: none;
  padding: 12px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #5a6bb3;
}

#status {
  margin-top: 10px;
  text-align: center;
}

/* Footer */
footer {
  background: #202225;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
}

.social-icons a {
  color: #fff;
  margin: 0 8px;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #7289da;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #b9bbbe;
  background-color: #2f3136;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #dcddde;
  font-weight: 500;
}

.breadcrumb li::after {
  content: "›";
  margin: 0 8px;
  color: #72767d;
  font-weight: bold;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #7289da;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.breadcrumb a:hover {
  color: #aabfff;
  text-decoration: underline;
}
