/* ========================= */
/* HERO                      */
/* ========================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

/* blurred carousel background */
.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.55);
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-carousel img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 70%, rgba(255,175,90,0.15), transparent 60%),
    radial-gradient(circle at top, rgba(0,0,0,0.8), rgba(0,0,0,0.95));
  pointer-events: none;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CROPPED HERO LOGO */
.logo-clip {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  height: 340px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
}

/* TEXT UNDER LOGO */
.hero h1 {
  color: #f4d4a4;
  letter-spacing: 2px;
  margin-top: 0.2rem;
}

.hero p {
  color: #c7b39a;
  margin-top: 0.2rem;
}

/* BUTTON ONLY HAS BIG GAP */
.cta-button {
  margin-top: 1.2rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid #f4d4a4;
  color: #f4d4a4;
  text-decoration: none;
}

/* ========================= */
/* BRAND TEXT SECTION        */
/* ========================= */
.brand-text {
  max-width: 900px;
  margin: 3rem auto;
  line-height: 1.8;
  color: #d6d6d6;
  padding: 0 1rem;
}

.brand-text h2 {
  color: #f4d4a4;
  letter-spacing: 1px;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #555;
  padding-bottom: 0.3rem;
}

.brand-text p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  text-align: justify;
}

/* ========================= */
/* FOOTER                    */
/* ========================= */
.footer {
  text-align: center;
  padding: 1rem;
  color: #888;
}