/*fonts*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Sriracha&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Raleway:wght@400;500;600&family=Sriracha&display=swap");

@font-face {
  font-family: "Buchery";
  src: url("../fonts/Buchery.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*css variables*/
:root {
  --primary-color: #0f1111;
  --background-color: #f5f5f5;
  --secondary-color: #fa7b06;
  --hover-color: #d7670a;
  --tertiary-color: #fbfbff;
  --text-font: "Lato", sans-serif;
  --logo-font: "Buchery";
  --catalog-font: "Sriracha", cursive;
  --card-font: "Raleway", sans-serif;
  --card-font-medium: "Sriracha", cursive;
}

/* reset styles */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
main {
  position: relative;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: var(--tertiary-color);
  border-bottom-left-radius: 30rem;
  z-index: -10;
}

.header {
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #060606;
  width: 100%;
  height: 85vh;
  border-bottom-left-radius: 35rem;
  border-bottom-right-radius: 20rem;
  z-index: -9;
}

.hero {
  background-image: url("../assets/bulb-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left 32rem bottom -10rem;
  height: 85vh;
  border-bottom-left-radius: 35rem;
  border-bottom-right-radius: 20rem;
}

.navbar {
  /* height: 65px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.5;
  padding: 3rem; */

  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #0f1111e4;
  height: 7vh;
}

.logo-container {
}

.logo {
  /* font-family: var(--logo-font);
  font-size: 3rem;
  text-decoration: none;
  margin-left: 20rem;
  color: white;
  font-size: 2.5rem; */
  font-family: var(--logo-font);
  font-size: 3rem;
  text-decoration: none;
  color: var(--background-color);
  position: relative;
}

.logo span {
}

.dot-com {
  font-family: var(--text-font);
  font-size: 1.4rem;
  margin-left: -1.2rem;
  letter-spacing: 1px;
}

.logo-img {
  height: 35px;
  position: absolute;
  right: 6.2rem;
}

.by {
  margin-left: 0.9rem;
}

.nav-list {
  /* list-style-type: none;
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  gap: 4rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 4rem;
  margin-top: 4rem;
}

.nav-links {
  text-decoration: none;
  color: #aaa8a8;
  font-family: var(--text-font);
  font-size: 1.5rem;
  transition: 0.5s;
}

.nav-links:hover {
  color: var(--hover-color);
}

.nav-links:active {
  color: var(--background-color);
}

.nav-links::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--hover-color);
  margin: 20px auto;
}

.nav-links:active::after {
  width: 100%;
}

.icons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.phone-icon {
  width: 22px;
  height: 22px;
  transition: 0.3s;
}

.heart-icon {
  width: 22px;
  height: 22px;
  transition: 0.3s;
}

.cart-icon {
  width: 25px;
  height: 25px;
  transition: 0.3s;
}

.phone-icon:hover {
  fill: var(--hover-color);
}

.heart-icon:hover {
  fill: var(--hover-color);
}

.cart-icon path:hover {
  stroke: var(--hover-color);
}

svg:active {
  color: var(--background-color);
}

.hero-section {
  width: 100%;
}

.info-container {
  display: block;
  justify-content: center;
  align-items: center;
  margin-top: 19rem;
  margin-left: 24rem;
  width: 50%;
  float: left;
}

.info-title {
  color: #f5f5f5;
  font-size: 5.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.info-title svg {
  margin-bottom: 25px;
  margin-left: 4px;
}

.info {
  color: #aaa8a8;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--text-font);
  font-size: 1.7rem;
  margin-bottom: 3.5rem;
  line-height: 1.43;
  letter-spacing: 1px;
}

.contact-btn {
  width: 15%;
  height: 38px;
  color: #f5f5f5;
  background-color: var(--hover-color);
  /* font-family: var(--text-font); */
  font-size: 1.6rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}

.social-icons {
  gap: 2rem;
  display: flex;
  flex-direction: column;
  float: right;
  margin: 0 auto;
  width: 100px;
  align-items: flex-end;
  margin-top: 25rem;
  padding-right: 22rem;
  /* transition: 0.5s; */
}

.linkedin-icon {
  transition: 0.3s;
}

.facebook-icon {
  transition: 0.3s;
}

.instagram-icon {
  transition: 0.3s;
}

.social-icons svg:hover {
  fill: var(--hover-color);
}

.linkedin-icon path:hover {
  stroke: var(--hover-color);
}

.catalog-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 100vh; */
}

.cards-container {
  width: 200px;
  margin-left: 75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  row-gap: 2rem;
  column-gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.catalog-head {
  font-size: 5rem;
  font-weight: 320;
  margin-top: 20rem;
}

.catalog-subhead {
  font-family: var(--catalog-font);
  font-weight: 50;
  font-size: 2.5rem;
  color: var(--hover-color);
  margin-top: 3rem;
  margin-left: 10rem;
}

.cards {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 1px solid #bacdd8;
  border-radius: 20px;
  height: 360px;
  width: 290px;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7); */
  margin-left: 2rem;
  overflow: hidden;
}

.card-info {
  position: absolute;
  font-family: var(--card-font);
  background-color: #12121297;
  bottom: 0%;
  width: 100%;
  height: 110px;
  color: #f0efeffe;
  border-top: 3px solid #f0efef6e;
  padding-top: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

.cards img {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-heart {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 30px;
  height: 34px;
  background-color: #121212ae;
  top: 2%;
  right: 3rem;
  border-radius: 6px;
}

.cardh-icon {
  padding-top: 8px;
  width: 28px;
  height: 28px;
}

.bulb-name {
  font-size: 1.8rem;
  padding-bottom: 3px;
}

.company-name {
  font-size: 1.3rem;
}

.waltz {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* margin-top: 1rem; */
  /* margin-right: 4rem; */
  font-size: 1.4rem;
  width: 50%;
}

.waltz span {
  /* padding-bottom: 0.5rem; */
  /* padding-left: 10px; */
}

.bolt-walt {
  height: 23px;
  width: 23px;
}

.walts-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.waltz-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-right: 8rem;
  margin-top: 1.5rem;
}

.price {
  font-size: 1.9rem;
  margin-left: 20rem;
  margin-top: -4.3rem;
  font-family: var(--card-font);
}

.price span {
  padding-top: 3px;
  font-size: 1.2rem;
  padding-left: 20px;
}

.buy-btn {
  display: flex;
  justify-content: center;
  background-color: #121212ae;
  width: 15rem;
  height: 30px;
  margin-top: 12px;
  border-radius: 5px;
  align-items: center;
  color: #bacdd8;
  border: 2px solid #aaa8a8;
}

.buy-icon {
  width: 20px;
  height: 20px;
}

.view-btn {
  display: flex;
  justify-content: center;
  font-family: var(--card-font);
  font-weight: 500;
  color: var(--hover-color);
  font-size: 1.8rem;
  padding: 3rem;
  margin-left: 113rem;
}

.second-header {
  font-family: var(--card-font);
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #000000e6;
  color: #f5f5f5;
}

.header-two h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
}

.svg-bolt {
  margin-bottom: 1rem;
}

.header-two p {
  font-size: 2rem;
}

.btn-container {
  margin-left: 10rem;
}

.contact-btn1 {
  width: 16rem;
  height: 4rem;
  color: #f5f5f5;
  background-color: var(--hover-color);
  font-size: 1.6rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
