* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  font-family: "Poppins", serif;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
  color: black;
}

.navbar {
  display: flex;
  width: 90%;
  padding: 10px;
  gap: 20px;
  font-size: 14px;
}

.navbar .logo {
  padding: 10px;
}

.navbar .menu {
  list-style: none;
  display: flex;
}

.menu-item {
  position: relative;
}

.navbar .menu .menu-item a {
  text-decoration: none;
  color: black;
  padding: 10px;
  display: block;
}

.navbar .menu .menu-item a:hover {
  background-color: black;
  color: white;
  border-radius: 10px;
}

.navbar .menu .menu-item .dropdown {
  position: absolute;
  z-index: 100;
  width: 200px;
  background-color: white;
  color: black;
  list-style: none;
  display: none;
  box-shadow: 0 8px 16px black;
  border-radius: 15px;
  border: 2px solid white;
}

.navbar .menu .menu-item .dropdown li a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

.navbar .menu .menu-item .dropdown li a:hover {
  background-color: black;
  color: white;
}

.navbar .menu .menu-item:hover .dropdown {
  display: flex;
  flex-direction: column;
}

.navbar .icons {
  display: flex;
  gap: 20px;
  padding: 10px;
}

.header-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted black;
  width: 90%;
  font-size: 14px;
  position: sticky;
  top: 0;
  background-color: white;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.hero video {
  height: 800px;
}

.cheers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(https://images.samsung.com/is/image/samsung/assets/us/home-appliances/mlps/12202024/DA_-_Promo_Post_Holiday_BAU_-_Bespoke_Home_MLP_-_PC.png?$1440_N_PNG$);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90%;
  height: 300px;
  margin-top: 80px;
}

.cheers .text {
  display: flex;
  flex-direction: column;
  margin-left: 80px;
  width: 500px;
  color: white;
  gap: 10px;
}

.cheers .text a {
  background-color: white;
  color: black;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  width: 150px;
}

.cheers .text a:hover {
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 8.5px;
}

.design {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  margin-top: 80px;
}

.design .first {
  width: 30%;
}

.design .second {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.design .second a {
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  width: 200px;
}

.design .second a:hover {
  background-color: white;
  color: black;
  border: 2px solid black; 
}

.imgggg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 80px;
}

.imgggg img {
  width: 100%;
}

.bespoke {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  height: 350px;
  width: 90%;
  margin-top: 80px;
  gap: 20px;
}

.bespoke .pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: small;
  background-color: #f6f4f4;
  border-radius: 15px;
  gap: 5px;
}

.bespoke .pic .imgg img {
  width: 230px;
  border-radius: 15px;
}

.bespoke .pic .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.bespoke .pic .text a {
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  width: 150px;
}

.bespoke .pic .text a:hover {
  background-color: white;
  border: 2px solid black;
  color: black;
  
}

.imggg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  width: 90%;
  height: 650px;
  margin-top: 80px;
}

.imggg img {
  height: 300px;
  width: 400px;
  border-radius: 15px;
}      

.create {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  background-image: url(https://images.samsung.com/is/image/samsung/assets/us/home-appliances/bespoke/10282024/KV-Create-a-home-DT.png?$1440_N_PNG$);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90%;
  height: 500px;
  margin-top: 80px;
}

.create .text {
  display: flex;
  flex-direction: column;
  width: 400px;
  gap: 10px;
  margin-right: 100px;
}

.create .text a {
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  width: 150px;
}

.create .text a:hover {
  background-color: white;
  border: 2px solid black;
  color: black;
  
}

.sentence {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  gap: 20px;
  margin-top: 80px;
  border-top: 2px dotted black;
  background-color: #f9f9f9;
}

.sentence .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: smaller;
  margin-top: 20px;
  width: 90%;
}

.footer {
  background-color: #f9f9f9;
  padding: 20px 50px;
  width: 90%;
  margin-top: 50px;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  margin-right: 20px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  font-size: 11px;
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
  margin: 5px 0;
}

.footer-bottom p a {
  text-decoration: none;
  color: #333;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons span {
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
}