.hero-slideshow {
  position: relative;
  overflow: hidden;
  height: 80vh;
  max-height: 700px;
}

.slideshow {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  background-size: cover;
  background-position: center;
  height: 100%;
}

/* Arrows – visible on desktop only */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(17, 17, 17, 0.6);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  display: none;
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

@media (min-width: 768px) {
  .arrow {
    display: block;
  }
}

/*.hero-slideshow {
  position: relative;
  overflow: hidden;
  height: 50vh;
  max-height: 700px;
}*/

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 5;
}

.dots span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

:root {
  --black: #000;
  --white: #fff;
  --darkgold: #bfa75e;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--black);
}

.promo-section {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.promo-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.promo-section.short {
  min-height: 50vh;
}

.promo-section.reverse {
  flex-direction: row-reverse;
}

.promo-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.promo-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
}

h2 {
  font-size: 2.5rem;
  color: var(--black);
}

p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background-color: var(--darkgold);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  width: fit-content;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #9b8640;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-section,
  .promo-section.reverse {
    flex-direction: column;
  }

  .promo-image {
    height: 65vh; /* Increased from 60vh to 65% of screen height */
  }

  .promo-content {
    height: 35vh; /* Explicitly define height */
    padding: 10px 15px; /* Reduced padding */
    text-align: center;
  }

  .promo-content h2 {
    font-size: 1.4rem; /* Smaller heading */
    margin-bottom: 10px;
  }

  .promo-content p {
    font-size: 0.9rem; /* Smaller paragraph */
    margin-bottom: 15px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

.hero-slideshow {
  margin-bottom: 50px; /* Adjust the space here */
}



.dots span.active {
  background-color: #d1a954;
}


.modern-footer {
  background: #fafafa;
  color: #000;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
  border-top: 1px solid darkgoldenrod;
}

.footer-content {
  max-width: 1300px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 150px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.footer-col h4::before {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: darkgoldenrod;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 6px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.footer-logos img {
  height: 50px;
  margin-right: 20px;
}

.footer-links-small a {
  margin-right: 20px;
  color: #000;
  text-decoration: none;
  border-top: 3px solid darkgoldenrod;
  padding-top: 4px;
  font-size: 14px;
}

.footer-newsletter p {
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  width: 220px;
}

.footer-newsletter button {
  background: transparent;
  color: #000;
  border: 1px solid darkgoldenrod;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

.footer-newsletter button:hover {
  background: darkgoldenrod;
  color: white;
}

@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: row;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
