/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; 
  --border-section: 56px 56px 0 0;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(10, 24%, 19%);
  --first-color-alt: hsl(12, 42%, 12%);
  --first-color-light: hsl(12, 24%, 32%);
  --second-color: hsl(39, 62%, 65%);
  --title-color: hsl(12, 12%, 16%);
  --text-color: hsl(12, 12%, 32%);
  --text-color-light: hsl(12, 8%, 48%);
  --white-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Nunito Sans", sans-serif;
  --biggest-font-size: 2.75rem;
  --big-font-size: 1.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4.5rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
  color: var(--text-color);
  transition: all 0.25s ease-out;
  animation-duration: 0.3s;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 4.5rem 3.5rem;
}

.section__title {
  color: var(--title-color);
  font-size: var(--big-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-regular);
  line-height: 120%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--first-color);
  z-index: var(--z-fixed);
  transition: background .4s, box-shadow .4s;
}

.header__border {
  width: 100%;
  height: 2px;
  background-image: linear-gradient(90deg,
                    var(--text-color-light) 50%,
                    transparent 50%);
  background-size: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: opacity .3s;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-size: var(--h3-font-size);
  font-family: var(--second-font);
}

.nav__logo img {
  width: 28px;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    background: linear-gradient(180deg, 
                var(--first-color) 0%,
                var(--first-color-alt) 100%);
    border-radius: 0 0 0 0; /* change border radius*/
    box-shadow: 0 -2 12px hsla(12, 32%, 12%, .3);
    width: 100%;
    padding: 1.25rem 4rem;
  }
}

.nav__list {
  display: flex;
  justify-content: space-between;
}

.nav__link {
  color: var(--white-color);
  font-family: var(--second-font);
  font-size: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: .25rem;
  transition: color .3s;
}

.nav__link i {
  background: linear-gradient(180deg,
              hsl(39, 62%, 75%) 0%,
              hsl(39, 62%, 45%) 100%);
  color: transparent;
  -webkit-background-clip: text; 
  font-size: 1.5rem;            
}

.nav__link:hover {
  color: var(--second-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 8px hsla(12, 32%, 12%,.5);
}

.scroll-header .header__border {
  opacity: 0;
}

/* Active link */
.active-link {
  color: var(--second-color);
}

/*=============== HOME ===============*/
.home {
  background: linear-gradient(180deg, 
              var(--first-color) 0%,
              var(--first-color-alt) 100%);
  padding: 100px 0;            
}

.home__container {
  padding-top: 2rem;
  row-gap: 2rem;
}

.home__data {
  text-align: center;
}

.home__subtitle {
  font-size: var(--normal-font-size);
  color: var(--second-color);
  font-weight: var(--font-medium);
  margin-bottom: .75rem;
}

.home__title,
.home__description {
  color: var(--white-color);
}

.home__title {
  text-align: initial;
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-regular);
  line-height: 120%;
  margin: 0 auto 2rem;
  position: relative;
  width: max-content;
} 

.home__title img {
  width: 80px;
  position: absolute;
  right: -1rem;
  bottom: -1.25rem;
}

.home__description {
  margin-bottom: 2rem;
}

.home__img {
  width: 320px;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  justify-self: center;
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--second-color);
  padding: 1rem 1.5rem;
  border-radius: 4rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
  box-shadow: 0 8px 32px hsla(39, 62%, 65%, .25);
  transition: box-shadow .3s;
}

.button i {
  font-size: 1.5rem;
  transition: transform .3s;
}

.button:hover {
  box-shadow: 0 8px 48px hsla(39, 62%, 65%, .3);
}

.button:hover i {
  transform: translateX(.25rem);
}

/*=============== PRODUCTS ===============*/
.products {
  background-color: var(--first-color-alt);
}

.products__bg {
  background-color: var(--first-color);
  border-radius: var(--border-section);
}

.products__container {
  row-gap: 3.5rem;
}

.products__button {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--first-color-alt);
  padding: 1rem 1.5rem;
  border-radius: 4rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  box-shadow: 0 8px 24px hsla(12, 32%, 8%, .5);
  margin-bottom: 2rem;
  transition: box-shadow .3s, transform .3s;
}

.products__button i {
  font-size: 1.5rem;
}

.products__button:hover {
  box-shadow: 0 8px 32px hsla(12, 32%, 8%, .6);
  transform: translateY(.35rem);
}

.products__data,
.products__card {
  text-align: center;
  color: var(--white-color);
}

.products__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 3.5rem 4.5rem;
}

/* product picture size */ 
.products__img {
  width: 140px;
  height: 180px;
  filter: drop-shadow(0 4px 16px hsl(12, 32%, 16%));
  margin-bottom: 1.5rem;
  transition: transform .4s;
}

.products__img:hover {
  transform: translateY(-.35rem);
}

.products__name,
.products__price {
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-regular);
  line-height: 120%;
}

/*=============== ABOUT ===============*/
.about {
  background-color: var(--first-color);
}

.about__bg {
  background-color: var(--white-color);
  border-radius: var(--border-section);
}

.about__container {
  row-gap: 3rem;
}

.about__data {
  text-align: center;
  color: black;
}

.about__img {
  width: 320px;
  border-radius: 1rem;
  justify-self: center;
}

/*=============== STEPS ===============*/
.steps {
  position: relative;
  background-color: var(--first-color);
  border-radius: var(--border-section);
}

.steps__bg {
  background-color: var(--first-color);
  border-radius: var(--border-section);
}

.steps__container {
  padding-top: 2rem;
}

.steps .section__title,
.steps__description {
  color: var(--white-color);
  height: 20vh;
}

.steps__content {
  display: grid;
  row-gap: 4rem;
  position: relative;
}

.steps__card {
  width: 250px;
  z-index: 10;
}

.steps__circle {
  width: 150px;
  height: 150px;
  background-color: var(--first-color-light);
  border-radius: 50%;
  box-shadow: 0 8px 32px hsla(12, 32%, 8%, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.steps__img {
  width: 120px;
  filter: drop-shadow(0 4px 16px hsl(12, 32%, 16%));
  transition: transform .3s;
}

.steps__img:hover {
  transform: translateY(-.35rem);
}

.steps__subcircle {
  width: 50px;
  height: 50px;
  background-color: var(--second-color);
  position: absolute;
  top: -.75rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  outline: 10px solid var(--first-color);
}

.steps__card-move,
.steps__card-move .steps__circle {
  margin-left: auto;
}

.steps__card-move, .steps__description {
  text-align: right;
}

.steps__border {
  position: absolute;
  left: 3rem;
  right: 0;
  top: 7.5rem;
  margin: 0 auto; 
}

.steps__bg-img {
  position: absolute;
  top: 14rem;
  left: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
  object-position: -132px;
  opacity: .15;
}

/*==========process section=========*/
.process {
  padding: 100px 10%;
  background: linear-gradient(180deg, #3b2314, #2a170f);
  color: #fff;
  position: relative;
}

.process__header {
  border-radius: 40px;
  padding: 25px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  text-align: center;
  margin-bottom: 80px;
}

.process__header h1 {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.process__header p {
  font-size: 18px;
  color: #d7c2b5;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at the top right,
    rgba(255, 255, 255, 0,05),
    transparent 60%
  );
  pointer-events: none;
}


/*=step layout*/
.process__step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.process__step.reverse {
flex-direction: row-reverse;
}

.process__image img:hover {
  transform: scale(1.05s);
}

.process__content {
  max-width: 500px;
}

.step-number {
  font-size: 60px;
  font-weight: bold;
  color: #c69c6d;
  opacity: 0.2;
  display: block;
  margin-bottom: 10px;
}

.process__content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.process__content p {
  line-height: 1.7;
  color: #e6d8cf;
  font-size: 16px;
}

/*responsive==*/
@media (max-width: 900px) {
  .process__step {
    flex-direction: column;
    text-align: center;
  }

  .process__step.reverse {
    flex-direction: column;
  }

  .process__content {
    max-width: 100%;
  }

  .process__image img {
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .process {
    padding: 60px 20px;
  }

  .process__header {
    padding: 25px 20px;
    border-radius: 25px;
    margin-bottom: 40px;
  }

  .process__header h1 {
    font-size: 28px;
    letter-spacing: 0;
  }

  .process__header p {
    font-size: 15px;
    line-height: 1.6;
  }
  
}


/*=============== TESTIMONIAL ===============*/
.testimonial {
  background-color: var(--first-color);
}

.testimonial__bg {
  background-color: var(--white-color);
  border-radius: var(--border-section);
}

.testimonial__container {
  row-gap: 3rem;
}

.testimonial__data {
  text-align: center;
}

.testimonial__name {
  color: #000;
  font-weight: var(--font-medium);
}

.testimonial__img {
  width: 320px;
  border-radius: 1rem;
  justify-self: center;
}

/*=====trade hero====================*/
.trade-hero {
  background: linear-gradient(rgba(30,15,5,0.8), rgba(30,15,5,0.8)),
            url('assests/img/coffee-beans-bg.png');
  background-size: cover ;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.trade-hero .subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  opacity: 0.85;
}

/*==content===*/
.trade-content {
  padding: 80px 8%;
  background: #2b1408;
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/*==cards==*/
.trade-card {
  background: rgba(255,255 255,0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  color: #fff;
}

.trade-card h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #f6c27a;
}

.trade-card ul {
  padding-left: 18px;
}

.trade-card li {
  margin-bottom: 8px;
}

.trade-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255 255,0.1);
}

.trade-card.highlight {
  background: linear-gradient(135deg, #5a2e0f, #8b4513);
}

/*==cta===*/
.trade-cta {
  text-align: center;
  margin-top: 80px;
}

.trade-cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.trade-cta p {
  margin-bottom: 25px;
  opacity: 0.8;
}

.trade-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #f6c27a;
  color: #2b1408;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.trade-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--first-color-alt);
  position: relative;
}

.footer__bg {
  background-color: var(--first-color-alt);
  border-radius: var(--border-section);
}

.footer__container {
  padding-block: 4rem 7rem;
  row-gap: 4.5rem;
  position: relative;
}

.footer__data {
  text-align: center;
  row-gap: 4.5rem;
}

.footer__logo,
.footer__title,
.footer__input,
.footer__description,
.footer__social-link {
  color: var(--white-color);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-size: var(--h3-font-size);
  font-family: var(--second-font);
  margin-bottom: 1rem;
}

.footer__logo img {
  width: 28px;
}

.footer__title {
  font-size: var(--big-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-regular);
  line-height: 120%;
}

.footer__form {
  row-gap: 1rem;
}

.footer__input,
.footer__button {
  border: none;
  outline: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.footer__input {
  width: 100%;
  background: transparent;
  border: 2px solid var(--text-color-light);
  padding: 1.15rem 1.5rem;
  border-radius: 4rem;
}

.footer__input::placeholder {
  color: var(--text-color-light);
}

.footer__button {
  padding-block: 1.25rem;
  justify-content: center;
  cursor: pointer;
} 

.footer__description {
  font-size: var(--small-font-size);
}

.footer__privacy {
  color: 
  var(--second-color);
}

.footer__privacy:hover {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}

.footer__social-link {
  font-size: 1.25rem;
  transition: color .3s;
}

.footer__social-link:hover {
  color: var(--second-color);
}

.footer__copy {
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  text-align: center;
}

.footer__copy a {
  font-size: var(--smaller-font-size);
  margin-bottom: 2rem;
  color: var(--text-color-light);
  transition: .3s ease;
}

.footer__copy a:hover {
  color: var(--second-color);
  text-decoration: underline;
}

.footer__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -172px;
  opacity: .15;
}

.footer__contact a {
  color: #d4a373;
  text-decoration: none;
  transition: all 0.3s ease; 
}

.footer__contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(12, 8%, 65%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(12, 8%, 45%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(12, 8%, 35%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background: linear-gradient(180deg, 
              var(--first-color) 0%,
              var(--first-color-alt) 100%); 
  box-shadow: 0 0 8px hsla(12, 32%, 12%, .5);
  color: var(--white-color);
  font-size: 1.1rem;
  display: inline-flex;
  padding: .6rem;
  border-radius: 50%;
  z-index: var(--z-tooltip);
  transition: bottom .5s transform .3s;
}

.scrollup:hover {
  transform: translateY(-.30rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 7rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__menu {
    padding-inline: 3rem;
  }

  .home__title {
    width: 220px;
    text-align: center;
  }
  .home__title img {
    bottom: 2.5rem;
  }

  .products__content {
    grid-template-columns: 1fr;
  }

  .steps__content {
    row-gap: 3rem;
  }
  .steps__card {
    width: initial;
  }
  .steps__border {
    left: 0;
    top: 5.5rem;
  }
}

@media screen and (min-width: 400px) {
  .steps__content {
    grid-template-columns: 325px;
    justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__menu {
    width: 376px;
  }

  .home__container,
  .products__container,
  .about__container,
  .testimonial__container,
  .footer__container {
    grid-template-columns: 400px;
    justify-content: center;
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .section {
    padding-block: 7.5rem 5.5rem;
    --border-section: 104px 104px 0 0;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    justify-content: space-between;
  }
  .nav__logo img {
    width: 32px;
  }
  .nav__menu {
    width: initial;
  }
  .nav__list {
    column-gap: 4.5rem;
  }
  .nav__link {
    font-size: var(--normal-font-size);
  }
  .nav__link i {
    display: none;
  }

  .home__container {
    grid-template-columns: max-content 440px;
    align-items: center;
    padding-top: 3rem;
  }
  .home__img {
    order: -1;
    width: 450px;
  }
  .home__data {
    text-align: initial;
  }
  .home__title img {
    width: 120px;
  }
  .home__description {
    margin-bottom: 3rem;
  }

  .products__container {
    grid-template-columns: 418px 535px;
    align-items: center;
  }
  .products__data {
    text-align: initial;
  }
  .products__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .products__name,
  .products__price {
    font-size: var(--h3-font-size);
  }

  .about__container {
    grid-template-columns: max-content 465px;
    align-items: center;
  }
  .about__img {
    order: -1;
    width: 450px;
  }
  .about__data,
  .about__data .section__title {
    text-align: initial;
  }

  .steps__content {
    grid-template-columns: repeat(3, max-content);
    column-gap: 6.5rem;
    padding-top: 3rem;
  }
  .steps__card {
    width: 272px;
  }
  .steps__card-move {
    display: flex;
    flex-direction: column;
    margin-top: 7rem;
  }
  .steps__card-move .steps__circle {
    margin-left: initial;
  }
  .steps__card-move .steps__description {
    order: -1;
    text-align: initial;
    margin-bottom: 3rem;
  }
  .steps__circle {
    width: 260px;
    height: 260px;
  }
  .steps__img {
    width: 210px;
  }
  .steps__subcircle  {
    width: 85px;
    height: 85px;
    top: -1.25rem;
    outline: 15px solid var(--first-color);
  }
  .steps__border {
    transform: rotate(85deg);
    width: 200px;
    left: 0;
    top: 2rem;
  }
  .steps__bg-img {
    top: 0;
    height: 100%;
    object-position: initial;
  }

  .testimonial__container {
    grid-template-columns: 510px max-content;
    align-items: center;
  }
  .testimonial__img {
    width: 450px;
  }
  .testimonial__data,
  .testimonial__data .section__title {
    text-align: initial;
  }
  .testimonial__data .section__title {
    margin-bottom: 3rem;
  }

  .footer__container {
    grid-template-columns: initial;
    justify-content: initial;
    row-gap: 6rem;
    padding-block: 6rem 3rem;
  }
  .footer__data {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    text-align: initial;
  }
  .footer__logo {
    margin-bottom: 1.5rem;
  }
  .footer__logo img {
    width: 32px;
  }
  .footer__title {
    font-size: var(--h1-font-size);
  }
  .footer__form {
    width: 360px;
    row-gap: 1.5rem;
  }
  .footer__content {
    row-gap: 4rem;
  }
  .footer__social {
    column-gap: 3rem;
  }
  .footer__social-link {
    font-size: 1.5rem;
  }
  .footer__bg-img {
    object-position: top;
  }

  .scrollup {
    right: 3rem;
  }

  .show-scroll {
    bottom: 3rem;
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

@media screen and (min-width: 1248px) {
  .home__container {
    column-gap: 4.5rem;
  }
  .home__img {
    width: 550px;
  }

/*added*/
  .products__container {
    column-gap: 9rem;
  }

  .about__container {
    column-gap: 6.5rem;
  }
  .about__img {
    width: 550px;
  }

  .testimonial__container {
    column-gap: 1rem;
  }
  .testimonial__img {
    width: 550px;
  }
}

/* EDITS ON  NEW PAGES */
body {
  background-color: var(--first-color);
  border-radius: var(--border-section);
  font-family: 'Segoe UI',sans-serif;
  margin: 0;
  /*background: #f8f6f3;*/
  color: #ffffff;
}

/* FIX THIS PAGE HEADER*/
.page-header {
  background-color: var(--first-color);
  border-radius: var(--border-section);
  text-align: center;
  height: 10vh;
  position: relative;
  display: flex;
  justify-content: center;
  /*background: white;*/ 
  animation: fadeInUp 1.2s ease forwards;
}

.timeline {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.step {
  margin-bottom: 40px;
}

.accordion {
  background-color: var(--first-color);
  border-radius: var(--border-section);
  background: none;
  border: 1px solid #222;
  padding: pointer;
}

.panel {
  display: none;
  padding: 15px 0;
}


/*visual story selection section fix */




/*eah screen block*/


.visual-block {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

html {
  scroll-behavior: smooth;
}

/*dark cinematic overlay*/
.visual-block::before {
  content: " ";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
  );
  z-index: 1;
}

/* text container */
.visual-block .overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.visual-block h2 {
  font-size: 42px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.visual-block p {
  font-size: 18px;
  opacity: 0.9;
}

/*== hover zoom effect==*/

/*== background image paths ===*/
.visual-block.farm {
  background-image: url('../img/highaltsoil.WEBP');
}

.visual-block.roasting {
  background-image: url('../img/roasting.JPG');
}

.visual-block.brewing {
  background-image: url('../img/cup.jpg');
}

.visual-block.lifestyle {
  background-image: url('../img/refined.jpg');
}

/*=== mobile fix===*/
@media(max-width: 768px) {
  .visual-block {
    background-attachment: scroll;
    height: 80vh;
  }
}

.visual-block h2 {
  font-size: 28px;
}

.visual-block p {
  font-size: 15px;
}


.gallery {
  background-color: rgb(37, 16, 16);
  border-radius: var(--border-section);
  padding: 80px 20px; 
  text-align: center;
  grid-template-columns: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
} 

.btn {
  background-color: var(--first-color);
  border-radius: var(--border-section);
  display: inline-block;
  padding: 12px 30px;
  background: #000;
  /*color: white;*/
  text-decoration: none;
  margin-top: 20px;
}



/* my improvements ==*/ 

/* ===================== NAVBAR FIXES ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 8, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.nav__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #c8a96e;
  transition: width 0.25s;
}

.nav__link:hover,
.nav__link.active-link {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__cta {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: #c8a96e;
  color: #0a0805;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
  background: #dfc08a;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}

/* ===================== HERO FIXES ===================== */
.home {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0805 0%, #1a120a 60%, #0f0b06 100%);
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.home__label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1.2rem;
}

.home__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}

.home__title em {
  font-style: italic;
  color: #c8a96e;
}

.home__description {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.home__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.home__btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #c8a96e;
  color: #0a0805;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(200,169,110,0.3);
}

.home__btn-primary:hover {
  background: #dfc08a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,110,0.45);
}

.home__btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  transition: border-color 0.2s, color 0.2s;
}

.home__btn-secondary:hover {
  border-color: #c8a96e;
  color: #c8a96e;
}

.home__badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.home__badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 20px;
  color: rgba(255,255,255,0.55);
}

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

.home__image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(200,169,110,0.2));
  animation: floatImg 5s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ===================== FOOTER FIXES ===================== */
.footer {
  background: #080604;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer__logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__whatsapp {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 5px;
  transition: background 0.2s;
}

.footer__whatsapp:hover {
  background: rgba(37,211,102,0.22);
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #c8a96e;
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
}

.footer__contact a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: #c8a96e;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  margin: 0 calc((100% - 1200px) / 2);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .home__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .home__description,
  .home__label {
    margin-left: auto;
    margin-right: auto;
  }

  .home__buttons,
  .home__badges {
    justify-content: center;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    margin: 0 1.5rem;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav__list,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }
}