/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-image: url('images/telephone.jpg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #b287ff;
  padding-top: 80px; /* Space for fixed nav */
}

/* Navigation */
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #b287ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links .active {
  border-bottom: 2px solid #b287ff;
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(178, 135, 255, 0.3);
}

/* Left Section - Info */
.contact-info {
  flex: 1;
  padding: 40px;
  background-color: rgba(26, 115, 232, 0.7);
  color: white;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info .socials {
  margin-top: 20px;
}

.contact-info .socials a {
  color: white;
  text-decoration: underline;
  margin-right: 10px;
}

/* Right Section - Form */
.contact-form-container {
  flex: 1.5;
  padding: 40px;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #d2afff;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #d2afff;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: 1px solid #b287ff;
  color: white;
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 5px;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #cccccc;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: white;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #b287ff;
  color: black;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: white;
}
