* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

a {
  text-decoration: none;
  color: inherit;
  /* keeps link color same as parent text */
}

ul {
  list-style: none;
}

:root {
  --bg: #F2F0EA;
  --accent1: #A8D5E3;
  --accent2: rgb(181, 198, 249);
  --text: black;
  --secondaryText: rgb(255, 84, 90);
  --logoFont: "Pacifico", cursive;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Savate", sans-serif;
}

nav {
  margin: 20px;
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(0, 255, 217, 0.19);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: var(--logoFont);
  font-size: 50px;
}

#navLinks {
  font-size: 25px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
}

#navLinks a:hover {
  color: var(--secondaryText);
}

.heroSection {
  background-color: var(--accent2);
  height: 350px;
  margin: 20px;
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.textDiv {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.textDiv h1 {
  font-size: 40px;
}

.textDiv h5 {
  font-size: 25px;
}

.heroTextSection {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.socialBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--accent1);
  border-radius: 10px;
  font-size: 15px;
  font-weight: bolder;
  cursor: pointer;
}

.socialBtn:hover {
  background-color: var(--bg);
}

.heroImages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.heroImages img {
  height: 300px;
  width: 300px;
  border-radius: 20px;
}

.MyDestinationSection {
  margin: 100px 0px 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.MyDestinationSection h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.myFavDestinations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.myFavDestinations img {
  height: 500px;
  width: 400px;
}

.bucketList {
  color: var(--secondaryText);
}

.destination1 {
  display: flex;
  flex-direction: column;
}

.destination1 img {
  border-radius: 50% 0% 0% 50%;
}

.destination3 img {
  border-radius: 0% 50% 50% 0%;
}

.destinationDescription {
  margin-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.destination1Descp, .destination2Descp, .destination3Descp {
  text-align: center;
  background: rgba(255, 84, 90, 0.19);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(12px);
  width: 400px;
  height: 400px;
  padding: 10px;
  border: 2px solid var(--bg);
}

.destination1Descp:hover, .destination2Descp:hover, .destination3Descp:hover {
  border: 2px solid red;
}

.destination1Descp {
  border-radius: 20px 0px 20px 20px;
}

.destination2Descp {
  border-radius: 0px 0px 20px 20px;
}

.destination3Descp {
  border-radius: 0px 20px 20px 20px;
}


.countryName {
  text-align: center;
  color: var(--secondaryText);
  font-size: 50px;
}

.destinationDescription p {
  font-size: 30px;
}

.footerSection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 50px 50px;
}

footer {
  background-color: var(--accent2);
  /* height: 350px; */
  height: auto;
  margin: 20px;
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.3);
}


.leftFooter {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.leftFooter p {
  font-size: 20px;
}

.socialLogos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 15px
}

.socialLogos img {
  height: 25px;
  width: 25px;
}

.rightFooter {
  font-size: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#footerLinks {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 20px;
  font-weight: bolder;
}

#footerLinks li a:hover {
  text-decoration: underline;
}

.footerCopyright {
  height: 40px;
  background-color: var(--secondaryText);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: poppins;
  font-size: 15px;
  font-weight: bold;
  color: black;
  border-radius: 0px 0px 20px 20px;
}
