* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(255, 251, 249);
}

/*nav start*/
.topnav {
  display: flex;
  justify-content: center;
  background-color: #d9bac2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.topnav a {
  padding: 14px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

.topnav a:hover {
  background-color: #c9a59a;
}

.topnav a.active {
  background-color: #a36f78;
}

/*nav end*/

/*Products tab start*/
.tab {
  float: left;
  border: 1px solid rgb(255, 255, 255);
  background-color: rgb(217, 186, 194);
  width: 25%;
  height: auto;
  
}

.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: 1px solid white;
  outline: none;
  text-align: left;
  cursor: pointer;
  
}

.tab button:hover {
  background-color: rgb(217, 186, 194);
}

.tab button.active {
  background-color: rgb(163, 111, 120);
}

.tabcontent {
  float: left;
  padding: 0px 12px;
  border: none;
  width: 70%;
  border-left: none;
  height: 300px;
  display: none;
  
}

.pictureID {
  width: 600px;
}
/*product tab end*/

/*ScrollGallery row start*/
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
/*ScrollGallery row end*/

/*About style start*/
.pAbout {
  width: 50%;
  margin: 30px;
  padding: 10px;
}

.h3Font {
  font-family: Monotype Corsiva;
  font-size: 24px;
}

.pFont {
  font-family: Times New Roman;
  font-size: 17px;
}

#AboutBody {
  background-image: url("BilderChanel/PinkDressBacround.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#MainAbout {
  margin-left: 200px;
}

#Chanelh1About {
  font-size: 80px;
  margin: 10px;
  padding: 5px;
}
/*About style end*/

#FooterChanel {
  text-align: center;
}

/*Front page start*/
#container {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

#ImageFront {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#content h1 {
  font-size: 40px;
  font-family: 'Didot', serif;
  margin-bottom: 10px;
}

#content p {
  font-size: 18px;
  font-style: italic;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 800px) {
  #content h1 {
      font-size: 30px;
  }

  #content p {
      font-size: 16px;
  }
}

#photoID1 a {
  text-decoration: none;
  color: #fff;
}

#ChanelH1Front {
  font-size: 80px;
  margin: 10px;
  padding: 5px;
  text-align: center;
}
/*Front page end*/

/*Search bar start*/
#search-container {
  margin-bottom: 20px;
  text-align: center;
}

#search-bar {
  width: 30%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 5px;
  outline: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#search-bar:focus {
  border-color: #666;
}
/*Search bar end*/