/* Box model reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #050812;
  color: #dcd7ff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

/* Navigation - consistent across all pages */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
}

nav a {
  color: #dcd7ff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

/* Main content */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 2rem;
}

.contact-section {
  text-align: center;
  max-width: 600px;
  width: 100%;
  background: rgba(139, 92, 246, 0.05);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #c4b5fd;
}

.intro {
  margin-bottom: 2rem;
  color: #a78bfa;
  font-size: 1.1rem;
}

/* Form styling - demonstrates box model with padding and margin */
form {
  text-align: left;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #c4b5fd;
  font-weight: 500;
}

/* Input and textarea demonstrate consistent box model */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 6px;
  color: #dcd7ff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox styling */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  font-size: 0.95rem;
}

/* Button styling */
button {
  background: #8b5cf6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  width: 100%;
}

/* Glow effect - consistent with other pages */
.glow:hover {
  box-shadow: 0 0 20px #8b5cf6;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

footer p {
  color: #a78bfa;
  font-size: 0.9rem;
}
