/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */
  --pale-spring-bud: hsl(60, 68%, 85%);
  --spanish-gray: hsl(0, 0%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-1: hsl(0, 0%, 96%);
  --cultured-2: hsl(60, 6%, 93%);
  --gray-web: hsl(0, 1%, 43%);
  --white_30: hsl(0, 0%, 100%, 0.3);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_15: hsla(0, 0%, 0%, 0.15);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_5: hsla(0, 0%, 0%, 0.05);
  --brown: #756617;
  --dark-brown: #534a1b;
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(to right, transparent 50%, var(--white_30) 100%);

  /**
   * typography
   */

  --ff-urbanist: "B Yekan", Tahoma, Arial;

  --fs-1: 4.4rem;
  --fs-2: 3.4rem;
  --fs-3: 2.8rem;
  --fs-4: 2.4rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
  --fs-9: 1.3rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 35px;

  /**
   * shadow
   */

  --shadow-1: 0 8px 16px var(--black_15);
  --shadow-2: 0 4px 10px var(--black_5);

  /**
   * radius
   */

  --radius-3: 3px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
  --ionicon-stroke-width: 25px;
}

html {
  font-family: var(--ff-urbanist);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.6;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3,
.h2-large {
  color: var(--dark-brown);
  font-weight: var(--fw-600);
  line-height: 1.3;
}

.h1 {
  font-size: var(--fs-2);
  line-height: 1.2;
}

.h2 {
  font-size: var(--fs-3);
}

.h2-large {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-4);
}

.btn {
  font-weight: var(--fw-600);
  max-width: max-content;
  padding: 10px 30px;
  border-radius: var(--radius-3);
  transition: var(--transition-1);
}

.btn-primary,
.btn-secondary:is(:hover, :focus) {
  background-color: var(--black);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) {
  background-color: var(--hoockers-green);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-2);
}

.has-scrollbar {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-block-end: 15px;
  margin-block-end: -15px;
  scroll-snap-type: inline mandatory;
}

.scrollbar-item {
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 70%);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.hover\:shine {
  overflow: hidden;
}

.hover\:shine .has-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: var(--transition-2);
}

.hover\:shine:is(:hover, :focus) .has-bg-image {
  transform: scale(1.15);
}

.hover\:shine::before {
  top: 0;
  left: -140%;
  bottom: 0;
  width: 100%;
  background-image: var(--gradient);
  transform: skewX(-25deg);
  transition: var(--transition-2);
  z-index: 1;
}

.hover\:shine:is(:hover, :focus-within)::before {
  animation: shine 1s ease forwards;
}

@keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(0);
  }
  100% {
    transform: skewX(-25deg) translateX(250%);
  }
}

.btn-link {
  color: var(--black);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: var(--transition-1);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-100 {
  width: 100%;
}

[data-section] > * {
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-3);
}

[data-section].active > * {
  transform: translateY(0);
  opacity: 1;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .phone-wrapper,
.navbar {
  display: none;
}

.header {
  position: relative;
  padding-block-end: 80px;
}

.header-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 5px;
  z-index: 4;
}

.header-top.active {
  position: fixed;
  top: -100px;
  bottom: auto;
  box-shadow: var(--shadow-1);
  transform: translateY(100%);
  transition: var(--transition-2);
}

.header-top.header-hide {
  box-shadow: none;
  transform: translateY(0);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-open-btn {
  width: 26px;
  display: grid;
  gap: 6px;
  padding-block: 5px;
}

.nav-open-btn .line {
  height: 2px;
  background-color: var(--black);
}

.nav-open-btn .line-1 {
  width: 15px;
}

.nav-open-btn .line-3 {
  width: 18px;
}

/*-----------------------------------*\
  #MOBILE NAVBAR
\*-----------------------------------*/

.sidebar {
  z-index: 5;
}

.mobile-navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 350px;
  width: 100%;
  padding: 25px 40px;
  z-index: 6;
  transform: translateX(-100%);
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.mobile-navbar.active {
  visibility: visible;
  transform: translateX(0);
  transition: 0.4s var(--cubic-out);
}

.mobile-navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 55px;
}

.nav-close-btn {
  font-size: 28px;
  color: var(--black);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.mobile-navbar .navbar-list {
  padding-right: 9px;
}

.mobile-navbar .navbar-link {
  color: var(--black);
  font-size: var(--fs-8);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
  padding-block: 5px;
  transition: var(--transition-1);
}

.mobile-navbar .navbar-link:is(:hover, :focus) {
  color: var(--hoockers-green);
}

.overlay {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
  transition: var(--transition-1);
}

.overlay.active {
  background-color: var(--black_50);
  pointer-events: all;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: 0;
}

.hero-card {
  background-color: var(--light-gray);
  padding: 120px 15px;
  height: 75vh;
}

.hero-title {
  color: var(--black);
  background-color: rgba(255, 255, 255, 0.6);
  max-width: 450px;
  padding: 15px;
  border-radius: 5px;
  line-height: 6rem;
}

.hero-text {
  font-size: var(--fs-6);
  margin-block: 16px 30px;
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  padding: 8px 10px 8px 0;
  border-radius: 5px;
}

.hero .scrollbar-item {
  min-width: 100%;
}

/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/
.feature .feature-title {
  text-align: center;
  padding: 25px 0 30px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list:not(:last-child) {
  padding-bottom: 60px;
}

.feature-card {
  background-color: var(--light-gray);
  min-height: 450px;
  padding: 40px;
  padding-block-end: 30px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.feature .section-title {
  margin-block: 20px;
}

.feature .section-text {
  font-size: var(--fs-6);
  text-align: justify;
}

/*-----------------------------------*\
  #SHOP
\*-----------------------------------*/

.section.shop {
  padding-bottom: 100px;
}

.shop .title-wrapper {
  margin-block-end: 50px;
  display: flex;
  justify-content: center;
}

.shop-card .card-banner {
  position: relative;
  overflow: hidden;
  width: 340px;
  height: 520px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.shop .item-title{
  text-align: center;
  padding-top: 1rem;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  background-image: url("../image/about-bg.jpg");
  min-height: 550px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-background {
  background-color: var(--black);
  opacity: 0.6;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.about-container {
  width: 84%;
  background-color: var(--white);
  position: absolute;
  padding: 15px 20px;
  border-radius: 10px 30px 10px 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-container .section-title {
  text-align: center;
  padding-bottom: 12px;
}

.about-container .section-text {
  text-align: justify;
}

/*-----------------------------------*\
 * #CONTACT0
\*-----------------------------------*/

.section.contact {
  padding-top: 70px;
}

.contact-card {
  background-color: var(--cultured-1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 80px 20px;
  text-align: center;
}

.contact-card .contact-title {
  color: var(--dark-brown);
  font-weight: var(--fw-500);
  line-height: 1.2;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info li {
  text-align: justify;
  padding-bottom: 10px;
}

.contact-info li:not(:nth-child(1)) {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  padding: 3.625rem 15px 1rem;
}

.footer .container {
  border-top: 1px solid #e6e6e6;
}

.footer__menu {
  padding: 3rem 0;
  text-align: center;
}

.footer__menu-logo img {
  width: 87px;
  height: 87px;
  box-shadow: 0 10px 20px 0 rgba(4, 50, 85, 0.15);
  border-radius: 100%;
}

.footer__menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

.menu-item {
  margin-bottom: 0.6rem;
}

.menu-item a {
  font-size: var(--fs-6);
  text-decoration: none;
  transition: var(--transition-1);
  color: var(--brown);
  font-weight: var(--fw-600);
}

.menu-item a:hover {
  color: var(--dark-brown);
}

.socials__list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 20rem;
  margin: 0 auto;
}

.social a {
  text-decoration: none;
}

.social-link {
  font-size: 25px;
  transition: var(--transition-1);
}

.social i:is(:hover, :focus) {
  color: var(--dark-brown);
}

.social__desc {
  font-size: var(--fs-6);
  text-align: center;
  font-weight: var(--fw-600);
}

.copy-right {
  font-size: var(--fs-9);
  padding-top: 2.5rem;
  text-align: center;
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: var(--white);
  color: var(--spanish-gray);
  font-size: 22px;
  padding: 13px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--spanish-gray);
  color: var(--white);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {
  /**
   * REUSED STYLE
   */
  .h1 {
    font-size: var(--fs-1);
  }

  .h2 {
    font-size: var(--fs-2);
  }

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-title {
    padding: 18px 17px 18px 0;
    line-height: 8rem;
  }

  :is(.header, .hero) .container {
    max-width: unset;
  }

  .has-scrollbar {
    gap: 30px;
  }

  .scrollbar-item {
    min-width: calc(49% - 15px);
  }

  /**
   * HEADER
   */

  .header-top .container {
    padding-inline: 30px;
  }

  /**
   * HERO
   */

  .hero-card {
    padding-inline: 70px;
  }

  /**
   * ABOUT
   */

  .about-container {
    width: 55%;
  }

  /**
   * CONTACT
   */

  .contact-info {
    align-items: center;
  }

  /**
   * FOOTER
   */

  .footer__menu {
    padding: 5rem 0;
  }
  .footer__menu nav {
    padding: 0 2.5rem;
  }

  .footer__menu-items {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-item:nth-child(1) {
    order: 3;
  }

  .menu-item:nth-child(2) {
    order: 1;
  }

  .menu-item:nth-child(3) {
    order: 2;
  }

  .menu-item:nth-child(4) {
    order: 4;
  }

  .menu-item:nth-child(5),
  .menu-item:nth-child(6),
  .menu-item:nth-child(7) {
    order: 5;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.4rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 730px;
  }

  /**
   * FEATURE
   */

  .feature .feature-title {
    padding-bottom: 80px;
  }

  .feature-card {
    min-height: 480px;
    min-width: 350px;
  }

  /**
   * ABOUT
   */

  .about-container {
    width: 50%;
    padding: 30px 35px;
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * spacing
     */

    --section-padding: 50px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }

  .scrollbar-item.shop-item {
    min-width: calc(38% - 20px);
  }

  /**
   * FEATURE
   */

  .feature-list {
    gap: 80px;
    justify-content: center;
    align-items: center;
  }

  .feature-list:not(:last-child) {
    padding-bottom: 100px;
  }

  .feature #one {
    flex-direction: row;
  }

  .feature #two {
    flex-direction: row-reverse;
  }

  .feature-card {
    min-height: 650px;
    min-width: 500px;
  }

  .feature .section-title {
    margin-block-end: 20px 15px;
  }

  .feature .section-text {
    max-width: 45ch;
  }

  /**
   * ABOUT
   */

  .about-container {
    width: 38%;
  }

  /**
   * FOOTER
   */

  .footer__menu {
    padding: 8rem 0;
  }
  .socials__list {
    gap: 30px;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1300px;
  }

  .scrollbar-item {
    min-width: calc(20% - 24px);
  }

  .scrollbar-item.shop-item {
    min-width: calc(28% - 24px);
  }

  /**
   * HEADER
   */

  .header .phone-wrapper,
  .navbar {
    display: block;
  }

  .nav-open-btn {
    display: none;
  }

  .header {
    padding-block-end: 60px;
    margin-block-end: 5px;
    margin-top: 17px;
  }

  .header-top {
    padding-block: 24px 0;
  }

  .header-top.active {
    top: -130px;
  }

  .header .phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--black);
  }

  .header .logo {
    margin-inline-end: 60px;
  }

  .navbar {
    width: 100%;
    background-color: var(--white);
    padding-block: 18px;
    z-index: 4;
  }

  .navbar .navbar-list {
    display: flex;
    justify-content: center;
    gap: 45px;
  }

  .navbar .navbar-link {
    color: var(--black);
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
  }

  .navbar .navbar-link::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition-1);
    transform: scaleX(0);
    transform-origin: left;
  }

  .navbar .navbar-link:is(:hover, :focus)::after {
    transform: scaleX(1);
  }

  .header-top.active .navbar {
    position: fixed;
    top: -55px;
    right: 0;
    bottom: auto;
    padding-block: 28px;
    box-shadow: var(--shadow-1);
    transform: translateY(100%);
    transition: var(--transition-2);
  }

  .header-top.header-hide .navbar {
    box-shadow: none;
    transform: translateY(0);
  }

  /**
   * HERO
   */

  .hero-card {
    padding: 120px 100px;
  }

  /**
   * FEATURE
   */

  .feature .section-title {
    margin-block-end: 30px;
  }

  /**
   * ABOUT
   */

  .about-container {
    width: 30%;
  }
}

/**
 * responsive for larger than 1400px screen
 */
@media (min-width: 1400px) {
  /**
 * ABOUT
 */
  .about-container {
    width: 25%;
  }
}
