/* ==================== Venue Section ==================== */
.venue {
  background-color: #f9f9f9;
  padding: 2rem;
  position: relative;
  text-align: center;
}

.venue-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Section Header */
.venue .section-header {
  margin-bottom: 2rem;
}

.venue .section-title {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.venue .section-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: #b2186d;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.section-subtitle {
  position: relative;
    display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  justify-content: center;
  align-items: start;
  max-width: 500px;
}

/* Layout: Contact Info + Form */
.venue-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  justify-content: center;
  align-items: start;
}

/* Image styling */
.venue-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-items: center;
  margin-bottom: 1.5rem;
}

.venue-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4:3;
}

/* Hover effect for a subtle "fancy" feel */
.venue-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Contact Info and Form Card Styles */
.venue-contact-info,
.venue-form {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
  max-width: 500px;
}

.venue-contact-info:hover,
.venue-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Headings */
.venue-contact-info h3,
.venue-form h3 {
  font-size: 1.5rem;
  color: #0d4db4;
  margin-bottom: 1rem;
}

/* Contact Details */
.venue-contact-info p,
.venue-contact-info a {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.venue-contact-info a {
  color: #b2186d;
  text-decoration: none;
}

.venue-contact-info a:hover {
  text-decoration: underline;
}

/* Form Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #0d4db4;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b2186d;
  box-shadow: 0 0 0 3px rgba(178, 24, 109, 0.2);
  outline: none;
}

/* Button */
.btn-submit {
  background-color: #b2186d;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 2rem;
}

.btn-submit:hover {
  background-color: #991760;
  transform: translateY(-2px);
}

/* Fade Animation */
.venue-contact-info,
.venue-form {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 480px) {
  .venue-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-content: center;
    align-items: start;
    padding: inherit;
  }

  .venue-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-items: center;
    margin-bottom: 1.5rem;
  }

  .venue-images img {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 735px) {
  .venue-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-content: center;
    align-items: start;
    padding: inherit;
  }

  .venue-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-items: center;
    margin-bottom: 1.5rem;
  }

  .venue-images img {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact Info and Form Card Styles */
  .venue-contact-info,
  .venue-form {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
  }

  .section-subtitle {
  position: relative;
    display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  justify-content: center;
  align-items: start;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
}

/* Dell Optiplex / Desktop (1217px to 1920px) */
@media (min-width: 1217px) and (max-width: 1920px) {
  .venue {
    padding: 2rem;
  }

  .venue .section-title {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

  .venue-details {
    margin-bottom: 2rem;
  }

  .venue-text .venue-details {
    width: 100%;
    display: block;
  }

  .venue-text .venue-images {
    margin-top: 2rem;
  }

  .venue .section-title {
    font-size: 1.75rem;
  }

  .venue-contact-info h3,
  .venue-form h3 {
    font-size: 1.5rem;
    margin-bottom: -4px;
  }

  .form-group label {
    font-size: 1rem;
  }
.venue-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 4rem
}
}

