/* ===== Contact Page Styles ===== */

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  background: url("../Pictures/nikon-1196114_1920.jpg") no-repeat center center/cover;
  margin: 0;
  overflow-x: hidden;
}

/* Header */
header {
  backdrop-filter: blur(3px);
}

/* Naviation */
.original-navigation li {
    color: #fff;
}

.burger-icon {
  color: #fff;
}

/* Page Layout */
.page-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  padding: 60px 20px;
  /*background-color: rgba(255, 255, 255, 0.6);*/
  backdrop-filter: blur(3px);
}

.page-content .inner-section {
  background: #fff;
  width: 100%;
  max-width: 650px;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Page Title */
.inner-section header h1 {
  font-size: 2.2rem;
  text-align: center;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.inner-section header hr {
  width: 70px;
  height: 3px;
  background-color: #000;
  border: none;
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* Contact Form Section */
.contact-section {
  display: flex;
  justify-content: center;
}

.contact-form-container {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  background-color: #f9f9f9;
}

.form-input:focus {
  background-color: #fff;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Textarea */
textarea.form-input {
  resize: none;
  min-height: 100px;
}

/* Submit Button */
.submit-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .page-content {
    background-color: transparent;
    padding: 0px;
  }
  .inner-section {
    width: 90%;
    padding: 30px 25px;
  }

  .inner-section header h1 {
    font-size: 1.8rem;
  }

  .form-input {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .page-content {
    padding: 0px;
  }
  .page-content .inner-section {
    border-radius: 0px;
  }
}

/* Slight Fade-In Effect for Form */
.contact-form-container {
  animation: fadeIn 0.7s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
