@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

main {}

.banner {
    position: relative;
    width: 100%;
    max-height: 85vh;
    /* full screen height */
    overflow: hidden;
    aspect-ratio: 16/9;
}

.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* crop video to fill */
    z-index: -1;
}

.banner-content {
    position: relative;
    z-index: 99;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-family: sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: absolute;
}

.bannerText {
    font-size: 3vw;
    font-weight: bolder;
}

.brandImageStyle {
    width: 70% !important;
    height: auto;
    /* background: #000; */
}

.brandListSection {
    background: #FFC75F;
    /* margin-bottom: 5rem; */
}

.brandImageContainerStyle {
    background: #fff;
    width: 250px;
    height: 250px;
    border-radius: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.connectButton {
    min-width: 150px;
    border: none;
    background-color: black;
    color: #fff;
    height: 40px;
    border-radius: 5px;
}

.brandCard {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.brandCard:hover {
    background: #FFC75F;
    box-shadow: 2px 2px 2px 2px #e6bb6b;
    transform: translateY(-10px) scale(1.05);
}

.brandListStyle::after {
    content: "" !important;
}

.sellerAccountHeading {
    font-size: calc(2.5vw + 15px) !important;

}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.contact-link {
  text-decoration: none;
  color: #f8f9fa; /* Bootstrap's text-light */
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: transparent;
  background: linear-gradient(90deg, #f0a10f, #dbc8a5, #8f8065, #FFC75F);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
  100% {
    background-position: 100% 50%;
  }
}


.footerSec1{
    width: 30%;
}
.footerSec2{
    width: 60%;
    padding-left: 2rem;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #f3f3f3e0 !important;
    box-shadow: none !important;
}
.logoBannerStyle{
    width: 300px;
    height: auto;
}

.mapButton {
  background: linear-gradient(45deg, #FFC75F, #e3a83c);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.mapButton:hover {
  background: linear-gradient(45deg, #e3a83c, #FFC75F);
  transform: scale(1.05);
}
.mapContainer{
    /*height: 80vw !important;*/
    aspect-ratio: 16/6;
    border-radius:10px;
    overflow: hidden;
}
.vw100{
    width: 100vw !important;
}
.vh100{
    height: 100vh !important;
}
.backButton{
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    margin-right: auto;
}
