@font-face {
  font-family: Nunito;
  src: url("/fonts/Nunito-Regular.ttf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: Nunito;
  src: url("/fonts/Nunito-Italic.ttf");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: Nunito;
  src: url("/fonts/Nunito-SemiBold.ttf");
  font-style: normal;
  font-weight: 600;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
  /* outline-offset: -1px; */
}

html {
  font-size: 62.5%;
}

body {
  font-family: Nunito, system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #eeeeee;
  color: #111111;
}

a {
  text-decoration: none;
}
a:link,
a:visited {
  color: #eeeeee;
}
a:hover,
a:active {
  text-decoration: underline;
}

dl,
ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  /* letter-spacing: -0.08rem; */
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  /* letter-spacing: -0.05rem; */
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

/* Header styles */

header {
  /* background-color: #aaaaaa; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url("/images/header_crop2.jpg");
  background-size:cover;
  /* background-position: center; */
  text-align: center;
  color: white;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  position: relative;
  padding: 8rem 2.2rem 6rem 2.2rem;
  margin-bottom: 8rem;
}

header h1 {
  font-size: 10.8rem;
  margin: 1.8rem auto;
}

header h2 {
  font-size: 3rem;
  word-spacing: 0.8rem;
  letter-spacing: 0.2rem;
}

section {
  /* margin-top: 3.6rem; */
  /* height: 40rem; */
  margin: 4.6rem 3.6rem;
}

/* section:nth-child(odd) {
  background-color: #cccccc;
} */

section h2 {
  text-align: center;
  margin: 2.8rem 1.8rem;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 0.8rem; */
  /* margin: 1.2rem; */
  overflow: auto;
}

.package-card {
  text-align: center;
  padding: 2.2rem 1.8rem;
}

.package-card a {
  position: relative;
}

.package-card img {
  width: 20rem;
  height: 20rem;
  /* border-radius: 50%; */
  object-fit: cover;
  border-radius: 0.8rem;
  transition: all 0.3s;
  box-shadow: 0 0 2.2rem 0 gray;
}

.package-card img:hover, .package-card img:active {
  box-shadow: 0 0 0.8rem 0 gray;
  /* box-shadow: unset; */
  width: 21rem;
  height: 21rem;
  cursor: pointer;
}

/* .package-card a h4 {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  color: #ffffff;
  white-space: normal;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  position: absolute;
  bottom: 2rem;
  width: 100%;
} */

.overlay * {
  margin: 0.5rem auto;
}

.overlay span {
  text-transform: uppercase;
  font-size: 1.2rem;
}


/* Footer styles */

footer {
  background-color: #1d1d1d;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 14rem;
  row-gap: 3.6rem;
  padding: 4.2rem 5.2rem;
  color: white;
}

footer img {
  /* position: absolute; */
  /* top: 4.6rem; */
  /* left: 4.6rem; */
  /* width: 8rem; */
  width: 12rem;
  margin-top: 1.6rem;
  border-radius: 0.8rem;
}

footer h4 {
  margin-bottom: 1rem;
}

footer svg {
  /* background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)); */
  background-color: dimgray;
  border-radius: 1rem;
  height: 3.6rem;
  width: 3.6rem;
  stroke: white;
  stroke-width: 1.2;
  padding: 0.45rem;
}

footer svg:active,
footer svg:hover {
  stroke: black;
  /* stroke-width: 0.15rem; */
  /* background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)); */
  background-color: lightgray;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  column-gap: 0.6rem;
}

.label-icon,
.label-icon-addr {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 0.8rem;
  margin: 0.6rem 0;
}

.label-icon-addr {
  /* flex-direction: column; */
  align-items: flex-start;
  /* margin: -0.6rem 0; */
}

/* .links {
  margin-left: auto;
} */


address {
  line-height: normal;
}

.copyright {
  background-color: black;
  color:whitesmoke;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1.45rem;
}



/* Responsive Media Queries */

@media (max-width: 60rem) {
  html {
    font-size: 54.6875%;
  }
  footer {
    column-gap: 7rem;
  }
}

@media (max-width: 32rem) {
  html {
    font-size: 46.875%;
  }
  footer {
    flex-direction: column;
    row-gap: 3.6rem;
  }
}

html {
    visibility: visible;
    opacity: 1;
}
