body, html {
  margin: 0;
  padding: 0;
  background-color: #fcfbf8;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.site-header nav {
  background-color: #54787c;
  border-bottom: 4px solid #b59a5d;
  padding: 12px 0;
}
.site-header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .site-header .nav-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px 15px;
  }
}
.site-header .logo-area img {
  height: 70px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .site-header .logo-area img {
    height: 55px;
  }
}
.site-header .nav-links {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .site-header .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.site-header .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .site-header .nav-links a {
    font-size: 11px;
    letter-spacing: 1px;
  }
}
.site-header .nav-links a:hover {
  color: #b59a5d;
}

.site-footer {
  background-color: #54787c;
  border-top: 5px solid #b59a5d;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.site-footer h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}
.site-footer p {
  opacity: 0.8;
  letter-spacing: 1px;
  margin: 5px 0;
}

.hero-section {
  height: 80vh;
  background: url("/assets/img/hero_barn.webp") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(35, 49, 35, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.intro-section {
  padding: 80px 20px;
  text-align: center;
}
.intro-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.intro-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #54787c;
}
.intro-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

.btn-gold, .btn-gold-large, .footer-cta-button {
  display: inline-block;
  background-color: #b59a5d;
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.btn-gold:hover, .btn-gold-large:hover, .footer-cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-gold {
  padding: 15px 35px;
  margin-top: 25px;
}

.btn-gold-large, .footer-cta-button {
  padding: 20px 45px;
  font-size: 1.1rem;
  border-radius: 2px;
}

.footer-cta-section {
  background-color: #54787c;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.footer-cta-heading {
  font-family: "Playfair Display", serif;
  color: #b59a5d;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  color: #54787c;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.about-text .content-body {
  line-height: 1.8;
  color: #555;
}

.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.raves-section {
  padding: 80px 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.rave-card {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  border-top: 4px solid #b59a5d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.rave-card .quote-mark {
  font-family: "Playfair Display", serif;
  color: #b59a5d;
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.15;
}
.rave-card p {
  font-style: italic;
  line-height: 1.8;
  color: #555;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.rave-card h3 {
  font-family: "Lato", sans-serif;
  color: #54787c;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.raves-footer-cta {
  text-align: center;
  margin-top: 60px;
}
.raves-footer-cta h3 {
  font-family: "Playfair Display", serif;
  color: #54787c;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.raves-footer-cta p {
  color: #555;
  margin-bottom: 30px;
}

.contact-section {
  padding: 80px 20px;
}
.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.venue-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.venue-form .form-row {
  display: flex;
  gap: 15px;
}
.venue-form input, .venue-form select, .venue-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-family: "Lato", sans-serif;
}
.venue-form input:focus, .venue-form select:focus, .venue-form textarea:focus {
  outline: none;
  border-color: #b59a5d;
}

.pricing-hero {
  height: 40vh !important;
  min-height: 300px;
}

.pricing-details {
  padding: 80px 20px;
  background-color: #fcfbf8;
}
.pricing-details .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.pricing-details .pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.pricing-details .pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .pricing-details .pricing-card {
    padding: 30px 20px;
    min-width: 100%;
  }
}
.pricing-details .pricing-card .package-name {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #54787c;
  margin-bottom: 20px;
}
.pricing-details .pricing-card .package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-details .pricing-card .package-features li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}
.pricing-details .included-shared {
  margin-top: 60px;
  text-align: center;
}
.pricing-details .included-shared h3 {
  font-family: "Playfair Display", serif;
  color: #54787c;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.pricing-details .included-shared .shared-grid {
  display: inline-block;
  text-align: left;
}
@media (max-width: 768px) {
  .pricing-details .included-shared .shared-grid {
    display: block;
  }
}
.pricing-details .included-shared .shared-item {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

.amenities-section {
  background-color: #54787c;
  padding: 80px 20px;
  color: #ffffff;
}
.amenities-section .section-heading {
  color: #b59a5d;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.amenities-grid ul {
  display: contents;
  list-style: none;
}
.amenities-grid li {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-left: 3px solid #b59a5d;
}
.amenities-grid li strong {
  color: #b59a5d;
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.page-header-banner {
  background-color: #54787c;
  border-bottom: 4px solid #b59a5d;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}
.page-header-banner h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 0;
}

.gallery-section {
  padding: 60px 20px;
}
.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}
@media (max-width: 900px) {
  .gallery-masonry {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .gallery-masonry {
    column-count: 1;
  }
}

.gallery-brick {
  margin-bottom: 20px;
  break-inside: avoid;
}
.gallery-brick img {
  width: 100%;
  border-radius: 4px;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-brick img:hover {
  transform: scale(1.02);
}

.custom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}
.custom-lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border: 5px solid white;
  border-radius: 2px;
}

.close-x-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 50px;
  text-decoration: none;
  font-weight: 300;
}

@media (max-width: 768px) {
  .contact-grid, .about-row, .about-row.reverse {
    flex-direction: column !important;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .venue-form .form-row {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
}

/*# sourceMappingURL=main.css.map */