/* Variables */
/* Reset */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
}

ul {
  list-style: none;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section--light {
  background-color: #f8f9fa;
}

.section__title {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #343a40;
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 8rem;
  height: 0.3rem;
  background-color: #c46e1c;
  margin: 1.5rem auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.btn--primary {
  background-color: #c46e1c;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #975516;
}

.btn--secondary {
  background-color: transparent;
  color: #c46e1c;
  border: 2px solid #c46e1c;
}

.btn--secondary:hover {
  background-color: #c46e1c;
  color: #ffffff;
}

.btn--small {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 8rem;
}

.header--scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo__img {
  height: 4rem;
  margin-right: 1rem;
}

.logo__text {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #343a40;
}

.logo--white .logo__text {
  color: #ffffff;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__item {
  margin-left: 3rem;
}

.nav__item:first-child {
  margin-left: 0;
}

.nav__link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #343a40;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 0.5rem;
  position: relative;
}

.nav__link:hover {
  color: #c46e1c;
}

.nav__link--active {
  color: #c46e1c;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c46e1c;
}

.menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 3rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 100%;
  height: 3px;
  background-color: #343a40;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #343a40;
  z-index: 200;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__container {
  padding: 4rem 2rem;
}

.mobile-menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  cursor: pointer;
}

.mobile-menu__list {
  margin-top: 4rem;
}

.mobile-menu__item {
  margin-bottom: 2rem;
}

.mobile-menu__link {
  display: block;
  font-size: 1.8rem;
  color: #ffffff;
  padding: 1rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu__link:hover, .mobile-menu__link--active {
  color: #c46e1c;
}

/* Page Header (Common for all pages) */
.page-header {
  background-size: cover;
  background-position: center;
  padding: 15rem 0 6rem;
  margin-top: 0;
  text-align: center;
  color: #ffffff;
}

.page-header__title {
  font-family: "Playfair Display", serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: 1.6rem;
  color: #e9ecef;
}

.breadcrumbs__item:not(:last-child) {
  margin-right: 1.5rem;
  position: relative;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: -1rem;
  color: #e9ecef;
}

.breadcrumbs__link {
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.breadcrumbs__link:hover {
  color: #c46e1c;
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #e9ecef;
  padding: 6rem 0 2rem;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}

.footer__logo {
  max-width: 300px;
}

.footer__slogan {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.footer__nav-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.footer__nav-item {
  margin-bottom: 1.2rem;
}

.footer__nav-link {
  color: #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__nav-link:hover {
  color: #c46e1c;
}

.footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer__contact-icon {
  color: #c46e1c;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: #c46e1c;
}

.footer__copyright {
  font-size: 1.4rem;
}

/* Media Queries for common elements */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section {
    padding: 6rem 0;
  }
  .section__title {
    font-size: 3rem;
  }
  .page-header {
    padding: 12rem 0 4rem;
  }
  .page-header__title {
    font-size: 3.6rem;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 5rem 0;
  }
  .page-header {
    padding: 10rem 0 3rem;
  }
  .page-header__title {
    font-size: 3rem;
  }
  .footer__bottom {
    text-align: center;
  }
}

/* Testimonials */
.testimonials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(350px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 3rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonial:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.testimonial__content {
  margin-bottom: 2rem;
}

.testimonial__rating {
  color: #ffc107;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-size: 1.6rem;
  color: #6c757d;
  line-height: 1.8;
  font-style: italic;
}

.testimonial__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
}

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

.testimonial__name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.3rem;
}

.testimonial__date {
  font-size: 1.4rem;
  color: #6c757d;
}

/* Certifications */
.certifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}

.certifications__item {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
}

.certifications__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.certifications__img {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.certifications__name {
  font-size: 1.5rem;
  color: #6c757d;
}

/* CTA Section */
.cta {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta.avif");
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  color: #ffffff;
  text-align: center;
}

.cta__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta__title {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
}

/* Additional Media Queries */
@media (max-width: 768px) {
  .page-header {
    padding: 12rem 0 4rem;
  }
  .page-header__title {
    font-size: 3.6rem;
  }
  .about-story {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  .mission-values {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonials {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .certifications {
    gap: 2rem;
  }
  .cta__title {
    font-size: 3rem;
  }
  .cta__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 10rem 0 3rem;
  }
  .page-header__title {
    font-size: 3rem;
  }
  .testimonial {
    padding: 2rem;
  }
  .team {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cta {
    padding: 6rem 0;
  }
  .cta__title {
    font-size: 2.5rem;
  }
}

/* Page Header */
.page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("");
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("");
  background-size: cover;
  background-position: center;
  padding: 15rem 0 6rem;
  margin-top: 0;
  text-align: center;
  color: #ffffff;
}

.page-header__title {
  font-family: "Playfair Display", serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs__list {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: 1.6rem;
  color: #e9ecef;
}

.breadcrumbs__item:not(:last-child) {
  margin-right: 1.5rem;
  position: relative;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: -1rem;
  color: #e9ecef;
}

.breadcrumbs__link {
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.breadcrumbs__link:hover {
  color: #c46e1c;
}

/* About Story */
.about-story {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
}

.about-story__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
}

.about-story__text {
  max-width: 800px;
}

.about-story__paragraph {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  line-height: 1.8;
}

.about-story__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.about-story__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mission Values */
.mission-values {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.mission-values__item {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mission-values__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.mission-values__icon {
  font-size: 4rem;
  color: #c46e1c;
  margin-bottom: 2rem;
}

.mission-values__title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #343a40;
  margin-bottom: 2rem;
}

.mission-values__text {
  color: #6c757d;
  font-size: 1.6rem;
  line-height: 1.8;
}

.mission-values__list {
  text-align: left;
  padding-left: 2rem;
}

.mission-values__list li {
  color: #6c757d;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.mission-values__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #c46e1c;
  border-radius: 50%;
}

/* Team */
.team {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.team__member {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team__member:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.team__member:hover .team__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.team__image {
  height: 280px;
  overflow: hidden;
}

.team__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.team__info {
  padding: 2rem;
}

.team__name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.team__position {
  font-size: 1.5rem;
  color: #c46e1c;
  margin-bottom: 1.5rem;
}

.team__bio {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.team__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #e9ecef;
  border-radius: 50%;
  color: #343a40;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team__social-link:hover {
  background-color: #c46e1c;
  color: #ffffff;
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #e9ecef;
  padding: 6rem 0 2rem;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}

.footer__logo {
  max-width: 300px;
}

.footer__slogan {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.footer__nav-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.footer__nav-item {
  margin-bottom: 1.2rem;
}

.footer__nav-link {
  color: #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__nav-link:hover {
  color: #c46e1c;
}

.footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer__contact-icon {
  color: #c46e1c;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: #c46e1c;
}

.footer__copyright {
  font-size: 1.4rem;
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero__title {
    font-size: 4rem;
  }
  .section {
    padding: 6rem 0;
  }
  .section__title {
    font-size: 3rem;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }
  .hero__title {
    font-size: 3.2rem;
  }
  .hero__subtitle {
    font-size: 1.8rem;
  }
  .section {
    padding: 5rem 0;
  }
  .preference-card {
    padding: 2rem;
  }
  .tours__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__bottom {
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */