/* ---------- Global Reset ---------- */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 80px 20px 20px; /* top padding for sticky nav, sides for breathing room, bottom spacing */
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #444;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Navigation ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c9a66b;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #c9a66b;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  margin-left: -20px;
  margin-right: -20px; /* makes hero full width */
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.hero-content {
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 2rem;
  border-radius: 6px;
}

.hero h1 {
  font-size: 2.5rem;
}

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary {
  background: #c9a66b;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #b28f57;
}

.btn-secondary {
  background: #fff;
  color: #c9a66b;
  border: 2px solid #c9a66b;
}

.btn-secondary:hover {
  background: #f8f2e7;
}

/* ---------- Sections ---------- */
.section {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* ---------- Gallery ---------- */
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* ---------- Testimonials ---------- */
.testimonial-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

blockquote {
  background: #fff;
  padding: 1rem;
  border-left: 4px solid #c9a66b;
  border-radius: 4px;
}

/* ---------- CTA Section ---------- */
.cta {
  background: #f8e8e8;
  text-align: center;
  padding: 3rem 1rem;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.email-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.email-form button {
  background: #c9a66b;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
}

.email-form button:hover {
  background: #b28f57;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #333;
  color: #fff;
  padding: 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #c9a66b;
}

.social img {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9a66b;
  box-shadow: 0 0 0 2px rgba(201, 166, 107, 0.2);
}

.contact-form label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  padding: 0 0.25rem;
  color: #777;
  transition: 0.3s ease;
  pointer-events: none;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #c9a66b;
}

/* ---------- Facebook Embed ---------- */
.fb-page-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .fb-page-container iframe {
    width: 100% !important;
    height: 500px;
  }
}

/* ---------- Responsive Navigation ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 1rem;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #eee;
  }
  .nav-links.show {
    display: flex;
  }
}

/* Add padding to entire page content */
body {
  padding: 80px 20px 20px; /* top | right & left | bottom */
}

/* Keep hero section full-width */
.hero {
  margin-left: -20px;
  margin-right: -20px;
}

/* Ensure carousel is a stacking context */
.video-carousel { position: relative; z-index: 0; }

/* Arrow container overlays slides */
.carousel-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;      /* let only the buttons receive clicks */
  z-index: 5;                /* above videos/images */
}

/* Actual arrow buttons */
.carousel-nav button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  margin: 0 8px;

  /* make them pop on any background */
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}

/* Optional hover/focus states */
.carousel-nav button:hover,
.carousel-nav button:focus-visible {
  background: rgba(0,0,0,0.7);
  outline: none;
}

/* On very small screens, nudge inward a bit more */
@media (max-width: 480px) {
  .carousel-nav button { margin: 0 4px; }
}