/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/*===== VARIABLES CSS =====*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --first-color: #27293B;
  --first-color-alt: #048654;
  --title-color: #393939;
  --text-color: #626577;
  --text-color-light: #A6A6A6;
  --body-color: #ffffff;
  /*#FBE9D0*/
  --container-color: #FFFFFF;
  --white-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Lato', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  --mb-0-25: .25rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;


  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(0.8);

  --z-fixed: 10;


}

#theme-button {
  display: none;
}


@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;
  --body-color: #000000cd;
  --container-color: #ffffff;
  --first-color: #8697C4;
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  background-image: url("../img/BG_White.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}

.section-title,
.section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.section-subtitle {
  display: block;
  color: #8697C4;
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 1000px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.l-header.hidden {
  transform: translateY(-100%);
}


/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  /* Ensures the logo is aligned properly */
  align-items: center;
  /* Aligns the logo vertically centered */
}

.nav__logo img {
  max-height: 120px;
  /* Adjust the max-height as needed */
  width: auto;
  /* Ensures the logo scales proportionally */

}

.footer__logo {
  display: flex;
  /* Ensures the logo is aligned properly */
  align-items: center;
  /* Aligns the logo vertically centered */
}

.footer__logo img {
  max-height: 120px;
  /* Adjust the max-height as needed */
  width: auto;
  /* Ensures the logo scales proportionally */

}


@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}

.nav__item {
  margin-bottom: var(--mb-2);
}

.nav__link,
.nav__logo,
.nav__toggle {
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__link {
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: var(--header-height);
}

/* Active menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: #7091E6;
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover {
  background-color: #3D52A0;
}

.scrolltop__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show scrolltop */
.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}


/*========== HERO ==========*/
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  padding: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  /* Light black overlay */
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 20px;
  /* Distance from the bottom */
  right: 20px;
  /* Distance from the right */
  color: white;
  text-align: right;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
}

.mute-toggle-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.mute-toggle-icon {
  width: 24px;
  height: 24px;
  color: white;
}


/*========== HOME ==========*/

#home {
  padding: 32px 0;
  
}

.home__container {
  align-content: center;
}

.home__title {
  font-size: 32px;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.home__subtitle {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: var(--mb-2);
}

.home__img {
  width: 300px;
  justify-self: center;
  border-radius: .5rem;
}

.home-section-subtitle {
  display: block;
  color: #8697C4;
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2);
  text-align: left;
  margin-top: 0;
  padding-top: 0;
}

/*========== BUTTONS ==========*/
.button {
  display: inline-block;
  background-color: #7091E6;
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: .3s;
  border: none;
}

.button:hover {
  background-color: #3D52A0;
  cursor: pointer;
}


.signup__button {
  display: inline-block;
  background-color: #7091E6;
  color: #FFF;
  padding: .5rem .75rem;
  border-radius: .5rem;
  transition: .3s;
  border: none;
  cursor: pointer;
}

.signup__button:hover {
  background-color: #3D52A0;
}

.login__button {
  display: inline-block;
  background-color: #7091E6;
  color: #FFF;
  padding: .5rem .75rem;
  border-radius: .5rem;
  transition: .3s;
  border: none;
  cursor: pointer;
}

.login__button:hover {
  background-color: #3D52A0;
}

/*========== ABOUT ==========*/

#about {
  padding-top: 32px;
  padding-bottom: 32px;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-3);
  text-align: justify;
}

.about__img {
  width: 480px;
  border-radius: .5rem;
  justify-self: center;
}



/*=============== SERVICES ===============*/
#services {
  padding: 2rem 0;
  /* Example padding, adjust as needed */
  text-align: center;
  /* Center align content */
}

.services__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Three columns for the first row */
  gap: 2rem;
  /* Adjust the gap between items */
  margin-bottom: var(--mb-5);
}

.services__content {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: space-between;
}

.services__img {
  width: 100%;
  height: 350px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
}

.services__info {
  padding: 1rem;
  background-color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;

}

.services__title {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.services__description {
  font-size: 1rem;
  margin-bottom: var(--mb-3);
}



/*========== MENU ==========*/

#menu {
  padding-top: 32px;
}

.menu__container {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3, 74, 40, .15);
  padding: .75rem;
}

.menu__img {
  width: 100px;
  align-self: center;
  margin-bottom: var(--mb-2);
}

.menu__name,
.menu__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.menu__name {
  font-size: var(--normal-font-size);
}

.menu__detail,
.menu__preci {
  font-size: var(--small-font-size);
}

.menu__detail {
  margin-bottom: var(--mb-1);
}

.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: .5rem 0 .5rem 0;
}

/*========== NANNY ==========*/
/* 
:root {
  --container-color: #fff;
  --title-color: #333;
  --button-color: #28a745;
  --button-hover-color: #218838;
  --font-semi-bold: 600;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --mb-1: 0.5rem;
  --mb-2: 1rem;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.section {
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.nanny__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

.nanny__content {
  background: var(--container-color);
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nanny__content:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.nanny__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nanny__details {
  padding: 1rem;
}

.nanny__name {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--normal-font-size);
  margin: 0.5rem 0;
}

.nanny__description {
  font-size: var(--small-font-size);
  color: #555;
  margin-bottom: var(--mb-1);
}

.nanny__price {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.view-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--button-color);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.view-more:hover {
  background-color: var(--button-hover-color);
  transform: scale(1.05);
} */



/*========== NANNY 2 ==========*/

/* :root {
  --container-color: #fff;
  --title-color: #333;
  --button-color: #28a745;
  --button-hover-color: #218838;
  --font-semi-bold: 600;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --mb-1: 0.5rem;
  --mb-2: 1rem;
} */

/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
} */

/* .section {
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.nanny__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

.nanny__content {
  display: flex;
  align-items: center;
  background: var(--container-color);
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 800px;
}

.nanny__content:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.nanny__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.nanny__details {
  padding: 1rem;
  flex-grow: 1;
}

.nanny__name {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--normal-font-size);
  margin: 0.5rem 0;
}

.nanny__description {
  font-size: var(--small-font-size);
  color: #555;
  margin-bottom: var(--mb-1);
}

.nanny__price {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.view-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #7091E6;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  border: none;
}

.view-more:hover {
  background-color: #3D52A0;
  transform: scale(1.05);
} */



/*========== NANNY 3 ==========*/
.nanny.section {
  padding: 32px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

/* .bd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
} */

#nanny .bd-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nanny__content {
  perspective: 1000px;
  margin-bottom: 20px;
}

.nanny__card {
  width: 250px;
  height: 350px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  cursor: pointer;
}

.nanny__card:hover {
  transform: rotateY(180deg);
}

.nanny__card-front,
.nanny__card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nanny__card-front {
  background-color: #fff;
}

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

.nanny__card-back {
  background-color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.nanny__name {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.nanny__description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #555;
}

.nanny__price {
  font-size: 1.2em;
  color: #1DA1F2;
}

.nanny_profile_button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background-color: #7091E6;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.nanny_profile_button:hover {
  background-color: #3D52A0;
}

.view-more {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #7091E6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.view-more:hover {
  background-color: #3D52A0;
}


/*========== APP ==========*/

.app.section {
  padding: 60px 0;
}

.app__data {
  text-align: center;
}

.app__description {
  margin-bottom: var(--mb-5);
}

.app__stores {
  margin-bottom: var(--mb-4);
}

.app__store {
  width: 120px;
  margin: 0 var(--mb-1);
}

.app__img {
  width: 230px;
  justify-self: center;
}


/*========== CONTACT ==========*/

.contact.section.bd-container {
  background-image: url(../img/AdobeStock_454576300_Wide.jpg);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
}


.contact__container {
  text-align: center;
  width: 50%;
  background-color: #ffffffdc;
  padding: 40px;
  border-radius: .5rem;
}

.contact__description {
  margin-bottom: var(--mb-3);
}



/*========== ABOUT US PAGE ==========*/

.about_us .bd-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  /* Adjust padding as needed */
}

#about_us {
  padding: 2rem 0;
  /* Adjust top and bottom padding as needed */
  margin-top: 100px;
}

.about_us__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  /* Adjust margin as needed */
  border-radius: .5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  /* Adjust margin as needed */
  font-weight: 700;
}

/* .highlight {
  color: #7091E6;
 
} */

.about__description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  /* Adjust margin as needed */
}

.about_us__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  /* Adjust gap between items */
}

.about_us__item {
  flex: 1 1 100%;
  /* Ensure each item takes full width initially */
  display: flex;
  align-items: flex-start;
  /* Align items at the top */
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 25px;
}

.about_us__icon-container {
  flex: 0 0 auto;
  /* Icon container doesn't grow or shrink */
  margin-right: 1rem;
  /* Adjust margin between icon and text */
}

.about_us__content {
  flex: 1 1 auto;
  /* Content container grows and shrinks */
}

.about_us__icon {
  max-width: 80px;
  /* Adjust icon size as needed */
  height: auto;
}

.about_us__title {
  font-size: 1.2rem;
  margin-top: 0;
  /* Remove default margin */
}

.about_us__text {
  margin-bottom: 0;
  /* Remove default margin */
}


.about_nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 0;
}

.about_us_container {
  margin-top: 50px;
  width: 100%;
  margin: 0;
}

/* .highlight {
  background: #7091E6;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s;
  background: linear-gradient(60deg, #ffffff, #F0F0F0);
  /* background-color: #ffffff; */
}

.card:hover {
  transform: translateY(-10px);
}

.card-body {
  padding: 20px;
}

.feature-icon,
.service-icon {
  font-size: 2em;
  color: #2575fc;
  margin-right: 15px;
}

.feature-text,
.service-text {
  flex: 1;
}

.feature-text h4,
.service-text h4 {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-text p,
.service-text p {
  font-size: 1em;
  color: #767575;
}

.features-row,
.services-row {
  display: flex;
  flex-wrap: wrap;
}

.features-row .col-md-3,
.services-row .col-md-3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.card {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.text-center {
  margin-top: 30px;
}

/*========== Services_page =========*/

#services_page .services__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Three columns for the first row */
  gap: 2rem;
  /* Adjust the gap between items */
  margin-bottom: var(--mb-5);

}

.services_page__content {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: space-between;
}

.package-details-main {
  padding: 20px;
  background-color: #f9f9f9;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-details {
  background-color: #f9f9f9;
}

.package-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.package-description {
  margin-bottom: 15px;
}

.package-list {
  margin-bottom: 15px;
}

.package-list p{
  margin-bottom: 8px;
}

.package-details-main .button {
  margin-top: 20px;
}

.extra-content {
  display: none;
}

.read-more {
  cursor: pointer;
  color: #007bff;
  text-decoration: none;
}

.button-container {
  display: flex;
  justify-content: center;
  
}



/*========== FOOTER ==========*/


.footer.section {
  padding: 32px 0;

}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;

}

.footer__logo {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}

.footer__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link {
  display: inline-block;
  color: var(--text-color);
  margin-bottom: 2px;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 3.5rem;
}





/* Profile */


.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  margin-top: 50px;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.breadcrumbs {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

.breadcrumbs a {
  color: #3D52A0;
  text-decoration: none;
}

.profile-info {
  display: flex;
  align-items: center;
}

.profile-img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.profile-details {
  font-size: 16px;
  color: #333;
}

.profile-details h1 {
  margin: 0;
  font-size: 24px;
}

.profile-details button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background-color: #7091E6;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.profile-body {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  background: #ffedcc;
  background-image: radial-gradient(#ffd27f 10%, transparent 10%);
  background-size: 10px 10px;

  padding: 2rem;
  border-radius: 25px;
}

.profile-main {
  width: 65%;
  display: flex;
  flex-direction: column;
}

.profile-main h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reviews {
  margin-top: 20px;
}

.reviews h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.profile-sidebar {
  width: 30%;
}

.profile-sidebar h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.profile-sidebar ul {
  list-style: none;
  padding: 0;
}

.profile-sidebar li {
  font-size: 16px;
  margin-bottom: 5px;
}

.profile-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.profile-footer h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.availability {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.availability h3 {
  font-size: 16px;
  /* Reduced font size */
  margin-bottom: 10px;
  text-align: center;
}

.calendar {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  width: 280px;
  justify-content: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background-color: #f7f7f7;
}

.calendar-header .month-year {
  font-size: 14px;
  font-weight: bold;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #007bff;
}

.calendar-body {
  padding: 5px;
}

.day-names,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-names div,
.days div {
  padding: 5px;
  text-align: center;
  font-size: 14px;
}

.days div {
  border: 1px solid #ddd;
  margin: -1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.days div:hover {
  background-color: #007bff;
  color: #fff;
}

.days div.active {
  background-color: #007bff;
  color: #fff;
}


.about-me .info {
  display: flex;
  align-items: center;
}

.about-me .info img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.about-me {
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  align-self: self-end;
}

.about-me h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #343a40;
}

.about-me ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-me .info {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.about-me .info:last-child {
  border-bottom: none;
}

.about-me .info img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.about-me .info-text {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.about-me .info-text strong {
  color: #343a40;
}

.about-me .info-text span {
  color: #6c757d;
}


.skills,
.comforts {
  width: 48%;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  padding: 2rem;
  border-radius: 25px;
}

/* .skills ul, .comforts ul {
    padding-left: 20px;
  } */

.skills ul li,
.comforts ul li {
  margin-bottom: 10px;
}

.profile-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin: 20px 0;
}

.profile-footer h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #343a40;
}

.profile-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-footer .info {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.profile-footer .info img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.profile-footer .info-text {
  flex: 1;
  color: #343a40;
}

.skills,
.comforts {
  flex: 1;
}

.skills ul .info,
.comforts ul .info {
  border-bottom: 1px solid #f0f0f0;
}

.skills ul .info:last-child,
.comforts ul .info:last-child {
  border-bottom: none;
}


.about-me,
.skills,
.comforts {
  background-color: #ffffff;

}





/* Experience */
.experience-section {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
  margin-top: 25px;
}

.experience-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.experience-item img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.experience-content h4 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.experience-content p {
  margin: 5px 0;
  font-size: 16px;
  color: #555;
}

.experience-content a {
  color: #1DA1F2;
  text-decoration: none;
}

.experience-content a:hover {
  text-decoration: underline;
}


/* Reviews */


.reviews-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
  text-align: center;
  background: #ffedcc;
  background-image: radial-gradient(#ffd27f 10%, transparent 10%);
  background-size: 10px 10px;
  padding: 2rem;
  border-radius: 25px;
  margin-top: 50px;
}

h3 {
  margin: 20px 0;
  font-size: 24px;
  color: #333;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-item {
  min-width: 33.33%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.review-box {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  margin: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
  width: 90%;
  max-width: 350px;
}

.review-box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}

.review-box h4 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.stars {
  color: #1DA1F2;
}

.review-box p {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
}

.date {
  color: #999;
  font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
  border: none;
  color: white;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffedcc;
  background-image: radial-gradient(#ffd27f 10%, transparent 10%);
  background-size: 10px 10px;

}

/* .carousel-control-prev {
  left: -5px;
} */

.carousel-control-next {
  right: 0px;
}

.slider-next-icon {
  width: 36px;
}



/* Contact us page */

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px;
  margin-top: 90px;
  flex-direction: column;
}

.contact-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.contact-info {
  flex: 1;
  background-image: url('../img/background_img_9.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end; 
  
}

.contact-info-bg {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  color: #fff;
  text-align: center;
  border-radius: 10px 0 0 10px;

}

.contact-info-content {
  text-align: left;
}

.contact-info-content a {
  color: #ffffff;
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 10px;
  
}

.contact-info h3 {
  font-size: 1.5em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-info p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* .social-icons a {
  color: #fff;
  font-size: 1.2em;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffa500; 
} */

.contact-form-wrapper {
  flex: 1;
  padding: 40px;
}

.contact-title {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-subtitle {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #666;
}

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

.contact-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  
}

.contact-col {
  flex: 1;
  margin-right: 20px;
 
}

.contact-col:last-child {
  margin-right: 0;
}

.contact-input, .contact-select, .contact-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  margin-top: 10px;
}

.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
  border-color: #7091E6; /* Change to your desired focus color */
  outline: none;
}

.contact-button {
  background: #7091E6; /* Change to your desired button color */
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-button:hover {
  background: #3D52A0; 
}

.contact-terms {
  margin-top: 20px;
  font-size: 0.9em;
  color: #666;
}

.contact-terms a {
  color: #7091E6; 
  text-decoration: none;
}

.contact-terms a:hover {
  text-decoration: underline;
}

.phone-input {
  display: flex;
}

.contact-select {
  max-width: 49%;
  margin-right: 10px;
}

.contact-textarea {
  height: 100px;
  resize: none;
}


/*=============== Destination Page ===============*/

#catalogue, #catalogue1, #catalogue2 {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.catalogue__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  min-height: 2200px;
}


.catalogue__card {
  width: 100%;
  height: 400px;
  perspective: 1000px;
  position: relative;
  transition: transform 0.3s ease;
}

.catalogue__card:hover {
  transform: scale(1.03);
}

.catalogue__front,
.catalogue__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  transition: transform 0.6s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.catalogue__front {
  background: #fff;
  transform: rotateY(0deg);
  z-index: 2;
}

.catalogue__back {
  background: #fff;
  transform: rotateY(180deg);
  z-index: 1;
  padding: 20px;
  text-align: center;
}

.catalogue__card.flipped .catalogue__front {
  transform: rotateY(-180deg);
}

.catalogue__card.flipped .catalogue__back {
  transform: rotateY(0deg);
  z-index: 3;
}

.catalogue__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.catalogue__content {
  padding: 1rem;
  text-align: center;
}

.catalogue__title {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.catalogue__description {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.catalogue__button {
  background-color: #fd7b80;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.catalogue__button:hover {
  background-color: #ff676c;
}




/*========== MEDIA QUERIES ==========*/

/*=============== NAV & LOGO MEDIA QUERIES ===============*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {


  .nav__logo img,
  .footer__logo img {
    max-height: 80px;
  }

  .footer__logo {
    justify-content: center;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .nav__logo img,
  .footer__logo img {
    max-height: 100px;
  }
}

/* Medium Devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .nav__logo img,
  .footer__logo img {
    max-height: 110px;
  }
}

/* Large Desktops (≥1440px) */
@media screen and (min-width: 1440px) {
  .nav {
    max-width: 1200px;
  }

  .nav__logo img,
  .footer__logo img {
    max-height: 130px;
  }
}


/*========== HERO ==========*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  .hero-section {
    width: 100%;
    height: 50vh;

  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    right: 10px;
    bottom: 10px;
    text-align: center;
    width: 100%;
    padding: 0 10px;
  }

  .mute-toggle-button {
    bottom: 10px;
    right: 10px;
    padding: 8px;
  }

  .mute-toggle-icon {
    width: 20px;
    height: 20px;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-content {
    right: 15px;
    bottom: 15px;
  }

  .mute-toggle-button {
    padding: 8px;
  }
}

/* Medium devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* Large desktops (1440px and up) */
@media screen and (min-width: 1440px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }
}

/*=============== HOME SECTION MEDIA QUERIES ===============*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  .home__title {
    font-size: 2em;
    text-align: center;
  }

  .home__subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .home__img {
    width: 100%;
    margin: 0 auto;
  }

  .home-section-subtitle {
    font-size: 0.95rem;
    text-align: center;
  }

  .home__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home__data .button {
    margin-top: 1rem;
    align-self: center;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .home__title {
    font-size: 1.75rem;
    text-align: center;
  }

  .home__subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .home__img {
    width: 100%;
    margin: 0 auto;
  }

  .home-section-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .home__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home__data .button {
    margin-top: 1rem;
    align-self: center;
  }
}

/* Medium Devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .home__title {
    font-size: 2rem;
    text-align: center;
  }

  .home__subtitle {
    font-size: 1.25rem;
    text-align: center;
  }

  .home__img {
    width: 260px;
    margin: 0 auto;
  }

  .home-section-subtitle {
    font-size: 1.05rem;
    text-align: center;
  }

  .home__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home__data .button {
    margin-top: 1rem;
    align-self: center;
  }
}

/* Small Desktops (1024px to 1439px) */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .home__title {
    font-size: 2.25rem;
    text-align: center;
  }

  .home__subtitle {
    font-size: 1.3rem;
    text-align: center;
  }

  .home__img {
    width: 280px;
    margin: 0 auto;
  }

  .home-section-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .home__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home__data .button {
    margin-top: 1rem;
    align-self: center;
  }
}



/*=============== SERVICES ===============*/

/* Small devices (phones <576px) */
@media screen and (max-width: 575px) {
  .services__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services__img {
    height: 250px;
  }

  .services__title {
    font-size: 1.1rem;
  }

  .services__description {
    font-size: 0.95rem;
  }
}

/* Medium devices (tablets: 576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .services__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services__img {
    height: 280px;
  }

  .services__title {
    font-size: 1.2rem;
  }
}

/* Large tablets / small desktops (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .services__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__img {
    height: 300px;
  }
}

/* Large desktops (1440px and up) */
@media screen and (min-width: 1440px) {
  .services__container {
    gap: 3rem;
  }

  .services__img {
    height: 400px;
  }

  .services__title {
    font-size: 1.5rem;
  }

  .services__description {
    font-size: 1.1rem;
  }
}

/*========== MENU ==========*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  .menu__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu__img {
    width: 80px;
  }

  .menu__name {
    font-size: 0.95rem;
  }

  .menu__detail,
  .menu__preci {
    font-size: 0.8rem;
  }

  .menu__button {
    padding: 0.5rem 0.75rem;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .menu__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .menu__img {
    width: 90px;
  }
}

/* Medium desktops (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .menu__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__img {
    width: 100px;
  }
}

/* Large desktops (≥1440px) */
@media screen and (min-width: 1440px) {
  .menu__container {
    gap: 2rem;
  }

  .menu__img {
    width: 110px;
  }

  .menu__name {
    font-size: 1.1rem;
  }

  .menu__detail,
  .menu__preci {
    font-size: 0.95rem;
  }

  .menu__button {
    padding: 0.75rem 1rem;
  }
}

/*=============== NANNY SECTION MEDIA QUERIES ===============*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  #nanny .bd-grid {
    justify-content: center;
    gap: 1rem;
  }

  .nanny__card {
    width: 300px;
    height: 300px;
  }

  .nanny__name {
    font-size: 1.2em;
  }

  .nanny__description {
    font-size: 0.9em;
  }

  .nanny__price {
    font-size: 1em;
  }

  .nanny_profile_button {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  #nanny .bd-grid {
    justify-content: center;
    gap: 1.5rem;
  }

  .nanny__card {
    width: 320px;
    height: 320px;
  }
}

/* Medium devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .nanny__card {
    width: 250px;
    height: 350px;
  }
}

/* Large desktops (≥1440px) */
@media screen and (min-width: 1440px) {
  .nanny__card {
    width: 280px;
    height: 380px;
  }

  .nanny__name {
    font-size: 1.6em;
  }

  .nanny__description {
    font-size: 1.1em;
  }

  .nanny__price {
    font-size: 1.3em;
  }

  .nanny_profile_button {
    font-size: 1em;
  }
}

/*=============== CONTACT SECTION MEDIA QUERIES ===============*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  .contact.section.bd-container {
    flex-direction: column;
    padding: 40px 10px;
    background-position: center;
    background-size: cover;
    text-align: center;
    width: 400px;
  }

  .contact__container {
    width: 95%;
    padding: 24px;
  }

  .contact__description {
    font-size: 0.9rem;
  }

  .contact__button {
    margin-top: 20px;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .contact.section.bd-container {
    padding: 50px 20px;
    background-position: center;
  }

  .contact__container {
    width: 400px;
    padding: 30px;
  }

  .contact__button {
    margin-top: 20px;
  }
}

/* Medium devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact.section.bd-container {
    padding: 60px 30px;
  }

  .contact__container {
    width: 450px;
    padding: 35px;
  }
}

/* Large desktops (≥1440px) */
@media screen and (min-width: 1440px) {
  .contact.section.bd-container {
    padding: 80px 0;
    background-position: left;
    background-size: cover;
  }

  .contact__container {
    width: 600px;
    padding: 48px;
  }

  .contact__description {
    font-size: 1.1rem;
  }
}


/*=============== FOOTER SECTION MEDIA QUERIES ===============*/

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 1.5rem;
  }

  .footer__social {
    font-size: 1.3rem;
    margin-right: 0.75rem;
  }

  .footer__title {
    font-size: 1.1rem;
  }

  .footer__link {
    font-size: 0.95rem;
  }

  .footer__copy {
    font-size: 0.85rem;
  }
}

/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .footer__title {
    font-size: 1.2rem;
  }

  .footer__link {
    font-size: 1rem;
  }
}

/* Medium devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__copy {
    font-size: 0.95rem;
  }
}

/* Large desktops (≥1440px) */
@media screen and (min-width: 1440px) {
  .footer__title {
    font-size: 1.5rem;
  }

  .footer__link {
    font-size: 1.05rem;
  }

  .footer__copy {
    font-size: 1rem;
  }
}



/* ============ SERVICES PAGE MEDIA QUERIES ============ */

/* Phones (<576px) */
@media screen and (max-width: 575px) {
  #services_page .services__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services_page__content {
    flex-direction: column;
    padding: 16px;
  }

  .package-details-main {
    padding: 16px;
  }

  .package-title {
    font-size: 1.2rem;
  }

  .package-description,
  .package-list p {
    font-size: 0.95rem;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .read-more {
    font-size: 0.95rem;
  }
}

/* Small tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  #services_page .services__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services_page__content {
    padding: 18px;
  }

  .package-title {
    font-size: 1.4rem;
  }

  .package-description,
  .package-list p {
    font-size: 1rem;
  }

  .read-more {
    font-size: 1rem;
  }
}

/* Tablets and medium devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #services_page .services__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .package-title {
    font-size: 1.6rem;
  }

  .package-description,
  .package-list p {
    font-size: 1.05rem;
  }

  .package-details-main {
    padding: 20px;
  }
}

/* Small desktops (1024px to 1439px) */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  #services_page .services__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .package-title {
    font-size: 1.8rem;
  }

  .package-description,
  .package-list p {
    font-size: 1.1rem;
  }
}

/* Large desktops (1440px and up) */
@media screen and (min-width: 1440px) {
  #services_page .services__container {
    gap: 2.5rem;
  }

  .package-title {
    font-size: 2rem;
  }

  .package-description,
  .package-list p {
    font-size: 1.15rem;
  }

  .package-details-main {
    padding: 24px;
  }

  .read-more {
    font-size: 1.05rem;
  }

  .button-container {
    justify-content: flex-start;
  }
}

/*=============== DESTINATION PAGE MEDIA QUERIES ===============*/

/* Phones (<576px) — Two Cards in a Row */
@media screen and (max-width: 575px) {
  #catalogue,
  #catalogue1,
  #catalogue2 {
    padding: 20px 0px;
  }

  .catalogue__container {
    grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    gap: 1rem;
    min-height: auto;
    margin: 0;
    width: 100%;
  }

  .catalogue__card {
    height: 340px;
  }

  .catalogue__img {
    height: 180px;
  }

  .catalogue__title {
    font-size: 1.1rem;
  }

  .catalogue__description {
    font-size: 0.9rem;
  }

  .catalogue__button {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  /* ✅ Make card back scrollable */
  .catalogue__back {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
  }
}




/* Tablets (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  #catalogue,
  #catalogue1,
  #catalogue2 {
    padding: 30px 20px;
  }

  .catalogue__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    min-height: auto;
  }

  .catalogue__card {
    height: 380px;
  }

  .catalogue__img {
    height: 220px;
  }
}

/* Medium devices (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .catalogue__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    min-height: auto;
  }

  .catalogue__card {
    height: 400px;
  }

  .catalogue__img {
    height: 240px;
  }
}

/* Small Desktops (1024px to 1439px) */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .catalogue__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalogue__card {
    height: 420px;
  }

  .catalogue__img {
    height: 250px;
  }

  .catalogue__title {
    font-size: 1rem;
  }

  .catalogue__description {
    font-size: 1.05rem;
  }
}

/* Large Desktops (1440px and up) */
@media screen and (min-width: 1440px) {
  #catalogue,
  #catalogue1,
  #catalogue2 {
    padding: 60px;
  }

  .catalogue__container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    min-height: 2200px;
  }

  .catalogue__card {
    height: 420px;
  }

  .catalogue__img {
    height: 270px;
  }

  .catalogue__title {
    font-size: 1.25rem;
  }

  .catalogue__description {
    font-size: 1.1rem;
  }

  .catalogue__button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}









@media screen and (min-width: 576px) {

  .home__container,
  .about__container,
  .app__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__data {
    align-items: center;
  }

  .about__data,
  .about__initial,
  .app__data,
  .app__initial,
  .contact__container,
  .contact__initial {
    text-align: initial;
  }

  .about__img,
  .app__img {
    width: 480px;
    order: -1;
  }

  .contact__container {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }

  .contact__button {
    justify-self: center;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 8rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__list {
    display: flex;
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  .nav__toggle {
    display: none;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container {
    height: 100vh;
    justify-items: center;
  }

  .services__container,
  .menu__container {
    margin-top: var(--mb-6);
  }

  .menu__container {
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }

  .menu__content {
    padding: 1.5rem;
  }

  .menu__img {
    width: 130px;
  }

  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }
}

@media screen and (min-width: 960px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img {
    width: 500px;
  }

  .about__container,
  .app__container {
    column-gap: 7rem;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  .home__container {
    height: 640px;
  }
}


