
/* Home page */
.main-page-container{
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.div1-container{
  overflow: hidden;
}

#div1{
  margin: 0 auto;
  text-align: center;
  height: 400px;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: div1 0.5s;
}

#logo{
  height: 200px;
  width: auto;
}

.div2-container{
  margin: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

#div2{
  transform: scale(0.8);
  align-items: center;
}

/* div3-container */

#div3-container{
  max-width: 300px;
  width: 100%;
  height: 400px;
}

#div3-con-buttons{
  display: flex;
  flex-direction: column;
  padding: 10px;
}

#div4-container{
  max-width: 300px;
  width: 100%;
  height: 200px;
}

#img_logo{
  max-width: 200px;
  width: 100%;
}

#img_logo_1{
  max-height: 70px;
  width: auto;
}

#event-button, #event-button_2{
  text-wrap: nowrap;
  margin: 20px 10px;
}

/* IHP */

#img-ihp{
  height: 100px;
  width: auto;
  border-radius: 20px;
}

#ihp-title1{
  font-size: 30px;
}

#ihp-button-con{
  height: 500px;
}

#ihp-title2-div{
  display: none;
}

#browse-buttons{
  margin: 50px auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

#ihp-fabric-button, #ihp-design-button{
  margin: 10px auto;
  height: 200px;
  width: 330px;
}

#line{
  height: 2px;
  width: 400px;
}

@keyframes div1{
  from {transform: translate(0%, 50%);}
  to {opacity: 1;}
}
@keyframes div2{
  from {transform: translate(0%, -50%);}
  to {opacity: 1;}
}


/* Show mobile sidebar button */
#mobile-sidebar-button {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  color: var(--primary-text-color);
  text-align: center;
  cursor: pointer;
  font-size: 12px;
}

#sidebar-close-button {
  display: block; /* Initially hidden */
  position: fixed;
  right: 20px;
  z-index: 20; /* Ensure button is above other content */
  cursor: pointer;
  font-size: 15px;
  color: var(--primary-text-color);
  background-color: white;
  border-radius: 30px;
  padding: 5px 10px;
  cursor: pointer;
  text-align: center;
}

/* Hide sidebar container on mobile screens by default */
#sidebar-container-fabric, #sidebar-container-design, #sidebar-container-Collections, #sidebar-container-Eventtab{
  display: none;
}

#header-img-cc{
  display: none;
}


#sidebar{
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: 80%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--cards-bg-color);
  border-radius: 10px;
  list-style-type: none;
  animation: mobile-sidebar 0.3s;
}
@keyframes mobile-sidebar{
  from {opacity: 0; height: 70%;}
  to {opacity: 1; height: 80%;}
}

#sidebar ul li{
  padding: 10px;
}


/* Other modal styles */

#topnavbar{
  position: fixed;
  width: 100%;
  padding: 20px 0px 10px;
  top: 0;
  right: 0;
  z-index: 1;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content:start;
}

#topnav-text{
  font-size: 15px;
}

#nav-rec{
  z-index: -100;
  background-color: var(--background-color);
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0px;
  opacity: 0;
}

#nav-rec.show{
  z-index: -100;
  background-color: var(--background-color);
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0px;
  opacity: 1;
}

.groupnav p{
  display: none;
  font-size: 14px;
  margin: 0;
}

.groupnav{
  background-color: var(--background-color);
  border-top:2px solid var(--cards-bg-color);
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 0px;
  padding: 0;
}

#icon-home, #icon-search, #icon-form, #icon-cart, #menu-button{
  margin:0px 20px;
  text-align: center;
  cursor: pointer;
}

#back-button{
  text-align: center;
  padding:0px 20px;
  cursor: pointer;
  margin-left: 5px;
}

#back-button-text{
  display: none;
}

.speech-bubble {
  display: none;
  position: fixed;
  top: auto;
  bottom: 30px;
  right: 0px;
}

.speech-bubble::after {
  display: none;
}

#icon-cart.sb {
  margin: 0;
  padding: 20px;
  background-color: var(--primary-text-bg-hover-color);
  border-radius: 50%;
}

/* Gallery */

.gallery {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-bottom: 100px;
}

.gallery img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  border-radius: 10px;
}

.cart-gallery {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-bottom: 100px;
}


.Collab-Collection, .Event-Collection, .Event-Collection_df{
  display: grid;
  gap: 10px;
  width: 100%;
  margin-bottom: 100px;
}

.Collab-Collection img, .Event-Collection img, .Event-Collection img{
  width: 100%;
  height: auto;
  cursor: zoom-in;
  border-radius: 10px;
}

.image-container {
  margin: 0px 10px;
  width: calc(100% - 20px);
  height: 100%;
}

/* cc-modal */

#cc-modal-container {
  width: 100%;
  animation: modal-2 0.3s;
}

#img-cc-modal{
  height: 100px;
  border-radius: 20px;
  width: auto;
}

#cc-div-1{
  display: flex; 
  flex-direction: column;
}

#cc-div-1 p{
  font-size: 18px; 
  padding: 0px; 
  color: var(--primary-text-color);
}

#cc-modal-text{
  color: var(--secondary-text-color); 
  font-size: 15px;
}

.cc-modal-info{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

/* Menu */

.menu-modal {
  position: fixed;
  display: none;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.menu-modal-content{
  top: auto;
  bottom: 80px;
  right: 20px;
  width: 300px;
  height: 400px;
}

/* Home page */

#contacts{
  user-select: text;
  margin: 0 auto;
  margin-top: 100px;
  border-radius: 30px;
  height: 550px;
}


#ind, #aus{
  margin: 20px 0px;
  width: 300px;
  padding: 30px;
  background-color: transparent;
  border-radius: 30px;
}

/* Cart Tab */

#cart-float-button{
  display: block;
  background-color: transparent;
  height: 0;
  width: 0;
}

#cart-float-text{
  display: none;
}

#cart-options{
  display: flex;
  z-index: 1;
  align-items: center;
  position: fixed;
  top: 15px;
  right: 10px;
  height: 50px;
  width: fit-content;
  background-color: var(--background-color);
  border-radius: 30px;
  padding: 2px 10px;
}

#cart-remove-button{
  background-color: var(--background-color);
}

#about-video{
  width: 100%;
  height: 300px;
}

#button-container{
  display: inline-block;
  margin: 40px 20px;
  height: 400px;
}

#button-container a{
  width: 150px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 20px;
}

/* Search tab */


/* Email quote */

#quote-modal-container{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  overflow: scroll;
  overflow-x: hidden;
  position: inherit;
  padding: 0px;
}

#quote-modal-template{
  max-width: 500px;
  width: 100%;
  margin: auto;
  margin-top: 50px;
}

.quote-modal-content {
  margin: auto;
  margin-bottom: 50px;
  background-color: transparent;
  padding: 0px;
  height: 800px;
  width: 100%;
  max-width: 500px;
  border-radius: 0px;
}

#quoteForm{
  padding: 20px;
  margin-top: 50px;
}

#qmt1, #qmt2{
  margin: 20px;
}

#name, #email, #message{
  box-sizing: border-box;
}

#closeQuoteModal{
  z-index: 100;
  position: fixed;
  right: 20px;
  top: 20px;
}