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


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

body,
html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #FFFAF5;
}   

h1, h2, h3, h4, h5, h6,
.avante-garde-title,
.avante-garde-featured-title,
.avante-garde-dialogue-text h3 {
  font-family: 'Crimson Text', serif !important;
}

p,
a,
button,
.avante-garde-text-container p,
.avante-garde-link-button,
.avante-garde-featured-link,
.avante-garde-dialogue-text p {
  font-family: 'Poppins', sans-serif !important;
}


/* 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 */
.avante-garde-text-section {
  background-color: #FFFAF5;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.avante-garde-text-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  /* font-family: "Georgia", serif; */
}

/* Gallery Section */
.avante-garde-gallery-section {
  background-color: #FFFAF5;
  padding: 80px 20px;
}

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

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

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

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

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

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

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

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

.avante-garde-link-button:hover::after {
  width: 100%;
  height: 2px;
  color: #00664D;
}

.avante-garde-link-button:hover{
    color: #00664D;
}

avante-garde-featured-link:hover{
    color:#00664D;
}

/* Featured Collection Section */
/* .avante-garde-featured-collection {
  background-color: #FFFAF5;
  text-align: center;
  padding-bottom: 60px;
  height: 100vh;
}

.avante-garde-featured-image-containe {
  width: 100%;
  overflow: hidden;
}

.avante-garde-featured-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
} */

.avante-garde-featured-collection {
  background-color: #FFFAF5;
  text-align: center;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avante-garde-featured-image-containe {
  width: 100%;
  overflow: hidden;
}

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

/* Hover zoom effect */
.avante-garde-featured-image-containe:hover .avante-garde-featured-image {
  transform: scale(1.03);
}

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

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

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

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

.avante-garde-featured-link:hover::after {
  width: 100%;
  height: 2px;
  color: #00664D;
}

.avante-garde-featured-link:hover{
    color: #00664D;
}


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

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

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

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

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

.avante-garde-dialogue-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  /* font-family: "Georgia", serif; */
  margin-bottom: 20px;
  color: #000;
}

.avante-garde-dialogue-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  /* font-family: "Georgia", serif; */
}

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

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

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

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

  .avante-garde-featured-title {
    font-size: 1.3rem;
  }

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

  .avante-garde-featured-image{
    height: 80vh;
  }

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

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

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

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

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

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

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