/* ============================================================
   VINTAGE CONTACT PAGE STYLES
   ============================================================ */

/* Global Paragraph Styling */
p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #8B6F47;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-color);
  
  min-height: 100vh;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-content {
  /* gap: 50px; */
}

/* Section Title - Vintage Style */
.section-title-vintage {
  margin-bottom: 30px;
  position: relative;
}

.vintage-title {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-brown);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.decorative-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-orange), var(--medium-brown));
  margin-bottom: 20px;
  border-radius: 2px;
}

.intro-text {
  font-size: 1rem;
  color: var(--medium-brown);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Info Box */
.contact-info-box {
  background: linear-gradient(135deg, rgba(232, 213, 183, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  padding: 40px 30px;
  border-left: 5px solid var(--primary-orange);
  box-shadow: 0 8px 24px rgba(45, 30, 15, 0.1);
  border-radius: 2px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  box-shadow: 0 12px 32px rgba(45, 30, 15, 0.15);
  transform: translateY(-5px);
}

.info-items-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Individual Info Items */
.info-item-vintage {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(45, 30, 15, 0.1);
  transition: all 0.3s ease;
}

.info-item-vintage:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item-vintage:hover {
  padding-left: 10px;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--medium-brown) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
  transition: all 0.3s ease;
}

.info-item-vintage:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}

.icon-wrapper i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.info-content {
  flex: 1;
}

.info-content h5 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.info-content p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.info-content p + p {
  margin-top: 4px;
}

/* Contact Form Box */
.contact-form-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 213, 183, 0.3) 100%);
  padding: 40px;
  border: 2px solid var(--primary-orange);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(45, 30, 15, 0.1);
  position: relative;
}

.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary-orange);
  border-left: 2px solid var(--primary-orange);
  border-radius: 2px;
}

.contact-form-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--primary-orange);
  border-right: 2px solid var(--primary-orange);
  border-radius: 2px;
}

/* Vintage Form */
.php-email-form-vintage {
  display: flex;
  flex-direction: column;
}

.php-email-form-vintage .row {
  width: 100%;
}

.php-email-form-vintage .col-md-6,
.php-email-form-vintage .col-12 {
  margin-bottom: 20px;
}

/* Vintage Form Controls */
.form-control-vintage {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--medium-brown);
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--dark-brown);
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-control-vintage::placeholder {
  color: var(--medium-brown);
  opacity: 0.7;
}

.form-control-vintage:focus {
  outline: none;
  border-color: var(--primary-orange);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

textarea.form-control-vintage {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

/* Vintage Submit Button */
.btn-vintage {
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--medium-brown) 100%);
  color: white;
  border: none;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
  font-family: 'Nexa Rust Slab', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-vintage::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn-vintage:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 165, 0, 0.4);
}

.btn-vintage:hover::before {
  left: 100%;
}

.btn-vintage:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vintage-title {
    font-size: 1.8rem;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 30px 20px;
  }

  .contact-content {
    gap: 30px;
  }

  .info-item-vintage {
    gap: 15px;
  }

  .icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .icon-wrapper i {
    font-size: 20px;
  }

  .btn-vintage {
    width: 100%;
    padding: 12px 30px;
  }
}

/* Form Feedback Messages - Vintage Style */
.php-email-form-vintage .loading {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid var(--primary-orange);
  color: var(--dark-brown);
  padding: 15px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.php-email-form-vintage .error-message {
  background: rgba(223, 21, 41, 0.1);
  border: 1px solid #df1529;
  color: #df1529;
  padding: 15px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.php-email-form-vintage .sent-message {
  background: rgba(5, 150, 82, 0.1);
  border: 1px solid #059652;
  color: #059652;
  padding: 15px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-align: center;
}

/* Decorative Elements */
.contact-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 30, 15, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
