/* ─── BANNER CAROUSEL (overrides thin banner from global) ─── */

.banner-wrapper {
  background: #000;
  padding: 0;
  margin: 0;
  height: 460px;
}

.banner-wrapper img {
  filter: none;
}

.banner-track {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-center {
  width: 1200px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.banner-center img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.banner-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

/* Slide + fade keyframes */
@keyframes slide-out-left {
  to { transform: translateX(-50px); opacity: 0; }
}
@keyframes slide-out-right {
  to { transform: translateX(50px); opacity: 0; }
}
@keyframes slide-in-from-right {
  from { transform: translateX(50px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slide-in-from-left {
  from { transform: translateX(-50px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* Text variants (keep centered via left/translateX) */
@keyframes text-out-left {
  to { transform: translateX(-50%) translateX(-30px); opacity: 0; }
}
@keyframes text-out-right {
  to { transform: translateX(-50%) translateX(30px); opacity: 0; }
}
@keyframes text-in-from-right {
  from { transform: translateX(-50%) translateX(30px); opacity: 0; }
  to   { transform: translateX(-50%); opacity: 1; }
}
@keyframes text-in-from-left {
  from { transform: translateX(-50%) translateX(-30px); opacity: 0; }
  to   { transform: translateX(-50%); opacity: 1; }
}

.banner-text h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banner-text p {
  font-family: "Avenir", sans-serif;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* Side faded banners */
.banner-side {
  flex: 1;
  overflow: hidden;
  filter: grayscale(100%) blur(3px);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.banner-side.fade-out {
  opacity: 0;
}

.banner-side img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* Arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.banner-prev {
  left: 20px;
}
.banner-next {
  right: 20px;
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── WELCOME SECTION ─── */

.welcome-column {
  margin-left: 40px;
}
.welcome-image-column {
  margin-right: 40px;
  display: flex;
  align-items: center;
}

.welcome-image {
  width: 500px;
  max-width: 100%;
  border: 2px solid rgba(198, 166, 103, 0.3);
  display: block;
}

/* ─── TESTIMONIALS ─── */

.testimonials-section {
  padding: 45px 0 30px 0;
  background: #ffffff;
  text-align: center;
}

.testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #333;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #aaa;
  background: #f3f1ed;
  cursor: pointer;
  font-size: 1.3rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.testimonial-arrow:hover {
  background: #e0dedb;
}

.testimonial {
  max-width: 650px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
}

.testimonial.active {
  position: relative;
  left: auto;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.testimonial.slide-out-left {
  animation: testimonial-out-left 0.35s ease forwards;
}
.testimonial.slide-out-right {
  animation: testimonial-out-right 0.35s ease forwards;
}
.testimonial.slide-in-left {
  animation: testimonial-in-left 0.35s ease forwards;
}
.testimonial.slide-in-right {
  animation: testimonial-in-right 0.35s ease forwards;
}

@keyframes testimonial-out-left {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}
@keyframes testimonial-out-right {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}
@keyframes testimonial-in-left {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes testimonial-in-right {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonial-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-author {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #666;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .welcome-column {
    margin-left: 0;
  }
  .welcome-image-column {
    margin-right: 0;
  }
  .welcome-image {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .banner-wrapper {
    height: 280px;
  }
  .banner-center img {
    height: 280px;
  }
  .banner-side img {
    height: 280px;
  }
  .banner-text h2 {
    font-size: 1.6rem;
  }
  .banner-text p {
    font-size: 0.9rem;
  }

  .testimonials-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .banner-wrapper {
    height: 220px;
  }
  .banner-center img {
    height: 220px;
  }
  .banner-side img {
    height: 220px;
  }
  .banner-text h2 {
    font-size: 1.3rem;
  }
  .banner-text p {
    font-size: 0.8rem;
  }
  .banner-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}
