@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heritage-title,
.heritage-featured-title,
.heritage-dialogue-text h3 {
  font-family: "Crimson Text", serif;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Text Section */
.heritage-text-section {
  background-color: #fdf8f4;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heritage-text-container {
  max-width: 800px;
}

.heritage-text-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  /* font-family: "brandon"; */
}

/* Gallery Section */
.heritage-gallery-section {
  background-color: #fdf8f4;
  padding: 80px 20px;
}

.heritage-gallery-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.heritage-gallery-card {
  max-width: 500px;
  text-align: center;
}

.heritage-image-container {
  overflow: hidden;
  border-radius: 4px;
}

.heritage-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.heritage-image-link:hover img {
  transform: scale(1.05);
}

.heritage-title {
  margin: 20px 0 10px;
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* font-family: "brandon"; */
}

.heritage-link-button {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.heritage-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: width 0.4s ease;
}

.heritage-link-button:hover::after {
  width: 100%;
}

/* Featured Collection Section */
.heritage-featured-collection {
  background-color: #fdf8f4;
  text-align: center;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heritage-featured-image-container {
  width: 100%;
  overflow: hidden;
}

.heritage-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.heritage-featured-image-container:hover .heritage-featured-image {
  transform: scale(1.03);
}

.heritage-featured-info {
  padding: 30px 20px;
}

.heritage-featured-title {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  font-family: 'Crimson Text', serif;
}

.heritage-featured-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.heritage-featured-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.4s ease;
}

.heritage-featured-link:hover::after {
  width: 100%;
}


/* Cultural Dialogue Section */
.heritage-dialogue-section {
  background-color: #fdf8f4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.heritage-dialogue-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.heritage-dialogue-image {
  flex: 1 1 500px;
  max-width: 600px;
}

.heritage-dialogue-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.heritage-dialogue-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.heritage-dialogue-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Crimson Text", serif;
  margin-bottom: 20px;
  color: #000;
}

.heritage-dialogue-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  /* font-family: "brandon"; */
}

/* 🔄 Combined Media Query */
@media (max-width: 768px) {
  .heritage-banner-section {
    height: 60vh;
  }

  .heritage-text-section {
    padding: 30px 16px;
  }

  .heritage-text-container p {
    font-size: 1rem;
  }

  .heritage-gallery-wrapper {
    flex-direction: column;
    align-items: center;
    /* gap: 60px; */
  }

  .heritage-featured-title {
    font-size: 1.25rem;
  }

  .heritage-featured-link {
    font-size: 0.95rem;
  }

  .heritage-dialogue-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .heritage-dialogue-text h3 {
    font-size: 1.25rem;
  }

  .heritage-dialogue-text p {
    font-size: 1rem;
  }

  .heritage-featured-collection {
    height: auto;
    padding-bottom: 0px;
  }

  .heritage-dialogue-image {
    flex: 1 1 100px;
  }

  .heritage-featured-image{
    height: 70vh;
  }

  .heritage-dialogue-section {
    padding: 30px 10px 10px 10px;
    height: auto;
  }

  .heritage-gallery-section {
    padding: 10px 20px 30px 20px;
  }
}
