html {
  scroll-behavior: smooth;
}

/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(184, 91%, 17%);
  --clr-primary-2: hsl(185, 84%, 25%);
  --clr-primary-3: hsl(185, 81%, 29%);
  --clr-primary-4: hsl(184, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(185, 62%, 45%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(185, 57%, 50%);
  --clr-primary-7: hsl(184, 65%, 59%);
  --clr-primary-8: hsl(184, 80%, 74%);
  --clr-primary-9: hsl(185, 94%, 87%);
  --clr-primary-10: hsl(186, 100%, 94%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  /* --ff-primary: "Lato", sans-serif; */
  /* --ff-primary: "Fira Code", monospace; */
  --ff-primary: "Signika Negative", sans-serif;

  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/*
=============== 
Global Styles
===============
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-primary);
  background: var(--clr-white);
  color: rgb(109, 136, 105);
  line-height: 1.5;
  font-size: 0.875rem;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

img:not(.nav-logo) {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */

.btn {
  text-transform: uppercase;
  /* background: var(--clr-primary-5); */
  color: rgba(255, 255, 255, 0.6);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  /* font-weight: 700; */
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}
.btn:hover {
  color: white;
  background: transparent;
  border: 2px solid white;
}
.section {
  padding: 5rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  text-transform: uppercase;
}
.section-title span {
  color: #22663f;
}
@media screen and (max-width: 592px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}
/*
=============== 
Navbar
===============
*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: var(--clr-white); */
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--dark-shadow);
  z-index: 2;
}
.nav-icons {
  display: none;
}
.nav-center {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.nav-toggle {
  background: transparent;
  border: transparent;
  font-size: 1.5rem;
  color: black;
  cursor: pointer;
  transition: var(--transition);
}
.nav-toggle:hover {
  transform: scale(1.2);
}
.nav-link {
  display: block;
  padding: 1rem 2rem;
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  transition: var(--transition);
  color: var(--clr-grey-1);
  cursor: pointer;
  font-size: 1rem;
}
.nav-link:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-8);
}
/* 280px */
.nav-links {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
  background: rgba(131, 131, 131, 0.02);
}
.show-links {
  height: 230px;
}
.nav-logo {
  height: 25px;
  padding-right: 100px;
}
@media screen and (min-width: 992px) {
  /* hide toggle button */
  .navbar {
    height: 60px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-center {
    display: flex;
  }
  .nav-links {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    display: flex;
  }
}
/*
=============== 
Hero
===============
*/

.hero {
  min-height: 100vh;
  /* background: linear-gradient(to bottom, #d4a276, #b1947b); */
  /* background: rgba(204, 133, 62, 0.8); */
  background: #499f68;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-photo {
  max-width: 28rem;
  align-self: center;
  justify-content: center;
  display: flex;
}

.hero-banner {
  text-align: center;
  color: var(--clr-white);
  padding: 0 3rem;
  transition: var(--transition);
}
.hero-banner h1 {
  text-transform: uppercase;
}
.hero-banner p {
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--clr-white);
  letter-spacing: var(--spacing);
}
.hero-btn {
  padding: 0.9rem 1.6rem;
  font-size: 1.25rem;
  background: var(--clr-white);
  color: var(--clr-primary-5);
}
.hero-btn:hover {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.hero-sub-title {
  font-size: 1.8rem;
  text-align: center;
  animation: slideFromRight 2s ease-in-out 1;
  margin-top: 2rem;
}
@keyframes slideFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  50% {
    transform: translateX(-100px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.hero-sub-title span {
  font-size: 2.5rem;
  color: rgb(226, 218, 212);
  /* text-shadow: 0 0 10px rgba(43, 41, 41, 0.2); */
}
@media screen and (min-width: 992px) {
  .hero-photo {
    margin-right: 5rem;
  }
  .hero-banner {
    transition: var(--transition);
  }
}
@media screen and (min-width: 768px) {
  .hero {
    display: flex;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
      url(../images/background-1.JPG) center/cover no-repeat;
  }
  .hero-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    /* margin-bottom: 15rem; */
    /* transition: var(--transition); */
  }
  .hero-sub-title span {
    font-size: 3rem;
    color: rgb(189, 98, 33);
    /* text-shadow: 0 0 10px rgba(43, 41, 41, 0.2); */
  }
}
/* read more page */
.hero-2 {
  display: flex;
  flex-wrap: wrap;
  background: #499f68;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.extended-info {
  font-size: 1rem;
}
.extended-info p {
  color: white;
  font-weight: 600;
  padding: 0.5rem;
}

@media screen and (min-width: 960px) {
  .hero-2 {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1),
        rgba(83, 79, 79, 0.4)
      ),
      url(../images/orlando-1.JPG) center/cover fixed no-repeat;
  }
  .hero-banner-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* margin: 0 5rem; */
  }

  .hero-banner-2 p {
    font-size: 2rem;
    color: var(--clr-white);
    text-align: center;
  }
  .extended-img {
    position: relative;
  }
  .extended-info {
    padding: 0 5rem;
    align-self: flex-end;
    margin-top: 5rem;
  }
  .extended-info p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    /* text-shadow: 0 0 10px rgb(27, 19, 19); */
  }
  .extended-info span {
    color: rgb(42, 151, 28);
    font-size: 1.8rem;
  }
  .readmore-photo {
    max-width: 10rem;

    /* align-self: center;
    justify-content: center;
    display: flex; */
  }
}

/* read more page end */

/*
=============== 
About
===============
*/
/* section add to globals */
/* title add to globals */
/* section center add to globals */
.about-info p {
  font-size: 1.3rem;
  color: rgb(252, 252, 252);
  padding: 0 0.5rem;
  text-shadow: 0px 0px 5px rgb(86, 173, 78);
}
.about-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
    url(../images/cacao\ bean\ in\ hand.JPG) center/cover no-repeat;
}
.about-img {
  max-width: 400px;
  margin: 0 auto;
}
.about-img,
.about-info {
  margin-bottom: 2rem;
}
.about-info h3 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.about-info h3,
.about-title,
.about-section span {
  color: greenyellow;
}
.about-section h2 {
  color: rgb(252, 252, 252);
}

@media screen and (min-width: 992px) {
  .about-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about-img,
  .about-info {
    flex: 0 0 calc(50% - 2rem);
    margin-bottom: 0;
    align-self: center;
  }
  .about-info p {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1170px) {
  .about-img {
    position: relative;
    box-shadow: 0px 0px 15px rgb(66, 62, 62);
  }
}

/*
=============== 
Services
===============
*/
.services {
  background: var(--clr-grey-10);
}
.service {
  text-align: center;
  margin-bottom: 3rem;
}
.service-icon {
  /* background: #f29559; */
  background: #d4a276;
  color: var(--clr-primary-1);
  padding: 0.5rem;
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-text {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
.service-title {
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 576px) {
  .services-center {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .service-title {
    font-size: 1.5rem;
  }
  .service {
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 1;
  }
}
@media screen and (min-width: 992px) {
  .service {
    flex: 0 0 calc(33.33% - 1rem);
    margin-bottom: 1;
  }
}
@media screen and (min-width: 1170px) {
  .service {
    display: flex;
    text-align: left;
    flex: 0 0 calc(25% - 1rem);
  }
  .service-icon {
    align-self: start;
  }
  .service-info {
    padding-left: 1rem;
  }
  .service-title {
    margin-bottom: 0.5rem;
  }
}
/*
=============== 
Featured Tours
===============
*/
/* .tour-card {
  transition: var(--transition);
  background: var(--clr-grey-10);
  background: var(--clr-primary-6);
  box-shadow: var(--light-shadow);
  margin-bottom: 2rem;
}
.tour-card:hover {
  box-shadow: var(--dark-shadow);
  transform: scale(1.02);
}
.tour-img-container {
  position: relative;
}
.tour-img {
  height: 15rem;
  object-fit: cover;
}
.tour-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  margin-bottom: 0;
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding-left: 0.25rem 0.5rem;
}
.tour-info {
  padding: 1.25rem 1.5rem;
} */
/* alternative layout for card */
/* .tour-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tour-title p,
.tour-title h4 {
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.tour-footer p {
  line-height: 0;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}
.tour-btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .featured-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .tour-card {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media screen and (min-width: 1170px) {
  .tour-card {
    flex: 0 0 calc(33.33% - 2rem);
  }
} */
/*
=============== 
Contact
===============
*/
.contact {
  background: linear-gradient(rgb(0, 0, 0, 0.7), rgba(51, 53, 45, 0.6)),
    url(../images/bugs\ around\ fruit.JPG) center/cover no-repeat;
}
.contact-title {
  color: var(--clr-white);
}
.contact-title p {
  color: var(--clr-primary-);
}
.contact-form {
  display: flex;
  max-width: 28rem;
}

.form-control {
  flex: 1 1 auto;
  color: var(--clr-grey-5);
}
.form-control,
.btn-submit {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1, 5;
  font-weight: 300;
  letter-spacing: var(--spacing);
  background: var(--clr-white);
  text-transform: capitalize;
  border: transparent;
}
.form-control::placeholder {
  color: inherit;
}
.btn-submit {
  font-family: var(--ff-primary);
  margin-left: 0.5rem;
  color: var(--clr-primary-1);
  transition: var(--transition);
  cursor: pointer;
  border: 0.5px solid transparent;
}
.btn-submit:hover {
  color: var(--clr-white);
  background: transparent;
  border: 0.5px solid var(--clr-white);
}
@media screen and (min-width: 992px) {
  .contact-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .contact-form {
    align-self: flex-start;
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 2rem;
  }
}
/*
=============== 
Gallery
===============
*/
.gallery-img-container {
  position: relative;
  background: var(--clr-primary-5);
}
.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  transform: translate(-50%, -50%);
  color: var(--clr-white);
  opacity: 0;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-img {
  height: 17rem;
  object-fit: cover;
  transform: var(--transition);
}
.gallery-img-container:hover .gallery-img {
  opacity: 0.8;
}
.gallery-img-container:hover .gallery-icon {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .gallery-center {
    display: flex;
    flex-wrap: wrap;
  }

  .gallery-img-container {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 992px) {
  .gallery-img-container {
    flex: 0 0 25%;
  }
}
/*
=============== 
Footer
===============
*/
.footer {
  /* background: var(--clr-grey-1); */
  background: var(--clr-primary-1);
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.footer-links,
.footer-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-link {
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  margin-right: 1rem;
  letter-spacing: var(--spacing);
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--clr-primary-8);
}
.footer-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--clr-primary-9);
  transition: var(--transition);
}
.footer-icon:hover {
  color: var(--clr-primary-5);
}
.copyright {
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  color: var(--clr-white);
}
