@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

html {
  font-size: 12px;
}

body {
  min-height: 100vh;
  font-family: "Merriweather", serif;
  background: url(img/Nova2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* HEADER START */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgb(13, 53, 35);
}

header .logo img {
  height: 100px;
  padding: 10px 0;
}

header .navbar ul li {
  position: relative;
  float: left;
}

header .navbar ul li a {
  color: white;
  padding: 15px;
  display: block;
  font-size: 18px;
}

header .navbar ul li a:hover {
  color: #f47000;
}

header .navbar ul li ul {
  position: absolute;
  left: 0;

  width: 231px;

  background-color: rgb(13, 53, 35);
  display: none;
}

header .navbar ul li ul li {
  width: 100%;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
  display: initial;
}

#menu-bar {
  display: none;
}

header label img {
  height: 25px;
  color: white;
  cursor: pointer;
  display: none;
}

@media (max-width: 1024px) {
  header .navbar ul li a {
    padding: 10px;
  }
}

@media (max-width: 991px) {
  header label img {
    display: initial;
  }

  header .navbar {
    position: absolute;
    height: 100vh;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgb(21, 73, 50);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    text-align: center;
  }

  header .navbar ul li {
    width: 100%;
    padding: 15px 0;
  }

  header .navbar ul li ul {
    position: relative;
    width: 100%;
  }

  header .navbar ul li ul li {
    background: rgb(26, 87, 60);
  }

  #menu-bar:checked ~ .navbar {
    display: initial;
  }
}

/* END HEADER */

/* HERO START */
.hoverRed {
  text-align: center;
  padding-top: 13rem;
  color: white;
  font-size: 2.4rem;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1024px) {
  .hoverRed {
    font-size: 1.7rem;
  }

  .big {
    font-size: 1.7rem !important;
  }

  .small {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .hoverRed {
    font-size: 1.5rem;
  }

  .star {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }

  .big {
    font-size: 1.5rem !important;
  }

  .small {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 425px) {
  .hoverRed {
    font-size: 1.2rem;
  }

  .star {
    width: 40% !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .big {
    font-size: 1.2rem !important;
  }

  .small {
    font-size: 1rem !important;
  }

  .logo img {
    height: 70px !important;
  }
}

.hoverRed:hover {
  color: #f47000;
}

.star {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -20px;
  margin-bottom: -30px;
}

.hardwood {
  text-align: center;
  color: white;
}

.big {
  font-size: 2.4rem;
}

.small {
  font-size: 2.2rem;
}

/* END HERO */

/* GALLERY START*/
.images {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #bbe7d0;
}

.images h1 {
  position: relative;
  font-size: 3rem;
  text-align: center;
  padding-top: 150px;
}

.images .gallery-images {
  position: relative;
  height: auto;
  width: 85%;
  margin: auto;
  padding: 45px 0;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 2vh;
  grid-auto-flow: dense;
}

.images .gallery-images .img {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  cursor: zoom-in;
}

.images .gallery-images .img:first-child {
  grid-column-start: span 2;
  grid-row-start: span 2;
}

.images .gallery-images .img:nth-child(2n + 3) {
  grid-row-start: span 2;
}

.images .gallery-images .img:nth-child(4n + 5) {
  grid-column-start: span 2;
  grid-row-start: span 2;
}

.images .gallery-images .img:nth-child(6n + 7) {
  grid-row-start: span 1;
}

.images .gallery-images .img:nth-child(8n + 9) {
  grid-column-start: span 1;
  grid-row-start: span 1;
}

.images .gallery-images .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*  responsive  */

@media (max-width: 768px) {
  .images .gallery-images {
    display: grid;
    grid-template-columns: auto auto auto;
  }
}

@media (max-width: 430px) {
  .images .gallery-images {
    display: block;
  }

  .images .gallery-images .img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 2% 0;
  }

  .images .gallery-images .img img {
    display: block;
  }
}

.images .popup-image {
  position: fixed;
  top: 50px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.images .popup-image span {
  position: absolute;
  top: 50px;
  right: 10px;
  font-size: 40px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
}

.images .popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 5px;
  max-height: 700px;
  width: auto;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .images .popup-image img {
    max-height: 550px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .images .popup-image img {
    max-width: 600px;
    max-height: 550px;
  }
}

@media (max-width: 500px) {
  .images .popup-image img {
    max-width: 320px;
    max-height: 550px;
  }
}

/* END GALLERY */
/* FLOOR START */
.floor {
  background-color: #bbe7d0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  min-height: 100vh;
  padding-top: 140px;
}

.flhead {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.flhead h1 {
  font-size: 3rem;
  color: black;
}

.cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.cont .card {
  flex: 1;
}

.cont .card img {
  width: 65%;
  height: auto;
}

.typesimage {
  background-color: #bbe7d0;
  min-height: 100vh;
}

.typesimage img {
  max-width: 100%;
  height: auto;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-top: 170px;
}

@media (max-width: 768px) {
  .cont {
    flex-direction: column;
  }

  .cont .card img {
    width: 75%;
    height: auto;
  }
}

/* END FLOOR */

/* FINISHES START */

.finishes {
  background-color: #bbe7d0;
  min-height: 100vh;
}
.finishes h1 {
  padding-top: 13rem;
  font-size: 3rem;
  margin: auto;
  text-align: center;
}
.finish-wrapper {
  width: 80%;
  margin: auto;
}
.top-text,
.bottom-text {
  font-size: 17px;
  text-align: center;
  margin: 20px auto;
}
.button-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.button-wrapper a{
  color: #111a85;
}
.button-wrapper a:hover{
  color: #f47000;
}
@media (max-width: 650px) {
  .button-wrapper {
    display: block;
    text-align: center;
  }
}

.button1 {
  width: 300px;
  margin:10px auto;
  font-size: 18px;
  background-color: #bbe7d0;
  padding: 15px 0;
  box-shadow: 0px 0px 18px 0 #0000002c;
  transition: 0.3s ease box-shadow;
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
}
.button1:hover {
  box-shadow: 0px 0px 5px 0 #0000002c;

}
@media (max-width: 340px){
  .button1{
    width: 250px;
    font-size: 17px;
  }
}

.textovi{
  background-color: #bbe7d0;
  min-height: 100vh;
  
}
.materials{
  width: 85%;
  margin: auto;
}
.textovi h1{
  padding-top: 13rem;
  font-size: 3rem;
  text-align: center;
}
.textovi p{
  font-size: 20px;
  text-align: center;
  margin: 50px auto;
}

/* CONTACT START */
#contact {
  background-color: #bbe7d0;
  min-height: 100vh;
}

.section-title {
  font-size: 3rem;
  color: black;
  padding-top: 13rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .conttext {
    font-size: 1.9rem !important;
  }
}

@media (max-width: 768px) {
  .conttext {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 375px) {
  .section-title {
    padding-top: 80px;
  }

  .conttext {
    font-size: 1.5rem !important;
  }

  .card-container .card p {
    font-size: 1.8rem !important;
    width: 300px !important;
  }
}

.section-title span {
  color: #f47000;
}

.conttext {
  display: flex;
  font-size: 2.5rem;
  font-weight: 100;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
  padding-bottom: 3rem;
  word-wrap: normal;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 80%;
  background: #b5d6c5c5;
  border-radius: 6px;
  padding: 30px 60px 40px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-container .contact-content .left-side {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.contact-container .contact-content .left-side .details {
  cursor: pointer;
}

.contact-container .contact-content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.contact-container .contact-content .right-side {
  width: 65%;
  margin-left: 90px;
}

.contact-container .contact-content .right-side p {
  font-size: 18px;
}

.contact-container .contact-content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #111a85;
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;
  margin-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  background: #f47000;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="submit"]:hover {
  background: #d16b11;
}

.contact-container .contact-content .left-side .details {
  margin: 14px;
  text-align: center;
}

.contact-container .contact-content .left-side .details i {
  font-size: 30px;
  color: #111a85;
  margin-bottom: 10px;
}

.contact-container .contact-content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.contact-container .contact-content .left-side .details .text-one,
.contact-container .contact-content .left-side .details .text-two {
  font-size: 14px;
  color: #000000;
}

@media (max-width: 950px) {
  .contact-container {
    width: 90%;
    padding: 30px 35px 40px 35px;
  }
}

@media (max-width: 820px) {
  .contact-container {
    margin: 40px 0;
    height: 100%;
  }
  .contact-container .contact-content {
    flex-direction: column-reverse;
  }
  .contact-container .contact-content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-container .contact-content .left-side::before {
    display: none;
  }
  .contact-container .contact-content .right-side {
    width: 100%;
    margin-left: 0;
  }
}


/*End contact Section */
