/*
Theme Name: Elaeis Gardens Custom Theme
Author: LOKi
Author URI: https://thisisloki.com
Description: Elaeis Gardens Custom Theme
Version: 1.0.0
*/

/* variables */

:root {
  --prime-green: #273717;
  --bg-yellow: #FFFADE;
}

* {
    box-sizing: border-box; padding: 0; margin: 0;
  }
  html {
    font-size: 18px;
    background-color: #000;
    /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
    /* font-family: "Raleway", sans-serif; */
    /* font-family: "Noto Serif JP", serif; */
    font-family: "Baskervville", serif;
     font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
  }
  body {
    background-color: #fff;
    color: #424115;
    color: var(--prime-green);
  }

  h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1em;
  }
  p {margin-bottom: 1em;}

  .text-center {text-align: center;}
  .text-red {color: red;}
  .bg-yellow {background-color: var(--bg-yellow);}

  .h1-slim {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px 20px;
    backdrop-filter: blur(10px);

    .the-logo {
        flex-grow: 1;
    }

    .the-menu {
        flex-grow: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;

        ul {
            display: flex;
            gap: 20px;
            li {
                list-style: none;
    
                a {
                    text-decoration: none;
                    color: #fff;
                    mix-blend-mode: difference;
                }
            }
        }
    }
  }

  hr {margin: 30px 0; border:0; border-top: 1px solid #000000aa; width: 100%;}

  /* footer */
  footer {
    background-color: #fefefe;
    color: var(--prime-green);
    padding: 20px 0;
    text-align: center;

    

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    

      p { color: var(--prime-green); }
      a { color: var(--prime-green); text-decoration: none; }
      a:hover { color: var(--prime-green); text-decoration: underline; }

      >div {
        flex-grow: 0;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      >div:first-child {
        flex-grow: 1;
      }

      .social-links {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        a {
          color: #fff;
          font-size: 20px;
          background-color: var(--prime-green);
          border-radius: 50%;
          width: 40px;
          height: 40px;
          display: flex;
          justify-content: center;
          align-items: center;
          text-decoration: none;
          transition: all 0.3s ease;

          &:hover {
            background-color: var(--prime-green);
            color: #fff;
            transform: scale(1.1);
            
          }
        }
      }
    }
  }

  .row-bg2 {
    background-color: rgb(217, 223, 219);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .limit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .vpad-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .vpad-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flex-row {
    display: flex;
    gap: 0px;
    align-items: center;
  }

  .col-4 {
    flex: 1 1 33.33333333333333%;
    padding: 0;
  }

  .col-8 {
    flex: 1 1 66.66666666666666%;
    padding: 0;
  } 

  .image {
    padding-right: 40px;
    padding-left: 0;

    img{width: 100%;display: block;}
  }

  .flex-reverse {
    flex-direction: row-reverse;
    .image { 
        padding-left: 40px;
        padding-right: 0;
    }
  }

  /* content */

 

  button, .boxed-cta {
    padding: 10px 40px;
    border: 1px solid #273717;
    width: fit-content;
    background-color: transparent;
    color: #273717;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover {
        color: #fff;
        background-color: #273717;
    }
    font-family: "Baskervville", serif;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
}

  .cover-fixed {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .cover-contain {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .hero-fold {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    .hero-fold-content {
        display: flex;
        justify-content: space-between;
        align-items: center;

        color: #fff;

        div {
            flex-grow: 1;
        }
        div:first-child {
            flex-grow: 0;
            width: 180px;
        }
        div:last-child {
            flex-grow: 1;
            margin-left: 150px;
        }
        h1 {
            font-size: 50px;
            font-weight: 400;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
        }

        ul {
          display: flex;
          gap: 30px;
          li {
              list-style: none;
              a {
                  text-decoration: none;
                  color: #fff;
              }
              /* // before content arrow right */
              &::after {
                  content: '>';
                  margin-left: 5px;
              }
          }
      }
    }

    .breadcrumbs {
      display: flex;
      position: absolute;
      bottom: 20px;
      left: 20px;
      gap: 10px;
      color: #fff;
      align-items: center;
      i {
        font-size: 14px;
      }
      a {
        color: #fff;
      }
    }
  }

  .down-icon {
    font-size: 1rem;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    /* cursor: pointer; */
    &:hover {
      transform: translateX(-50%) scale(1.1);
      transition: all 0.3s ease;
    }
  }
