:root {
  --red-orange-crayola: hsl(0, 100%, 66%);
  --space-cadet: hsl(249, 37%, 19%);
  --pistachio: hsl(88, 50%, 60%);
  --cultured: hsl(220, 13%, 95%);
  --coffee: hsl(27, 39%, 38%);
  --rhythm: hsl(240, 9%, 51%);
  --white: hsl(0, 0%, 100%);

  --fs-1: 46px;
  --fs-2: 28px;
  --fs-3: 18px;
  --fs-4: 15px;
  --fs-5: 14px;

  --px: 14%;
  --py: 60px;

  --default-transition: 0.75s ease;
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline-offset: 5px;
}

li {
  list-style: none;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

html {
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: var(--cultured);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--coffee);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--space-cadet);
}

.btn {
  height: 55px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--default-transition);
}

.btn:hover {
  filter: saturate(1.05) brightness(1.05);
}

.btn-primary {
  background: var(--coffee);
  color: rgb(230, 230, 230);
}

.btn-primary:hover {
  background: hsl(27, 43%, 25%);
  color: rgb(230, 230, 230);
}

.btn-secondary {
  background: var(--cultured);
  color: var(--space-cadet);
}

.btn-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title {
  max-width: 420px;
  color: var(--space-cadet);
  font-size: var(--fs-2);
  font-weight: 600;
}

.gallery-title {
  color: var(--coffee);
  font-size: var(--fs-2);
  font-weight: 600;
  padding-bottom: 4%;
}

.section-text {
  max-width: 320px;
  color: var(--rhythm);
  font-size: var(--fs-4);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.container {
  position: relative;
  margin: auto;
  background: var(--white);
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px 0px;
  background: hsla(0, 0%, 100%, 0.99);
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.05);
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.05);
  z-index: 5;
}

.navbar-wrapper {
  padding: 0 var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-nav {
  background: hsla(0, 0%, 100%, 0.9);
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 91px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.navbar-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.anec-logo {
  width: 12rem;
  height: auto;
}

.nav-link {
  color: var(--space-cadet);
  font-size: var(--fs-4);
  transition: 0.25s ease;
}

.nav-link.active {
  font-weight: bold;
  color: var(--coffee);
  border-bottom: 2px solid var(--coffee);
}

.nav-link:hover {
  color: var(--coffee);
}

.navbar-btn-group {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 10;
}

.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  width: 20px;
  gap: 5px;
  z-index: 100;
}

.menu-toggle-btn .line {
  background: var(--space-cadet);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle-btn.active .one {
  transform: translateY(7px) rotate(-45deg);
}

.menu-toggle-btn.active .two {
  transform: rotate(45deg);
}

.menu-toggle-btn.active .three {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-order-btn {
  display: none;
}

.home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 150px var(--px) var(--py);

  background: #ab8585;
  background: linear-gradient(
    0deg,
    rgba(171, 133, 133, 0.25) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(171, 133, 133, 0.25) 100%
  );
}

.home-left {
  text-align: center;
}

.home-small-screen {
  display: none;
  position: relative;
  aspect-ratio: 16 / 11;
  padding-top: 0%;
}

.slide-in-left {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.slide-in-left.visible {
  transform: translateX(0);
  opacity: 1;
}

.home-subtext {
  background: var(--cultured);
  color: var(--space-cadet);
  font-size: 22px;
  display: inline-block;
  padding: 3px;
  margin-bottom: 20px;
}

.main-heading {
  color: var(--space-cadet);
  font-size: var(--fs-1);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.home-text {
  color: var(--rhythm);
  margin-bottom: 30px;
  line-height: 1.6;
}

.home .btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.home-right {
  position: relative;
  aspect-ratio: 10 / 11;
  padding-top: 110%;
}

.food-img {
  position: absolute;
  width: 50%;
}

.chocolate-splash {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 100%;
  animation: scaleUp 6s ease-in-out infinite;
}

.coffee-glass {
  position: absolute;
  width: 48%;
  top: 0;
  right: 12%;
  transform: rotate(10deg);
}

.coffee-leaf {
  position: absolute;
  width: 15%;
  bottom: 4%;
  left: 30%;
  animation: scaleUp 3s 1s ease-in-out infinite;
}

.food-3 {
  bottom: 8%;
  right: -4%;
  width: 12%;
  animation: scaleUp 4s ease-in-out infinite;
}

.food-4 {
  bottom: 24%;
  right: 52%;
  width: 12%;
  animation: scaleUp 4s ease-in-out infinite;
}

.shape {
  position: absolute;
  filter: drop-shadow(0px 3px 6px hsla(0, 0%, 0%, 0.1));
}

.shape-1 {
  top: 0;
  left: 5%;
  animation: scaleUp 2s 3s ease-in-out infinite;
}

.shape-2 {
  right: 0;
  top: 55%;
  animation: scaleUp 3s 4s ease-in-out infinite;
}

.shape-4 {
  top: 35%;
  right: 0;
  animation: moveUp 3s 1s ease-in-out infinite;
}

.shape-5 {
  top: 60%;
  left: 24%;
  animation: moveUp 3s ease-in-out infinite;
}

@keyframes scaleUp {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes moveUp {
  0%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.about {
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.about-left {
  position: relative;
}

.about-left .img-box {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: lazy-scaleUp 30s linear infinite;
}

@keyframes lazy-scaleUp {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.abs-content-box {
  background: var(--white);
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 30px;
  text-align: center;
  box-shadow: 2px 2px 10px hsla(0, 0%, 0%, 0.1);
}

.dotted-border {
  border: 3px dotted var(--cultured);
  padding: 10px;
}

.number-lg {
  font-size: var(--fs-2);
  font-family: "Monoton", cursive;
  color: var(--space-cadet);
}

.text-md {
  font-size: var(--fs-3);
  font-weight: 600;
  color: var(--space-cadet);
}

.shape-6 {
  right: -9px;
  top: 35%;
  animation: scaleUp 2s 3s ease-in-out infinite;
}

.shape-7 {
  top: 50%;
  left: -15px;
  animation: scaleUp 3s ease-in-out infinite;
}

.shape-8 {
  top: -10px;
  left: 15%;
  animation: moveUp 3s 1s ease-in-out infinite;
}

.shape-9 {
  bottom: -20px;
  left: 5%;
  animation: moveUp 3s ease-in-out infinite;
}

.about-right .section-title {
  margin-bottom: 30px;
}

.about-right p {
  max-width: 100%;
  margin-bottom: 30px;
}

.services {
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-card .card-number {
  font-size: 42px;
  font-family: "Monoton", cursive;
  color: var(--coffee);
}

.service-card .card-heading {
  color: var(--space-cadet);
  font-size: var(--fs-3);
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.service-card .card-text {
  color: var(--rhythm);
  font-size: var(--fs-4);
  line-height: 1.5;
}

.product {
  padding: 0px var(--px) 4% var(--px);
}

.menu-heading {
  padding: 0px var(--px) 4% var(--px);
}

.menu-image-heading {
  width: 30%;
  height: auto;
  margin-bottom: 2rem;
}

.product .section-title {
  margin-bottom: 30px;
}

.menu-heading .section-title {
  margin-bottom: 30px;
}

.product .section-text {
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.product-card .img-box {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--default-transition);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  font-size: 14px;
}

.card-badge ion-icon {
  font-size: 13px;
}

.card-badge.green {
  background: var(--pistachio);
  color: var(--space-cadet);
}

.card-badge.red {
  background: var(--red-orange-crayola);
  color: var(--space-cadet);
}

.card-badge.blue {
  background: rgb(102, 159, 228);
  color: var(--space-cadet);
}

.product-card .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: var(--cultured);
  margin-bottom: 15px;
}

.product-card .product-name {
  color: var(--space-cadet);
  font-size: var(--fs-3);
  font-weight: 600;
  padding-left: 15px;
}

.product-card .product-price {
  background: var(--coffee);
  height: 60px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--space-cadet);
  font-size: 24px;
  font-weight: 500;
}

.product-card .small {
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}

.product-card .product-text {
  font-size: var(--fs-4);
  color: var(--rhythm);
  line-height: 1.6;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}

.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--coffee);
}

.product .btn-primary {
  margin-inline: auto;
}

.menu-image {
  padding-right: 10rem;
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phone-menu {
  display: none;
}

.laptop-menu {
  display: flex;
}

.menu-img-left,
.menu-img-right {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.menu-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.gallery-section {
  padding: 4% var(--px) var(--py);
  background-image: url("../images/gallery-bg.png");
  text-align: center;
  margin-top: 5%;
  margin-bottom: 6%;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 15px;
  grid-auto-flow: dense;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid a:nth-child(2n) {
  grid-row: span 2;
}

.gallery-grid a:nth-child(3n) {
  grid-column: span 2;
}

.hidden-images {
  display: none;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

#loadMoreBtn {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#loadMoreBtn:hover {
  background-color: #555;
}

.contact-section {
  padding: var(--py) var(--px);
  padding-bottom: 60px;
  background-color: #fdfdfd;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-details {
  flex: 1;
  min-width: 280px;
}

.contact-details h2 {
  margin-bottom: 15px;
}

.contact-details p {
  margin: 8px 0;
}

.hours h3 {
  color: var(--space-cadet);
  margin-top: 20px;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.hours li {
  margin-bottom: 6px;
}

.contact-map {
  flex: 1.2;
  min-width: 320px;
  height: 400px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-right: var(--px);
  padding-left: var(--px);
  justify-items: center;
  margin-top: 4rem;
}

.contact-card {
  justify-items: center;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  max-width: 250px;
  width: 100%;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.3);
}

.contact-card-heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--space-cadet);
}

p {
  font-size: 1rem;
  color: #303030;
}

.cafe-doodle {
  width: 100vw;
  max-width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.cafe-doodle-small {
  display: none;
  width: 100vw;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.pt2 {
  padding-top: 40px;
  margin-bottom: 20px;
}

.padding-right {
  padding-right: 10px;
}

.vexoratech-link {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .home {
    grid-template-columns: 1fr;
  }

  .home-left {
    order: 2;
  }

  .home-right {
    order: 1;
  }

  .products-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .mobile-order-btn {
    display: block;
  }

  .navbar-btn-group > a {
    display: none;
  }

  .pt2 {
    padding-top: 0%;
    margin-bottom: 1%;
  }

  .menu-image {
    padding-right: 6rem;
    padding-left: 6rem;
  }

  .phone-menu {
    display: flex;
  }

  .laptop-menu {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    gap: 4px;
  }

  .gallery-grid img {
    cursor: pointer;
  }

  .product-img {
    width: 14.2rem;
    height: 14.2rem;
  }

  .contact-section {
    padding: 40px 30px;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .home-right {
    display: none;
  }

  .chocolate-splash {
    top: 20%;
    right: 8%;
    width: 80%;
  }

  .coffee-glass {
    width: 28%;
    top: 0;
    right: 34%;
  }

  .coffee-leaf {
    width: 10%;
    bottom: 12%;
    left: 32%;
  }

  .food-3 {
    bottom: 16%;
    right: 22%;
    width: 8%;
  }

  .food-4 {
    bottom: 48%;
    right: 68%;
    width: 8%;
  }

  .shape-1 {
    top: 48% !important;
    left: 20% !important;
  }

  .shape-2 {
    right: 24%;
    top: 4%;
  }

  .shape-4 {
    top: 16% !important;
    right: 0;
  }

  .shape-5 {
    top: 26%;
    left: 14%;
  }

  .home-small-screen {
    display: block;
  }

  .less-width {
    width: 100%;
  }

  .contact-section {
    padding: 50px 60px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .product-img {
    width: 14.2rem;
    height: 14.2rem;
  }
  .contact-map iframe {
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .service-card .card-heading {
    margin-bottom: 10px;
  }

  .cafe-doodle {
    display: none;
  }

  .cafe-doodle-small {
    display: block;
  }

  .home-small-screen {
    aspect-ratio: 11 / 11;
  }

  .chocolate-splash {
    top: 26%;
    right: -2%;
    width: 100%;
  }

  .coffee-glass {
    width: 40%;
    top: 0;
    right: 28%;
  }

  .coffee-leaf {
    width: 14%;
    bottom: 24%;
    left: 24%;
  }

  .food-3 {
    bottom: 18%;
    right: 22%;
    width: 12%;
  }

  .food-4 {
    bottom: 50%;
    right: 68%;
    width: 12%;
  }

  .shape-1 {
    top: 48% !important;
    left: 10% !important;
  }

  .shape-2 {
    right: 24%;
    top: 40%;
  }

  .shape-4 {
    top: 16% !important;
    right: 0;
  }

  .shape-5 {
    top: 26%;
    left: 4%;
  }

  .anec-logo {
    width: 10rem;
    height: auto;
    padding-right: 1rem;
  }

  .menu-image-heading {
    width: 60%;
    height: auto;
    margin-bottom: 1rem;
  }

  .product-img {
    width: 13rem;
    height: 13rem;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .menu-image {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }

  .gallery-section {
    padding-right: 6%;
    padding-left: 6%;
    margin-top: 8%;
  }

  .contact-card-heading {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .contact-icon {
    width: 54px;
    height: 54px;
  }

  .menu-heading .section-text {
    margin-bottom: 30px;
  }

  .dotted-border {
    padding: 8px;
  }

  .main-heading {
    margin-bottom: 0px;
  }

  .contact-section {
    padding: 30px 20px;
  }

  .contact-details p,
  .hours li {
    font-size: 15px;
  }

  .hours h3 {
    font-size: 18px;
  }

  .contact-details h2 {
    font-size: 22px;
  }

  .home-subtext {
    font-size: 20px;
  }

  .gallery-title {
    padding: 8% 0px;
  }

  .contact-map {
    min-width: 90vw;
    height: 500px;
  }

  .contact-map iframe {
    height: 300px;
    min-height: 300px;
  }

  .abs-content-box {
    bottom: -20px;
    right: -20px;
    padding: 10px;
  }
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

footer {
  color: #ffffff;
  padding: 5rem 0 2rem;
  padding-right: 4rem;
  padding-left: 4rem;
  position: relative;
  overflow: hidden;
  background-color: rgb(34, 34, 34);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgb(110, 52, 21), rgb(216, 158, 110));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: rgb(145, 71, 31);
  border-radius: 3px;
}

.footer-column p {
  color: #adb5bd;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
  color: #adb5bd;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  /* padding-left: 1rem; */
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: var(--transition);
  color: rgb(145, 71, 31);
}

.footer-links a:hover {
  color: white;
  padding-left: 1.5rem;
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.contact-info {
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #adb5bd;
}

.contact-item i {
  margin-right: 0.75rem;
  color: rgb(145, 71, 31);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(145, 71, 31);
  opacity: 0;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link:hover::after {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgb(237, 237, 237);
  font-size: 0.85rem;
}

.copyright p {
  color: rgb(156, 156, 156);
}

.copyright a {
  color: rgb(169, 93, 53);
  text-decoration: none;
  transition: var(--transition);
}

.copyright a:hover {
  color: rgb(169, 93, 53);
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeIn 0.6s ease forwards;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 992px) {
  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 2rem;
  }

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column h3::after {
    width: 40px;
  }
}
