/* GENERAL STYLES */
body {
  font-family: 'Merriweather', serif;
  background-image: url('hero-bg.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* HEADER, LOGO, NAVIGATION */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(150, 111, 51, 0.4), rgba(150, 111, 51, 0));
  z-index: 1;
}

.logo {
  position: relative;
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFD700;
  margin-right: 2rem;
  margin-top: -6px;
  height: 40px;
  line-height: 40px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  line-height: 40px;
}

.nav-links a:hover {
  color: #800020;
}

.nav-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: #FFD700;
  margin-right: -1rem;
  position: relative;
  top: 1px;
}

/* HEADER QUOTE SECTION */
.quote-block {
  text-align: center;
  margin-top: 1rem;
  padding-right: 2rem;
}

.header-quote {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 4px #000;
}

.hero-divider {
  height: 2px;
  background: linear-gradient(to right, #800020, #FFD700, #800020);
  margin: 0.25rem auto 1rem auto;
  width: 43%;
  animation: shimmer 0.5s linear infinite;
  background-size: 200% auto;
}

/* SHIMMER ANIMATION */
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* HERO CONTAINER */
#hero {
  text-align: right;
  color: #fff;
  padding: 2rem 2rem 1rem 2rem;
}

#hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#hero .container h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #FFD700;
  text-shadow: 1px 1px 3px #000;
}

#hero .container p {
  max-width: 500px;
  font-size: 1rem;
  color: #f0f0f0;
  text-align: right;
  line-height: 1.4;
}

.hero-icon {
  margin-left: 0.5rem;
}

/* TESTIMONIAL section divider shimmer line */
.testimonial-divider {
  height: 2px;
  width: 46%;
  background: linear-gradient(to right, #800020, #FFD700, #800020);
  animation: shimmerMove 0.9s linear infinite;
  background-size: 200% auto;
  margin: 0.1rem -35rem 0.25rem 39rem;
}


@keyframes shimmerMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* TESTIMONIALS SECTION */
.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 2rem 2rem 0 2rem;
}

.carousel-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700;
  text-transform: uppercase;
  text-align: right;
  width: 100%;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 6px rgba(128, 0, 32, 0.6);
}

/* CAROUSEL */
.carousel {
  width: 500px;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(to bottom,
    rgba(150, 111, 51, 0.2),
    rgba(184, 115, 51, 0.1),
    rgba(184, 115, 51, 0)
  );
}

.testimonial {
  display: none;
  font-size: 1.1rem;
  color: #F5F5F5;
  padding: 1rem;
  transition: opacity 0.5s ease-in-out;
  border-left: 5px solid #FFD700;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: linear-gradient(to top, rgba(205, 127, 50, 0.4), rgba(205, 127, 50, 0));
  backdrop-filter: blur(2px);
}

.testimonial.active {
  display: block;
}

/* CAROUSEL DOTS */
.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: linear-gradient(to bottom, #800020, #FFD700);
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

.dot:hover {
  opacity: 0.8;
  transform: scale(1.1);
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.6), rgba(150, 111, 51, 0.4));
}

/* FOOTER */
.site-footer {
  background: linear-gradient(to top, rgba(205, 127, 50, 0.4), rgba(205, 127, 50, 0));
  padding: 0.75rem 1rem;
  margin: 0 auto;
  opacity: 0.85;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

/* Monogram image */
.footer-left {
  display: flex;
  align-items: center;
}

.footer-monogram {
  width: 80px;
  height: auto;
}

/* Quote in center */
.footer-center {
  flex-grow: 1;
  text-align: center;
}

.footer-quote {
  font-size: 1.75rem;
  color: #FFD700;
  text-shadow: 1px 1px 2px #800020;
  margin: 0;
  padding: 0.25rem 0;
  white-space: nowrap;
}

/* Consultation button */
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-button {
  font-size: 1.1rem;
  color: #FFD700;
  background: linear-gradient(to right, #cd7f32, transparent);
  padding: 0.4rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.footer-button:hover {
  background-color: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}



/* RESPONSIVE MEDIA*/
@media screen and (max-width: 768px) {
  .logo {
    font-size: 1.2rem;
    margin: -0.5rem 1rem 5rem 1rem;
    text-align: right;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .testimonial-container {
    align-items: center;
    padding-right: 1rem;
  }

 /* Responsive tweaks */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left, .footer-right {
    justify-content: center;
  }

  .footer-button {
    margin-top: 0.5rem;
  }

  .footer-quote {
    margin: 0.5rem 0;
  }
}

