

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap');

:root {
  --c1: #1c2d3f;
  --c2: rgb(44, 70, 98);
  --text1: #f4eae0;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  body{
    font-family: 'Baskervville', sans-serif;
    line-height: 1.6;
  }

  ul{
    list-style-type: none;
  }

  a{
    text-decoration: none;
    color: #f4eae0;
  }

  img {
    width: 100%;
  }

  .topbar{
    height: 70px;
    background-color: var(--c1);
  }

  .topbar .flex {
    justify-content: space-between;
  }

  .topbar ul {
    display: flex;
  }

  .topbar a {
    padding: 5px;
    margin: 0 5px;
  }

  .container{
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 30px;
  }

  .logo {
    max-width: 221px;
    height: 50px;
  }

  .map {
    max-height: 35px;
    max-width: 35px;
  }

  .number {
    background-color:rgba(44, 70, 98, 0.8);
    margin: 5px;
    padding: 5px;
    border-radius: 10px;
    font-family: sans-serif;
    text-shadow: 3px 3px rgb(0, 0, 0);
  }

  .button:hover {
    box-shadow: 1px 3px black;
    transform: scale(1.10);
  }

nav a:hover {
  border-bottom: 2px var(--text1) solid;
}


/* showcase */

  .showcase{
    width: 100%;
    height: 70vh;
    position: relative;
    background-color: blue;
  }

  .showcase img 
  {
    height: 100%;
    position: absolute;
    z-index: 1;
  }

  .showcase:before {
    content: " ";
    z-index: 2;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 70, 98, 0.5);
  }

  .show-text {
    position: absolute;
    z-index: 3;
    color: #f4eae0;
    top: 20%;
    left: 15%;
    text-align: center;
    text-shadow: 2px 2px #1c2d3f;
  }

  .show-text h1 {
    font-size: 80px;
    text-shadow: 5px 5px #1c2d3f;
  }

  .show-text p {
    font-size: 50px;
  }

  .show-text a {
    font-size: 50px;
    margin: 10px;
    padding: 10px;
  }

/* sales area */

  .sales {
    background-color: var(--c1);
    text-align: center;
    color: var(--text1);
    height: 70px;
    position: relative;
  }

  .sales h2 {
    font-size: 30px;
    position: absolute;
    left: 42%;
    top: 15%;
  }

  /* features area */

  .features {
    margin-top: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
  }

  .features h1 {
    font-size: 40px;
  }

  .section-header {
    color: var(--c1);
    border-bottom: 3px solid var(--c2);
    grid-column: 2 / 4;
    margin-bottom: 20px;
  }

  .item {
    color: var(--c2);
  }

  .item1 {
    grid-column: 2 / 3;
  }

  .item2 {
    grid-column: 3 / 4;
  }

  .item3 {
    grid-column: 1 / 2;
  }

  /* unit size section */

  .sizehead {
    background-color: var(--c1);
    color: var(--text1);
    text-align: center;
    margin-top: 40px;
    padding: 40px;
  }

  .sizehead h1 {
    font-size: 40px;
  }

  .sizehead h2 {
    margin-bottom: 10px;
  }

  .sizehead a {
    color: var(--text1);
    font-size: 20px;
    font-family: sans-serif;
    color: white;
    background-color: var(--c2);
    padding: 10px;
    border-radius: 10px;
  }

  .sizehead a:hover {
    box-shadow: 1px 3px white;
  }

  .unitsize {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: left;
    text-align: center;
    align-items: center;
    color: var(--c2);
  }

  .unitsize h1 {
    color: var(--c1);
  }

  .sunit {

  }

  /* gallery section */

  /* .gallery-wrapper {
    background-color: var(--c1);
  } */

  .gallery {
    width: 90%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    /* background-color: white; */
    /* padding: 20px; */
  }

  .gallery img {
    height: 219px;
    width: 268px; 
    cursor: pointer;
  }

  .gallery img:hover {
    transform: scale(0.8); /* rotate(-15deg); */
    border-radius: 20px;
    box-shadow: 0 32px 7px rgba(68, 77, 136, 0.2);
  }

  .full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 6;
  }

  .full-img img {
    width: 90%;
    max-width: 800px;
  }

  .full-img span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  /* description section */

  .description-wrapper {
    /* margin: 50px; */
    padding: 50px;
    background-color: var(--c1);
    color: var(--text1);
  }

  /* about section */

  .about-wrapper {
    margin: 150px;
    color: var(--c1);
  }

  .about-wrapper h1 {
    font-size: 40px;
  }

  .about-wrapper p {
    font-size: 20px;
  }

  /* review section */

  .review-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
  }

  .grid-head {
    grid-column: 1 / 4;
    background-color: var(--c1);
    color: var(--text1);
    padding: 20px;

  }

  /* footer */

  .foot-wrapper {
    display: flex;
    background-color: var(--c1);
    color: var(--text1);
    padding: 30px;
    width: 100%;
    justify-content: space-between;
    font-family: sans-serif;
    margin-top: 50px;
    text-align: center;
  }
  /* utilities */

  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

