:root {
    --color-primary: #474b4f;
    --color-primary-light: #6b6e70;
    --color-primary-dark: #222629;
  
    --color-secondary-light: #86c232;
    --color-secondary-dark: #61892f;
    --color-secondary-dark-2: #243b07;
  
    --color-grey-light-1: #faf9f9;
    --color-grey-light-2: #f4f2f2;
    --color-grey-light-3: #f0eeee;
    --color-grey-light-4: #ccc;
    --color-grey-light-5: #d1e8e2;
    
    --color-grey-dark-1: #333;
    --color-grey-dark-2: #777;
    --color-grey-dark-3: #999;
  
    --shadow-dark: 0 2rem 6rem rgba(0,0,0,.3);
    --shadow-light: 0 2rem 5rem rgba(0,0,0,.06);
  
    --line: 1px solid var(--color-secondary-light);
  }
  
  $bp-largest: 75em; 
      /* 1200px */
  $bp-large: 68.75em;  
    /*  1100px */
  $bp-medium: 56.25em; 
    /* 900px */
  $bp-small: 37.5em; 
      /* 600px */
  $bp-smallest: 31.25em; 
  /* 500px */
  
  
  * {
    margin: 0;
    padding: 0;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  
  html {
    box-sizing: border-box;
    font-size: 62.5%; 
    /* 1rem = 10px, 10px/16px = 62.5% */
  
    @media only screen and (max-width: $bp-large) {
        font-size: 50%;
    }
  }
  
  body {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-grey-dark-2);
    background-image:
      linear-gradient(
        to bottom right,
        rgba(34, 38, 41, 0.95), 75%,
        rgba(107, 110, 112, 0.95)),
        url(../../public/hero1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
  
    @media only screen and (max-width: 900px) {
      background-image:
      linear-gradient(
        to bottom right,
        rgba(34, 38, 41, 0.95), 75%,
        rgba(107, 110, 112, 0.95));
  } 
  }
  
  .container {
    width: 80%;
    margin: 8rem auto;
    border-radius: 20px;
    min-height: 50rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  
    @media only screen and (max-width: $bp-largest) {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
  }
  
  .header {
    width: 100%;
    font-size: 1.4rem;
    height: 7rem;
    background-color: transparent;
    border-bottom: var(--line);
  
    display: flex;
    justify-content: space-between;
    align-items: center; 
  
    h1 {
        font-size: 6rem;
        font-weight: 350;
        color: var(--color-grey-light-1);
        margin-bottom: 9rem;
        
    }
  
    span {
        color:var(--color-secondary-light);
    }
  
    @media only screen and (max-width: $bp-smallest) {
        flex-wrap: wrap;
        align-content: space-around;
        height: 11rem;
    }
  }
  
  .content {
    width: 100%;
    display: flex;
    justify-content: center;
  
    @media only screen and (max-width: $bp-medium) {
        flex-direction: column;
    }
    main {
      width: 100%;
      font-size: 2rem;
    }
  }
  
  .hotel-view {
    color: var(--color-grey-light-4);
  
    .overview {
      text-align: center;
      border-bottom: var(--line);
      padding: 1.5rem 3rem;
      margin-bottom: 6rem;
  
      h1 {
        font-size: 5rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 11px;
  
        @media only screen and (max-width: 720px) {
          font-size: 3rem;
      } 
      }
  
          @media only screen and (max-width: 600px) {
              padding-bottom: 1rem;
          }    
    }
  }
  
  .detail {
    display: flex;
    flex-direction: column;
    padding: 4.5rem;
    justify-content: center;
    align-items: center;
  
    h1 {
        font-size: 5rem;
        font-weight: 300;
        color: var(--color-grey-light-1);
        padding-bottom: .5rem;
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
  
        @media only screen and (max-width: 1300px) {
          text-align: center;
        }
  
        @media only screen and (max-width: 1100px) {
          text-align: center;
          padding-top: .1rem;
          font-size: 3.5rem;
        }
    
        @media only screen and (max-width: 600px) {
            padding-top: .1rem;
            
            font-size: 2.5rem;
        }
  
    }
  
  
  }
  
  .emailForm {
    display: flex;
    justify-content: center;
    align-content: center;
    border-radius: 100px;
  }
  
  .emailForm-form {
      input::-webkit-input-placeholder,
      textarea::-webkit-input-placeholder {
        color: var(--color-primary-light);
        font-size: 1.5rem;
      }
      input:-moz-placeholder,
      textarea:-moz-placeholder {
        color: var(--color-primary-light);
        font-size: 1.5rem;
      }
      input::-moz-placeholder,
      textarea::-moz-placeholder {
        color: var(--color-primary-light);
        font-size: 1.5rem;
      }
      input:-ms-input-placeholder,
      textarea:-ms-input-placeholder {
        color: var(--color-primary-light);
        font-size: 1.5rem;
      }
  
    input {
      background-color: var(--color-primary-light);    
      border: 1px solid var(--color-primary-light);
      color: var(--color-primary-light);
      position: relative;
    }
  
  }
  
  .emailInput {
    border-radius: 100px;
    height: 4rem;
    width: 35rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-primary-dark);
    font-size: 2.5rem;
    border: none;
      
    @media only screen and (max-width: 820px) {
      font-size: 1.25rem;
      width: 25rem;
    }
  }
  
  .cta {
    /* padding: 3.5rem 0; */
    text-align: center;
  
  
    h2 {
      color: var(--color-grey-light-4);
      font-size: 4rem;
      font-weight: 400;
      letter-spacing: 1px;
  
      
    @media only screen and (max-width: 1300px) {
      text-align: center;
    }
  
    @media only screen and (max-width: 1100px) {
      text-align: center;
      padding: 3rem;
      font-size: 3.5rem;
    }
  
    @media only screen and (max-width: 800px) {
      text-align: center;
        font-size: 2.25rem;
        padding: 0;
    }
    }
  
  }
  
  .cta__buttons {
    display: flex;
    justify-content: center;
    align-content: center;
  }
  
  .btn {
    border-radius: 100px;
    border: 1px solid var(--color-secondary-light);
    color: var(--color-secondary-light);
    position: relative;
    overflow: hidden;
    cursor: pointer; 
  }
  
  .btn-left {
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 2.5rem;
    font-weight: 300;
    width: 45rem;
    height: 6rem;
    background-image: linear-gradient(to right, var(--color-primary-light), 12.5%, var(--color-primary-dark));
    margin-right: 1rem;
    
    &:hover {
        background-image: linear-gradient(to left, var(--color-primary-light), 12.5%, var(--color-primary-dark));
    }
    
    &:active {
      transform: translateY(3px);
      box-shadow: .35rem .35rem 2rem var(--color-secondary-dark);
    }
    
    @media only screen and (max-width: 820px) {
      font-size: 1rem;
      width: 10rem;
      height: 8rem;
      margin-right: .5rem;
    }
  
  }
  
  .btn-right {
    font-size: 2.5rem;
    font-weight: 300;
    width: 45rem;
    background-image: linear-gradient(to left, var(--color-primary-light), 12.5%, var(--color-primary-dark));
    margin-left: 1rem;
  
    span {
      margin-top: auto;
      margin-bottom: auto;
    }
    
    &:hover {
        background-image: linear-gradient(to right, var(--color-primary-light), 12.5%, var(--color-primary-dark));
    }
  
    &:active {
      transform: translateY(3px);
      box-shadow: .35rem .35rem 2rem var(--color-secondary-dark);
    }
  
    @media only screen and (max-width: 820px) {
      font-size: 1rem;
      width: 10rem;
      height: 8rem;
      margin-left: .5rem;
    }
  }
  
  .btn-text {
    margin-top: auto;
    margin-bottom: auto;
  }