@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --font-title: "Playfair Display", sans-serif;
  --font-text: "Nunito", sans-serif;
  --background: #EADDE1;
  --green-primary: #B1C347;
  --green-secondary: #DCEC64;
  --text-color: #232122;
  --font-header-clamp: clamp(1.2rem, 2.25vw, 2.25rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--text-color);
  font-family: var(--font-text);
}

/* ========FORMATAÇÃO DO HEADER======== */
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.header a {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.header a::before{
  content: "";
  position: absolute;
  bottom: -2px;
  height: 4px;
  width: 100%;
  background: #DCEC64;
  border-radius: 50px;
  transform: scaleX(0);
  transition: transform 0.2s linear;
}

.header a:hover:before,
.header a:focus-visible::before{
  transform: scaleX(1);
}

.header a:hover,
.header a:focus-visible,
.header a:hover i,
.header a:focus-visible i,
.hamburger:hover,
.hamburger:focus-visible {
  color: #B1C347;
}

.header a:hover,
.header a:focus-visible,
.hamburger:hover {
  transform: scale(1.15);
}

.header-logo {
  width: clamp(90px, 7vw, 140px);
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  margin: 0 1rem;
  font-size: var(--font-header-clamp);
}

.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}

.header-icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--font-header-clamp);
}

.header-icon i {
  font-size: clamp(2rem, 3.25vw, 3.25rem); 
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 350px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5rem;
  gap: 1rem;

  font-size: clamp(1.75rem, 3vw + 0.2rem, 2rem);

  background-color: rgba(35, 33, 34, 0.4);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sidebar-visible {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sidebar ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-top: 1rem;
}

.sidebar li {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.hamburger {
  color: var(--text-color);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  border: none;
  background: none;
  cursor: pointer;
}

.menu-button {
  display: none;
}
/* ========FIM DA FORMATAÇÃO DO HEADER======== */

/* ========FORMATAÇÃO DA SECTION HERO======== */
.hero-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: clamp(500px, 80vh, 900px);
  padding-inline: 1rem;
}

.hero-img {
  width: clamp(500px, 42vw + 60px, 620px);
  height: auto;
  object-fit: contain;
  display: block;
  margin-top: clamp(-35px, -2vh, -40px);
  transition: transform 0.3s ease-in-out;
}

.hero-img:hover {
  transform: scale(1.02);
}

.hero-title {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: clamp(3.1rem, 4.4vw + 0.55rem, 5.2rem);
  font-weight: lighter;
  text-decoration: underline var(--green-primary);
  text-decoration-thickness: 0.2rem;
}

.food-icon{
  display: none;
}

.hero-mouse-scroll {
  width: clamp(32px, 4vw + 12px, 60px);
}

.hero-mouse-scroll {
  animation: subtleBounce 2s ease-in-out infinite;
}
/* ========FIM DA FORMATAÇÃO DA SECTION HERO======== */

/* ========FORMATAÇÃO DA SECTION ABOUT======== */
.about-section {
  background-color: #D6C8CC;
  width: 100%;
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 5vw, 6rem);
  margin: 2rem auto;
}

.about-content {
  display: flex;
  flex-direction: row;
  gap: clamp(3.5rem, 2vw, 4rem);
  align-items: stretch;
  width: 100%;
}

.title-img,
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-img {
  flex: 0 1 44%;
  min-width: 45%;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 2rem;
  margin-left: 1rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: lighter;
}

.about-text {
  font-size: clamp(1rem, 1.75vw, 1.75rem);
  line-height: 1.5;
  flex: 0 1 56%;
  transition-delay: 0.2s;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-grow: 1;
}

.about-img,
.about-text {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img.in-view,
.about-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-img.out-view,
.about-text.out-view {
  opacity: 0;
  transform: translateY(-40px);
}

.about-img:hover {
  transform: scale(1.02);
}

.about-p + .about-p {
  margin-top: 1rem;
}
/* ========FIM DA FORMATAÇÃO DA SECTION ABOUT======== */

/* ========FORMATAÇÃO DA SECTION FOOD======== */
.food-section {
  width: 100%;
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 5vw, 6rem);
  margin: 2rem auto;
}

.food-title{
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 2rem;
  margin-left: 1rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: lighter;
}

.food-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  justify-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.cards {
  display: flex;
  flex-direction: column;
  width: clamp(250px, calc(33.33% - 2rem), 350px);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}

.card-img {
  width: auto;
  height: clamp(50px, 8vw, 62px);
}

.card-i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-primary);
}

.card-main-img {
  width: 75%;
  height: auto;
  width: clamp(180px, 20vw, 260px);
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.card-content {
  padding: 1rem;
  text-align: center;
}

.card-title {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: lighter;
}

.card-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  font-weight: 300;
  text-align: left;
}

.food-choose-us{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(3.5rem, 10vw, 15rem);
  padding-block: clamp(1.5rem, 3vw, 3rem);
}

.food-p{
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: 1.5;
  flex: 0 1 56%;
  margin-bottom: 2rem;
  transition-delay: 0.2s;
}

.food-accordion-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  gap: clamp(1rem, 2vw, 2rem);
}

.food-accordion{
  border: var(--green-primary) 2px solid;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
}

.accordion-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background-color: transparent;
  font-family: var(--font-text);
  font-size: clamp(1rem, 2vw, 1.75rem);
  cursor: pointer;
}

.accordion-header span{
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accordion-body{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.6;
  transform: translateY(-10px);
  transition: 
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease 0.1s,
    transform 0.3s ease;
  will-change: max-height, opacity, transform;
}

.accordion-body.active{
  max-height: 450px;
  opacity: 1;
  transform: translateY(0);
  transition: 
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    transform 0.4s ease;
  padding: 0.5rem 0;
}

.accordion-icon {
  transition: 
    transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    color 0.2s ease;
}

.accordion-header:hover .accordion-icon {
  color: var(--green-primary);
}

.accordion-body.active ~ .accordion-header .accordion-icon {
  transform: rotate(135deg);
  color: var(--green-primary);
}
/* ========FIM DA FORMATAÇÃO DA SECTION FOOD======== */

/* ========FORMATAÇÃO DA SECTION IMAGE======== */
.image-section{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60vh;
  background-image: url(../images/b7076292-5764-42c9-a39a-f1d30880395c.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: clamp(1rem, 2vw, 2rem);
  margin: 2rem auto;
}

.image-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
}

.image-title{
  font-size: clamp(2rem, 5vw, 5rem);
  margin-bottom: 2rem;
  color: var(--green-primary);
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: lighter;
  text-align: center;
}

.image-text{
  width: 80%;
  max-width: 1300px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 4rem);
  padding: 3rem 0;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.image-text,
.image-title {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-title.in-view,
.image-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

.image-title.out-view,
.image-text.out-view {
  opacity: 0;
  transform: translateY(-40px);
}
/* ========FIM DA FORMATAÇÃO DA SECTION IMAGE======== */

/* ========FORMATAÇÃO DA SECTION GET IN TOUCH======== */
.get-in-touch-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(1rem, 2vw, 2rem);
  margin: 2rem auto;
}

.get-in-touch-container {
  width: min(90%, 550px);
  padding: 1.5rem clamp(0.4rem, 1vw, 1.5rem);
  border: 3px solid var(--green-primary);
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.get-in-touch-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 1vw, 0.75rem);
  text-decoration: none;
  color: var(--text-color);
  padding: 0.5rem 1rem;
}

.get-in-touch-icon {
  font-size: clamp(2.5rem, 3.75vw, 2.75rem);
  transition: transform 0.3s ease;
}

.get-in-touch-text {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 500;
  text-align: center;
  padding-right: 1.25rem;
}

.get-in-touch-link:hover .get-in-touch-icon {
  transform: scale(1.1);
}

.get-in-touch-link:hover {
  color: var(--green-primary);
}
/* ========FIM DA FORMATAÇÃO DA SECTION GET-IN-TOUCH======== */

/* ========FORMATAÇÃO DO FOOTER======== */
.footer {
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: center;
  width: 100%;
  position: relative;
}

.footer-line {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.footer-line-decoration {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--green-primary);
  z-index: 1;
  transform: translateY(-50%);
}

.footer-logo {
  position: relative;
  z-index: 2;
  padding: 1rem;
  border-radius: 50%;
  height: 200px;
  width: 200px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-logo:hover {
  transform: scale(1.08) rotate(5deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
}

.footer-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.footer-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 2rem);
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--green-primary);
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width 0.4s ease-out;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-copy {
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* ========FIM DA FORMATAÇÃO DO FOOTER======== */

.back-to-nav {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--green-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.back-to-nav:hover {
  background-color: darken(var(--green-primary), 10%);
  transform: translateY(-3px);
}

.back-to-nav.visible {
  display: flex;
}

/* ========MEDIA QUERIE ATÉ 800PX======== */
@media(max-width: 800px) {
  .hide-on-mobile {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .about-section{
    background-image: url("../images/pic1.png");
    background-repeat: no-repeat;
    background-attachment: local;
    padding: 2rem 1rem;
    z-index: 1;
  }
  
  .about-content{
    flex-direction: column;
    max-width: 100%;
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .title-img,
  .about-text {
  align-items: center;
}

  .about-img {
  display: none;
  }

  .about-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 0.4rem;
    margin-left: 0;
    text-align: center;
  }

  .about-text {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    line-height: 1.5;
    padding: 0 1rem;
    background-color: rgba(124, 124, 124, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
  }

  .image-section {
    min-height: 35vh;
  }
    
  .image-text {
    width: 75%;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  .get-in-touch-container {
    width: min(90%, 450px);
  }

  .get-in-touch-link {
    padding: 0.5rem 0;
  }
  
  .get-in-touch-icon {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
  }
  
  .get-in-touch-text {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  }

  .footer-logo{
    height: clamp(170px, 25vw, 180px);
    width: clamp(170px, 25vw, 180px);
  }

  .footer-line-decoration {
    height: 2px;
  }
  
  .footer-bottom {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }

  .footer-copy {
    font-size: clamp(1rem, 2vw, 2rem);
    color: var(--text-color);
    gap: 0.25rem;
  }
}


/* ========MEDIA QUERIE ATÉ 576PX======== */
@media (max-width: 576px){
  .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-section{
    flex-direction: column-reverse;
    padding-block: 1rem;
    gap: 1.25rem;
    min-height: auto;
  }

  .hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    margin-top: 0;
  }

  .hero-title{
    font-size: clamp(3.25rem, 4.4vw + 0.55rem, 5.25rem);
    margin: 0 auto;
  }

  .food-icon{
    display: inline-block;
    font-size: clamp(3rem, 3.75vw + 0.45rem, 4rem);
  }

  .hero-mouse-scroll{
    display: none;
  }

  .hero-section{
    min-height: clamp(200px, 80vh, 600px);
  }

  .food-choose-us {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem clamp(0.5rem, 3vw, 1rem);
    align-items: center;
  }

  .food-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .food-p {
    flex: 1 1 100%;
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 0.5rem;
  }

  .food-accordion-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .food-accordion {
    border-radius: 8px;
    padding: 0.8rem;
  }

  .accordion-header {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    padding: 0.5rem;
  }

  .accordion-body {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.5;
  }

  .accordion-icon {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .image-section {
    min-height: 45vh;
  }
    
  .image-text {
    width: 100%;
  }

  .get-in-touch-container {
    width: min(90%, 450px);
  }

  .get-in-touch-link {
    padding: 0.5rem 0;
  }
  
  .get-in-touch-icon {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
  }
  
  .get-in-touch-text {
    font-size: clamp(1.5rem, 3vw, 2.75rem);
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer-line {
    margin-bottom: 1.5rem;
  }

  .footer-logo {
    height: 165px;
    width: 165px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .footer-link {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    text-align: center;
    width: auto;
    padding: 0.25rem 1rem;
  }

  .footer-copy {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    order: 1;
    margin: 0.5rem auto 0;
    padding: 0;
    text-align: center;
    width: auto;
  }

  .back-to-nav {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}


/* ========MEDIA QUERIE ATÉ 400PX======== */
@media(max-width: 400px) {
  .sidebar {
    width: 100%;
  }

  .header {
    padding: 0.75rem 1rem;
    justify-content: space-between;
    align-items: center;
  }

  .hero-section {
    flex-direction: column-reverse;
    padding-block: 1.25rem;
    gap: 1.25rem;
    min-height: auto;
  }

  .hero-img {
    width: clamp(250px, 90vw, 400px);
    margin: 0 auto;
    margin-top: 0;
  }

  .hero-title {
    font-size: clamp(2.75rem, 5vw, 3rem);
    margin: 0;
  }

  .food-icon{
    display: inline-block;
    font-size: clamp(2.5rem, 3vw + 0.3rem, 3rem);
  }

  .hero-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .hamburger {
    font-size: 1.75rem;
    min-width: 40px;
  }

  .hero-mouse-scroll {
    display: none;
  }

  .about-section{
    background-position: top;
  }

  .about-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    margin-bottom: 0.75rem;
  }

  .about-text {
    font-size: clamp(1rem, 4.5vw, 1.1rem);
    background-color: rgba(130, 130, 130, 0.7);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }

  .food-choose-us {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
  }

  .food-p {
    flex: 1 1 100%;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    line-height: 1.4;
  }

  .food-accordion-container {
    max-width: 100%;
    margin: 0 auto;

  }

  .accordion-header {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .accordion-body {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.4;
  }

  .food-title{
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    margin-bottom: 0.75rem;
  }

  .image-section {
    min-height: 45vh;
    padding: 0.5rem;
    margin: 1rem auto;
  }
  
  .image-container {
    padding: 0.5rem;
    justify-content: flex-start;
    padding-top: 2rem;
  }
  
  .image-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 1rem;

  }
  
  .image-text {
    width: 95%;
    padding: 1.5rem 0.5rem;
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    line-height: 1.4;
    margin-top: 1rem;
  }

  .image-text,
  .image-title {
    transition: 
      opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .get-in-touch-container {
    width: min(100%, 450px);
  }
  
  .get-in-touch-icon {
    font-size: clamp(1.5rem, 3vw, 3rem);
  }
  
  .get-in-touch-text {
    font-size: clamp(1.25rem, 2.75vw, 2.75rem);
  }

  .footer-logo {
    height: clamp(120px, 30vw, 150px);
    width: clamp(120px, 30vw, 150px);
  }

  .footer-copy {
    padding-left: 0.3rem;
  }
   

}

@keyframes subtleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

