/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
}
h2 {
  text-align: center;
}

/* header.ejs */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* navbar.ejs */
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7vh;
  width: 90%;
}
.menu-item {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
}
.logo {
  width: 50px;
  padding-left: 10px;
  padding-right: 10px;
}

/* from copilot */
/* ...existing code... */
/* .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
} */
.menu {
  display: flex;
  gap: 1rem;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* index.ejs - Title */
#title {
  background-color: #6eacda;
  position: absolute;
  top: 9vh;
  left: 0px;
  height: 30vh;
  width: 100%;
  z-index: -1;
}
.title-z {
  position: absolute;
  top: 9vh;
  left: 0px;
  height: 30vh;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1 {
  font-family: "Mansalva", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  grid-column-start: 1;
  grid-column-end: 4;
  text-align: center;
}

/* index.ejs - About */
.container-about {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-container {
  display: grid;
  grid-template-columns: 340px 340px 492px;
  grid-template-rows: 492px 340px;
  gap: 20px;
  margin-top: 25vh;
}
.card {
  background-color: #e2e2b6;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
.text-card {
  padding: 20px;
}
.portrait-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.my-foto {
  height: 380px;
}
.right {
  height: 300px;
}
.me {
  width: 492px;
}
#contact {
  list-style: none;
}
.special-offer {
  animation: oscillate 3s ease-in-out infinite;
  font-family: "Mansalva", cursive;
  color: #03346e;
}
.special-offer:hover {
  animation: oscillate 1s linear infinite;
}

/* index.ejs - Pricing */
#pricing {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-pricing {
  display: flex;
  justify-content: space-between;
  width: 90%;
}
.price-card {
  /* max-width: 492px; */
  width: 40%;
}
.price-card a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #03346e;
  font-weight: bold;
  padding: 10px;
}

.price-title {
  font-family: "Mansalva", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  grid-column-start: 1;
  grid-column-end: 4;
}
.p-title {
  text-align: center;
}
.info-icon {
  width: 50px;
  height: 50px;
  margin-left: 10px;
}
.special-offer-color {
  color: #03346e;
}

/* -package.ejs */
.package {
  display: flex;
  justify-content: center;
}
.container-package {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
}
dt {
  font-size: 20px;
  margin-top: 10px;
}

/* about.ejs */
.card-thumb {
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  margin: 10px;
}
.card-thumb img {
  margin: 5px;
}

.sub-page {
  display: flex;
  justify-content: center;
}
.container-sub-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
}
.container-thumbs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
.container-image img {
  width: 100%;
}
.sub-title {
  font-family: "Mansalva", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
}
.contact-card {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 6px;
}
.contact-card-small-item {
  width: 180px;
  margin-right: 20px;
}
.contact-card textarea {
  width: 220px;
}
textarea {
  height: 150px;
}
input,
textarea {
  margin: 10px;
  border-radius: 5px;
  border-width: 0px;
  font: inherit;
}
input:focus,
textarea:focus {
  outline: none;
}
button {
  background: none;
  color: inherit;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
}

/* footer.ejs */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6vh;
  background-color: #6eacda;
  width: 100%;
  position: absolute;
  left: 0px;
  z-index: -1;
  margin-top: 50px;
}
.container-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 90%;
}
.footer a {
  text-decoration: none;
}
.copyright {
  grid-column-start: 2;
  grid-column-end: 3;
  text-align: center;
  padding: 10px;
}
.social-media-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Responsive Styles */
@media (max-width: 1300px) {
  .grid-container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .card {
    height: auto;
    width: auto;
  }
  h1 {
    font-size: 40px;
  }
  .price-card {
    width: 50%;
  }
  .footer {
    height: 7vh;
  }
}
@media (max-width: 800px) {
  .container-pricing {
    flex-direction: column;
    align-items: center;
  }
  h1 {
    font-size: 35px;
  }
  .price-card {
    width: 100%;
  }
  .container-footer {
    grid-template-columns: 1fr 1fr;
  }
  .copyright {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .container-thumbs img {
    width: 90%;
    height: auto;
  }
  .container-image {
    overflow: auto;
    width: 100%;
    height: auto;
  }
  .container-image img {
    width: 750px;
    height: auto;
  }
  /* .menu-item {
    font-size: 17px;
  } */
}
@media (max-width: 650px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 100;
    top: 60px; /* adjust as needed */
    right: 1rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  .menu.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Animations */
@keyframes oscillate {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-4deg);
  }
  20% {
    transform: rotate(4deg);
  }
  30% {
    transform: rotate(0deg);
  }
}

@view-transition {
  navigation: auto;
}
