/* ==============================
   Hero Section
============================== */
.hero-section {
  position: relative;
  height: 90vh;
  background: url('images/facade/DSC03202_3_4\ copy.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section.parallax {
  background-attachment: fixed;
  background-size: cover;
}

.hero-content {
  background: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}

.cta-section a {
  color: white;
  text-decoration: none;
}

/* ==============================
   Contact Form Section
============================== */
.contact-form-section {
  padding: 90px 20px;
  background-color: #f8f8f8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-form-section .section-label {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

/* .contact-form-section .section-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 3px;
} */

.form-container {
  max-width: 800px;
  margin: 40px auto 0;
  background: transparent;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
  transform: translateY(-5px);
}

/* Optional background overlay for visual depth */
.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* Cognito Form Embed Enhancements */
iframe[src*="cognitoforms.com"] {
  border: none !important;
  border-radius: 12px;
  width: 100% !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  min-height: 800px;
}

/* Cognito Buttons — Match Site Theme */
iframe[src*="cognitoforms.com"]::part(button),
iframe[src*="cognitoforms.com"] button {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: none !important;
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
  transition: background 0.3s ease;
}

iframe[src*="cognitoforms.com"]::part(button):hover,
iframe[src*="cognitoforms.com"] button:hover {
  background-color: var(--accent-color) !important;
}

/* ==============================
   Modal (Deprecated in Cognito version)
============================== */
.modal {
  display: none;
}

/* ==============================
   Contact Details Section
============================== */
.contact-details-section {
  padding: 60px 20px;
}

.details-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.details-card {
  width: 50%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.details-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.details-card address {
  font-family: 'Lora', serif;
  font-style: normal;
  line-height: 1.6;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent-color);
}

.details-image {
  width: 50%;
}

.details-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .details-container {
    flex-direction: column;
  }
  .details-card,
  .details-image {
    width: 100%;
  }
}

/* ==============================
   Getting Here Section
============================== */
.getting-here-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.collapsible-container {
  max-width: 800px;
  margin: 20px auto;
}

.collapsible-item {
  margin-bottom: 10px;
}

.collapsible-toggle {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s, color 0.3s;
}

.collapsible-toggle:hover,
.collapsible-toggle.active {
  background: var(--primary-color);
  color: #fff;
}

.collapsible-content {
  display: none;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  font-family: 'Lora', serif;
  animation: slideDown 0.3s ease;
}

.collapsible-content.active {
  display: block;
}

@keyframes slideDown {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: auto;
    opacity: 1;
  }
}

.map-container {
  margin-top: 20px;
}

.map-container iframe {
  border-radius: 12px;
  border: none;
  width: 100%;
}

/* ==============================
   Responsive Adjustments
============================== */
@media (max-width: 768px) {
  .form-container {
    padding: 20px 10px;
  }

  .contact-form-section .section-label {
    font-size: 1.6rem;
  }

  iframe[src*="cognitoforms.com"] {
    min-height: 900px;
  }
}
