/* Desktop */

body {
  font-family: 'Merriweather', serif;
  background-image: url('contact-bg.jpg');
  filter: brightness(95%) contrast(100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 0;
  position: relative;
}

/* HEADER, LOGO, NAVIGATION */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(80, 50, 20, 0.7), rgba(80, 50, 20, 0.3));
  z-index: 1;
}

.logo {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFD700;
  margin-right: 2rem;
  margin-top: -6px;
  height: 40px;
  line-height: 40px;
}
.quote-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 1rem;
}

.quote-wrapper {
  width: 100%;
  text-align: center;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  line-height: 40px;
}

.nav-links a:hover {
  color: #800020;
}

.nav-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: #FFD700;
  position: relative;
  top: -1px;
  left: 1.5px;
}

.header-quote {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 4px #000;
  margin-top: -1rem;
}

.hero-divider {
  height: 2px;
  background: linear-gradient(to right, #800020, #FFD700, #800020);
  margin: 1rem auto 2rem;
  width: 40%;
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* WRAPPER FOR MAP + FORM */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
  justify-content: center;
  margin-bottom: 80px;
}

/* CONTACT FORM */
.contact-form {
  flex: 0 0 300px;
  min-height: 300px;
  margin-left: 15%;   /* spacing from map */
  margin-right: 0px;  /* pushes form off right edge */
  padding: 16px 14px;
  background: rgba(47, 25, 15, 0.9);
  border: 2px solid #CD7F32;
  border-radius: 10px;
  box-shadow:
    0 0 0 3px rgba(255, 215, 0, 0.2),
    0 0 15px rgba(0, 0, 0, 0.4);
  color: #FFD700;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.contact-form label {
  font-size: 13px;
  color: #FFD700;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 95%;
  padding: 4px 5px;
  margin-bottom: 10px;
  background: rgba(47, 25, 15, 0.9);
  border: 1px solid #CD7F32;
  border-radius: 6px;
  color: #FFD700;
  font-size: 13px;
  box-shadow: inset 0 0 3px rgba(255, 215, 0, 0.2);
}

.contact-form textarea {
  height: 35px;
  resize: vertical;
}

.contact-form button {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 5px;
  background: linear-gradient(to right, #CD7F32, #B87333);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(to right, #B87333, #CD7F32);
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out; 
}

.thank-you-message {
  margin-top: 20px;
  padding: 15px;
  border: 2px solid #CD7F32;
  background-color: #fff8dc;
  color: #8B0000;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  animation: fadeIn 1.2s ease-in forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* MAP STYLING */
.map-circle {
  flex: 0 0 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 10px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  overflow: hidden;
  margin-left: 25px;  /* pushes map off left edge */
  margin-right: 25px; /* spacing from form */
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-circle iframe {
  width: 85%;
  height: 85%;
  border: none;
  transform: scale (0.95);
}

/* CONTACT SECTION */
.contact-wrapper {
  position: relative;
  z-index: 900;
  margin-top: 0; /* Removed excess space */
}

.contact-fixed {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  padding: 10px 20px;
  background: linear-gradient(
    to bottom,
    rgba(47, 25, 15, 1),
    rgba(59, 31, 20, 0.9),
    rgba(31, 18, 10, 0.8),
    rgba(38, 22, 13, 0.7)
  );
}

.contact-inline-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #FFD700;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.contact-inline-text .highlight {
  font-weight: bold;
  color: #FFD700;
}

/* FOOTER */
.full-width-footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(to bottom, #2F190F, #3B1F14);
  padding: 20px 0;
  margin-top: 40px;
  color: #FFD700;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);

  /* Double border effect */
  border-top: 4px double #CD7F32;
  border-bottom: 4px double #CD7F32;

  /* Enhanced shadow for depth */
  box-shadow:
    0 -8px 16px rgba(0, 0, 0, 0.6),
    inset 0 3px 0 #8B5C2D,
    inset 0 -3px 0 #8B5C2D,
    0 3px 0 #FFD700,
    0 -3px 0 #FFD700;
}

/* Inner layout stays centered */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 40px 0 60px;
}

/* Monogram or logo */
.footer-monogram {
  width: 100px;
  height: auto;
  border-radius: 6px;
  filter: brightness(0.85) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

/* Contact info centered */
.footer-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
  white-space: nowrap;
  justify-content: center;
  flex: 1;
}

/* “Get Directions” button: taller and vertical */
.directions-btn {
  background: linear-gradient(to right, #4A1F0F, #8B5C2D);
  box-shadow: 0 0 12px rgba(139, 92, 45, 0.4);
  color: #fff !important;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 18px 10px;
  width: 80px;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.directions-btn:hover {
  background: linear-gradient(to right, #5C1A10, #A0522D);
  box-shadow: 0 0 12px rgba(160, 82, 45, 0.4);
}

/* Link styling */
.footer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  color: #800020;
}

@media (max-width: 768px) {
  /* Footer layout */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 16px;
  }

  .footer-monogram {
    width: 80px;
    margin-bottom: 10px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
  }

  .directions-btn {
    width: 100%;
    max-width: 200px;
    padding: 14px 12px;
    font-size: 1rem;
  }

  /* Quote block refinement */
  .quote-block {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 12px;
    line-height: 1.4;
  }

  .header-quote {
    font-size: 1.2rem;
    padding: 0 10px;
    margin-top: 0.5rem;
    word-break: break-word;
  }

  .logo {
    font-size: 1rem;
    margin-bottom: 6px;
  }
}









































































































