/* Responsive fixes for home section */
.home__container {
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1rem;
}

.home__images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.home__images img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

main.main, .main, section, .container, .grid {
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  main.main, .main, section, .container, .grid {
    max-width: 100vw;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .home__container {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    padding: 0 0.5rem;
  }
  .home__content {
    text-align: center;
    width: 100%;
  }
  .home__images {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100vw;
    padding: 0;
  }
  .home__images img {
    width: 100%;
    max-width: 100vw;
    height: auto;
    margin: 0;
  }
}
/* === Universal Image Hover Effect === */
img:not([class*="logo"]):not([class*="pay-card"]):not([class*="icon"]),
.home__img1, .home__img2, .home__img3, .home__img4, .home__img5,
.about__img1, .about__img2,
.order__img1, .order__img2,
.combo__img,
.contact__img1, .contact__img2 {
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s cubic-bezier(.4,0,.2,1), filter 0.28s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
img:not([class*="logo"]):not([class*="pay-card"]):not([class*="icon"]):hover,
.home__img1:hover, .home__img2:hover, .home__img3:hover, .home__img4:hover, .home__img5:hover,
.about__img1:hover, .about__img2:hover,
.order__img1:hover, .order__img2:hover,
.combo__img:hover,
.contact__img1:hover, .contact__img2:hover {
  transform: scale(1.045) translateY(-6px) rotateZ(-0.5deg);
  box-shadow: 0 8px 32px 0 rgba(75,46,25,0.18);
  filter: brightness(1.04) saturate(1.08);
  z-index: 2;
}
/* === Section Reveal Animations === */
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.section.revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .section, .section.revealed {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* === Universal Content Alignment Fixes === */
main.main, .main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

section {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure all section containers are centered and full width */
.container, .grid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Responsive fix for mobile */
@media screen and (max-width: 900px) {
  main.main, .main, .container, .grid {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
/*==== Scroll Up Button ====*/
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: var(--accent-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(75,46,25,0.15);
  cursor: pointer;
  opacity: 0.85;
  z-index: 1000;
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
}
.scrollup:hover, .scrollup:focus {
  background: var(--accent-dark);
  color: var(--accent-color);
  opacity: 1;
  transform: translateY(-4px) scale(1.08);
}
.scrollup:active {
  opacity: 0.7;
  transform: scale(0.96);
}
@media screen and (max-width: 600px) {
  .scrollup {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
}
/*==== Footer Section ====*/
.footer {
  background: var(--accent-dark);
  color: var(--white-color);
  padding: 3rem 0 1.5rem 0;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -2px 16px 0 rgba(75,46,25,0.07);
  margin-top: 2rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.footer__logo img {
  width: 2.5rem;
  height: auto;
}
.footer__content {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  width: 100%;
  justify-content: center;
}
.footer__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.footer__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__pay {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer__pay-card {
  width: 48px;
  height: 32px;
  object-fit: contain;
  border-radius: 0.5rem;
  background: var(--white-color);
  box-shadow: 0 2px 8px 0 rgba(75,46,25,0.10);
  padding: 0.25rem;
}
.footer__form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.footer__input {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: var(--white-color);
  color: var(--accent-dark);
  min-width: 180px;
}
.footer__button {
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: none;
  background: var(--accent-color);
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.footer__button:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.footer__copy {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: var(--accent-light);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 900px) {
  .footer__content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .footer__section {
    align-items: center;
    width: 100%;
  }
}
/* Home section: align all images in a single horizontal row */
.home__images {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
  width: 96vw;
  max-width: 1200px;
  margin: 1rem auto 0 auto;
  box-sizing: border-box;
}
.home__images img {
  flex: 1 1 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px 0 rgba(75,46,25,0.13);
  display: block;
}


/* Responsive horizontal image grid for all sections */
.about__images {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: 96vw;
  max-width: 1200px;
  margin: 1rem auto 0 auto;
  box-sizing: border-box;
}

.home__img1, .home__img2, .home__img3, .home__img4, .home__img5,
.about__img1, .about__img2,
.order__img1, .order__img2,
.combo__img,
.contact__img1, .contact__img2 {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px 0 rgba(75,46,25,0.13);
  margin: 0;
  display: block;
}

.home__img:hover{
  transform: scale(1.035) translateY(-4px);
  box-shadow: 0 8px 24px 0 rgba(75,46,25,0.18);
  z-index: 2;
}

@media screen and (max-width: 900px) {
  .home__images,
  .about__images {
    flex-direction: column;
    gap: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    margin: 1rem 0 0 0;
    box-sizing: border-box;
  }
  .home__images img,
  .home__img1, .home__img2, .home__img3, .home__img4, .home__img5,
  .about__img1, .about__img2,
  .order__img1, .order__img2,
  .combo__img,
  .contact__img1, .contact__img2 {
    height: 160px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    margin: 0.5rem 0 0 0;
    display: block;
    box-sizing: border-box;
  }
}
/* Universal section image styling for horizontal fill */
.home__img1, .home__img2, .home__img3, .home__img4, .home__img5,
.about__img1, .about__img2,
.order__img1, .order__img2,
.combo__img,
.contact__img1, .contact__img2 {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px 0 rgba(75,46,25,0.13);
  margin: 0.5rem 0;
  display: block;
}

.order__container,
.combo__container {
  gap: 2rem;
}

@media screen and (max-width: 900px) {
  .home__images,
  .about__images {
    flex-direction: column;
    gap: 1rem;
  }
  .home__img1, .home__img2, .home__img3, .home__img4, .home__img5,
  .about__img1, .about__img2,
  .order__img1, .order__img2,
  .combo__img,
  .contact__img1, .contact__img2 {
    height: 160px;
    max-width: 100%;
  }
}
/*==== About Section ====*/
.about {
  background: var(--white-color);
  padding: 4rem 0 3rem 0;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about__data {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section__subtitle {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section__title {
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about__description {
  color: var(--accent-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Unified about section image layout */
.about__images {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: 96vw;
  max-width: 900px;
  margin: 1rem auto 0 auto;
  box-sizing: border-box;
}

.about__img1, .about__img2 {
  flex: 1 1 0;
  width: 100%;
  max-width: 400px;
  height: 220px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px 0 rgba(75,46,25,0.13);
  margin: 0.5rem 0;
  display: block;
  box-sizing: border-box;
  transition: transform 0.25s, box-shadow 0.25s;
}
.about__img1:hover, .about__img2:hover {
  transform: scale(1.035) translateY(-4px);
  box-shadow: 0 8px 24px 0 rgba(75,46,25,0.18);
  z-index: 2;
}

@media screen and (max-width: 900px) {
  .about__images {
    flex-direction: column;
    gap: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
    margin: 1rem 0 0 0;
    box-sizing: border-box;
  }
  .about__img1, .about__img2 {
    height: 160px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    display: block;
  }
}
.about__tooltip1, .about__tooltip2 {
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px 0 rgba(123, 80, 53, 0.08);
}
@media screen and (max-width: 900px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}

/*==== Orders Section ====*/
.orders {
  background: var(--white-color);
  padding: 4rem 0 3rem 0;
}
.order__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.order__card {
  background: var(--accent-light);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(75,46,25,0.10);
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.order__img1, .order__img2 {
  max-width: 200px;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.order__title {
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.order__subtitle {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.order__price {
  color: var(--accent-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.order__button {
  background: var(--accent-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.order__button:hover {
  background: var(--accent-dark);
}
@media screen and (max-width: 900px) {
  .order__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}

/*==== Combo Section ====*/
.combo {
  background: var(--white-color);
  padding: 4rem 0 3rem 0;
}
.combo__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.combo__section {
  background: var(--accent-light);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(75,46,25,0.10);
  padding: 2rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.combo__img {
  max-width: 180px;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.combo__numbers {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.combo__title {
  color: var(--accent-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.combo__info {
  color: var(--accent-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.combo__price {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 900px) {
  .combo__container {
    padding: 0 1rem;
  }
}
/*==== Contact Section ====*/
.contact {
  background: var(--white-color);
  padding: 4rem 0 3rem 0;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact__data {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__title {
  font-size: 2.2rem;
  color: var(--accent-dark);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact__title span {
  color: var(--accent-color);
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.contact__img1, .contact__img2 {
  max-width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px 0 rgba(75,46,25,0.13);
  margin: 0.75rem 0;
  object-fit: cover;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}

.contact__subtitle {
  font-size: 1.15rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact__address {
  color: var(--accent-dark);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-style: normal;
  line-height: 1.6;
}

.contact__social {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.contact__social-link {
  color: var(--accent-color);
  font-size: 1.7rem;
  transition: color 0.3s, transform 0.2s;
  border-radius: 50%;
  padding: 0.4rem;
  background: var(--accent-light);
  box-shadow: 0 2px 8px 0 rgba(123, 80, 53, 0.08);
}
.contact__social-link:hover {
  color: var(--white-color);
  background: var(--accent-dark);
  transform: scale(1.1);
}

@media screen and (max-width: 900px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}
/*==== Home Section ====*/
.home {
  padding: 6rem 0 3rem 0;
  background: var(--white-color);
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.home__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home__title {
  font-size: 2.5rem;
  color: var(--accent-dark);
  font-weight: 700;
  line-height: 1.1;
}

.home__title span {
  color: var(--accent-color);
}

.home__description {
  font-size: 1.1rem;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.button:hover {
  background: var(--accent-dark);
  color: var(--white-color);
}

.home__img1, .home__img2, .home__img3, .home__img4, .home__img5 {
  max-width: 120px;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(75,46,25,0.10);
  margin: 0.5rem;
}

.home__images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 900px) {
  .home__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .home__images {
    justify-content: flex-start;
  }
}
/*==== Google Fonts ====*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,400;1,700&display=swap');

/*==== CSS Variables ====*/
:root {
  /* Coffee shop inspired palette */
  --first-color: #f5eee6;      /* Light coffee cream */
  --black-color: #4b2e19;      /* Deep coffee brown */
  --white-color: #fffaf6;      /* Off-white foam */
  --accent-color: #b08968;     /* Latte tan */
  --accent-dark: #7f5539;      /* Espresso brown */
  --accent-light: #ddb892;     /* Caramel */
  --font-family: 'Montserrat Alternates', sans-serif;
  --font-semi-bold: 600;
  --header-height: 4rem;
  --z-fixed: 1000;
}

/*==== Base Styles ====*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.5;
  background-color: var(--first-color);
  color: var(--black-color);
}

/* Accent backgrounds for sections */
section {
  background: var(--white-color);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(75,46,25,0.07);
  margin-bottom: 2rem;
}

/*==== Global Links ====*/
/*==== Header ====*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--accent-light);
  z-index: var(--z-fixed);
  box-shadow: 0 2px 8px 0 rgba(123, 80, 53, 0.08);
  transition: box-shadow 0.4s;
}

/*==== Navigation ====*/
.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}


/* Logo Section */
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  text-decoration: none;
  color: var(--accent-dark);
}

.nav__logo img {
  width: 2rem;
  height: auto;
}

.nav__logo span {
  font-weight: var(--font-semi-bold);
  color: var(--accent-dark);
}

/* Toggle & Close Icons */
.nav__toggle,
.nav__close {
  display: none;
  font-size: 2rem;
  color: var(--white-color);
  cursor: pointer;
  background: none;
  border: none;
}

/*==== Menu ====*/
.nav__menu {
  display: flex;
  align-items: center;
  background: var(--accent-light);
  box-shadow: 0 2px 16px 0 rgba(123, 80, 53, 0.07);
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
}

.nav__link:hover {
  color: var(--white-color);
  background: var(--accent-color);
}



/*==== Mobile Styles ====*/
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--accent-dark);
    padding: 8rem 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    transition: right 0.4s;
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    color: var(--white-color);
    font-size: 1.25rem;
    background: transparent;
  }

  .nav__link:hover {
    background: var(--accent-color);
    color: var(--accent-dark);
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/*==== Show menu =====*/
.show-menu {
  right: 0;
}

/*==== Active link ====*/
.active-link {
  color: var(--white-color);
  background: var(--accent-color);
}


/*==== BreakingPoints ====*/
/* Responsive breakpoints for better mobile experience */
@media screen and (max-width: 900px) {
  .home__images,
  .about__images {
    flex-direction: column;
    gap: 1rem;
  }
  .home__img1, .home__img2, .home__img3, .home__img4, .home__img5,
  .about__img1, .about__img2,
  .order__img1, .order__img2,
  .combo__img,
  .contact__img1, .contact__img2 {
    height: 160px;
    max-width: 100%;
  }
}

/*for window width less than 600px*/
@media screen and (max-width: 600px) {
  .nav__menu {
    width: 100%;
    padding: 6rem 1.5rem 0;
  }
  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav__link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}
 

/* for large screens */
@media screen and (min-width: 1200px) {
  .nav__menu {
    width: 100%;
    padding: 0;
  }
  .nav__list {
    gap: 3rem;
  }
  .nav__link {
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
  }
}

/* for mobile devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    width: 100%;
    padding: 6rem 1.5rem 0;
  }
  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav__link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}

/*==== Scroll Up Button ====*/
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: var(--accent-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(75,46,25,0.15);
  cursor: pointer;
  opacity: 0.85;
  z-index: 1000;
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
}

.scrollup:hover, .scrollup:focus {
  background: var(--accent-dark);
  color: var(--accent-color);
  opacity: 1;
  transform: translateY(-4px) scale(1.08);
}

.scrollup:active {
  opacity: 0.7;
  transform: scale(0.96);
}
