@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color:   #04492677;
  --secondary-color: #239670;
  --color-01:        #4d8064;
  --color-02:        #66bd8d;
  --color-03:        #bcbcbc;
  --color-04:        #999999;
  --color-white:     #ffffff;
  --color-black:     #161616;
  --glass-background: rgba(210, 230, 220, 0.2);
  --glass-border:     rgba(255, 255, 255, 0.3) 1px solid;
  --glass-shadow: 0 15px 30px -15px rgba(23, 49, 35, 0.2);
  --glass-radial: radial-gradient(rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  --main-font: "Poppins", sans-serif;
  --max-width: 1300px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Selection syntax */
::selection {
  background-color: #005c1775;
  color: #ffffff;
}

/* For older versions of Firefox */
::-moz-selection {
  background-color: #005c1775;
  color: #ffffff;
}

.main-container {
  height: 100vh;
}

.main-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 15rem);
  background-image: radial-gradient(
      rgba(255, 255, 255, 0),
      var(--primary-color)
    ),
    url("img/home-background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.site-header {
  margin-left: 15%;
  margin-right: 15%;
	position: fixed;
  width: 70%;
	top: 0;
	padding-block: 20px;
	z-index: 999;
}

.inside-header {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin: auto;
	background: rgba(210, 230, 220, 0.2);
	padding: 20px;
	border-radius: 100vw;
	backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: rgba(255, 255, 255, 0.3) 1px solid;
  box-shadow: 0 15px 30px -15px rgba(23, 49, 35, 0.2);
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--main-font);
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 20px;
}

ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  text-decoration: none;
  color: var(--color-white);
  font-size: 18px;
  font-family: var(--main-font);
}

ul li a:hover {
  transition: .3s;
  color: var(--secondary-color);
}

.cta-btn {
  padding: 10px 20px;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  background-color: #196d4a;
  border-radius: 25px;
  transition: 0.3s;
  cursor: pointer;
}

.cta-btn:hover {
  transition: .4s;
  background-color: var(--glass-background);
  background-image: var(--glass-radial);
  color: var(--color-white);
  box-shadow: var(--glass-shadow);
}

.nav-hamburger {
  display: none;
}

.section-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: calc(100% - 75px);
  color: var(--color-white);
  font-family: var(--main-font);
  margin: auto;
  width: 100%;
}

.sub-heading {
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 5rem;
  margin-bottom: 1rem;
}

.sub-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 55px;
  height: 2.5px;
  background-color: var(--color-white);
}

.main-heading {
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.9;
}

.scroll-btn {
  margin-top: 1rem;
}

.scroll-btn a {
  text-decoration: none;
  color: var(--color-white);
}

.scroll-btn a:hover {
  color: var(--color-02);
}

.header-socials {
  position: absolute;
  align-items: center;
  left: 0;
  gap: 1rem;
  transform: translateX(calc(-50% + 1rem)) rotate(90deg);
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(210, 230, 220, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1px 5px 5px 5px;
  border-radius: 10px 10px 0 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 30px -15px rgba(23, 49, 35, 0.2);
}

.header-socials a {
  color: var(--color-white);
  text-decoration: none;
}

.header-socials ion-icon {
  font-size: 1.1rem;
  color: var(--color-white);
  transform: rotate(-90deg);
  margin-bottom: -3px;
}

/* ================ ABOUT SECTION ================ */

.about-container {
  min-height: 100vh;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--color-01) 8rem
  );
  overflow: hidden;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 2rem 2rem 3rem 2rem;
  font-family: var(--main-font);
  position: relative;
  border-radius: 48px;
  background: rgba(210, 230, 220, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 30px -15px rgba(23, 49, 35, 0.2);
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-black);
}

.about-sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-white); /*color before: #1b4d3e */
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.8rem;
}

.about-description {
  max-width: 850px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-white);
  padding: 1.8rem 2.8rem;
  margin-top: 0.5rem;
}

.section-title {
  color: var(--color-white);
  font-family: var(--main-font);
  font-size: 2rem;
  margin-bottom: 0.9rem;
  place-self: center;
  text-align: center;
}

.section-subtitle {
  color: var(--color-white);
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 1.1rem;
  place-self: center;
  text-align: center;
  margin-bottom: 0.5rem;
  margin: 20px;
}

.choose-cards {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.three-cards {
  color: var(--color-white);
  font-family: var(--main-font);
  font-size: 1.2rem;
  text-align: center;
  display: grid;
  place-items: center;
  background-color: var(--glass-background);
  background-image: var(--glass-radial);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: 30px;
  box-shadow: var(--glass-shadow);
  padding: 30px;
  width: 30%;
  height: 250px;
}

.three-cards:hover {
  scale: 1.01;
  transition: .5s;
}

.three-cards h3 {
  font-weight: 400;
}

.three-cards ion-icon {
  font-size: 4rem;
}

/* ================ PACKAGE SECTION ================ */

.packages {
  min-height: 100vh;
  height: max-content;
  background-image: linear-gradient(
    to top,
    var(--color-02),
    var(--color-01) 20rem
  );
}

.title-cont {
  max-width: var(--max-width);
  justify-self: center;
}

.packagelist-cont {
  display: grid;
  margin: auto;
  max-width: var(--max-width);
  grid-template-columns: 1fr 1fr;
}

.package-cards {
  width: 100%;
  margin: auto;
}

.package-cards:hover {
  transform:translateY(-3px);
  transition: .3s;
}

.package-list {
  display: grid;
  background-color: var(--glass-background);
  background-image: var(--glass-radial);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin: 3%;
  border-radius: 30px;
  height: fit-content;
}

.package-list img {
  width: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  object-fit: cover;
}

.package-details {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.package-left {
  display: grid;
  align-items: center;
}

.package-title {
  color: var(--color-white);
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 500;
}

.package-details a {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.package-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-button {
  padding: 10px 17px;
  background-color: #196d4a;
  color: var(--color-white);
  border-radius: 25px;
  border: none;
  width: 150px;
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.book-button:hover {
  background-color: var(--glass-background);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: .3s;
}

.package-end {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.package-end a {
  padding: 9px 28px;
  background-color: var(--color-white);
  box-shadow: var(--glass-shadow);
  border: var(--glass-border);
  color: #196d4a;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--main-font);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.package-end a:hover {
  background-color: var(--glass-background);
  color: var(--color-white);
  transition: .5s;
}

/* ================ VEHICLE SECTION ================ */

.vehicle-list {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.glass-grid {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: 1fr 1fr 1fr;
}

.glass-card {
  overflow: hidden;
  position: relative;
  margin: 10px auto;
  width: 95%;
  background: var(--glass-background);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

.glass-card img {
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  font-family: var(--main-font);
  color: var(--color-white);
}

.vehicle-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--glass-background);
  color: var(--color-white);
  font-family: var(--main-font);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.specs {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.vehicle-button {
  padding: 10px 17px;
  background-color: #196d4a;
  color: var(--color-white);
  border-radius: 25px;
  border: rgb(25, 109, 74) 1px solid;
  width: 100%;
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.vehicle-button:hover {
  background-color: var(--glass-background);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: .3s;
}

/* ================ FOOTER SECTION ================ */

.glass-footer {
  background: var(--color-02);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  padding: 60px 30px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand h2 {
  font-family: var(--main-font);
}

.footer-brand p {
  color: var(--color-white);
  font-family: var(--main-font);
  line-height: 1.6;
  margin: 20px 0;
}

.glass-footer .social-links a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-white);
  font-family: var(--main-font);
  text-decoration: none;
  font-size: 0.8rem;
  background-color: var(--glass-background);
  border-radius: 20px;
  border: var(--glass-border);
  padding: 3px 25px;
  min-width: 120px;
  margin-bottom: 5px;
  max-width: fit-content;
}

.glass-footer .social-links a ion-icon {
  font-size: 1rem;
}

.footer-links h3, 
.footer-contact h3 {
  color: var(--color-white);
  font-family: var(--main-font);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--color-03);
}

.footer-contact p {
  color: var(--color-white);
  font-family: var(--main-font);
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-family: var(--main-font);
  color: var(--color-white);
}

.footer-bottom a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer-bottom a:hover {
  color: #000000;
  transition: .5s;
}

/* ================ RESPONSIVE DESIGN ================ */
/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .nav-logo a {
  font-size: 1.0rem;
  }

  ul li a {
    font-size: 16px;
  }

  .cta-btn {
    padding: 9px 14px;
    font-size: 14px;
  }

  .nav-hamburger {
    display: none;
  }

  .sub-heading {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 4.5rem;
  }

  .main-heading {
  font-size: 3.2rem;
  font-weight: 600;
  }

  .three-cards {
    font-size: 1rem;
  }

  .three-cards ion-icon {
    font-size: 3rem;
  }

  .package-title {
    font-size: 1rem;
  }

  .book-button {
    width: 125px;
    font-size: 0.8rem;
    font-weight: 400;
  }

  .packagelist-cont {
    display: grid;
    margin: auto;
  }
}

/* Mobiles */
@media screen and (max-width: 767px) {
  .main-container {
    height: 600px;
    object-fit: cover;
  }

  .site-header {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }

  .inside-header {
	padding: 10px;
  }

  .nav-logo a {
  font-size: 14px;
  margin-left: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    background: rgba(230, 230, 230, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    border: rgba(255, 255, 255, 0.3) 1px solid;
    gap: 15px;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .cta-btn {
    display: none;
  }

  .nav-hamburger {
    display: block;
    margin-right: 10px;
    font-size: 2.2rem;
    color: var(--color-white);
    cursor: pointer;
    line-height: 0;
  }
  
  .nav-hamburger ion-icon {
    font-size: 2.2rem;
    display: block;
  }
  
  ul li a {
    color: var(--color-black);
    padding: 10px;
    width: 100%;
    justify-content: center;
  }
  
  ul li a:hover {
    color: #239670;
  }

  .heading-container {
    margin-left: 10%;
    margin-right: 10%;
  }

  .sub-heading {
    font-size: 1rem;
    font-weight: 500;
    padding-left: 4.5rem;
  }

  .main-heading {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .header-socials {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 2px 5px 7px 5px;
  }

  .header-socials ion-icon {
    font-size: 1rem;
  }

  .about-title {
    font-size: 1.9rem;
  }

  .about-description {
    font-size: 1rem;
    padding: 1.5rem 1.5rem;
    border-radius: 40px;
  }

  .about-sub {
    font-size: 1rem;
  }

  .about-sub::before,
  .about-sub::after {
    width: 20px;
  }

  .choose-cards {
    width: 90%;
    margin: auto;
    gap: 10px;
  }

  .three-cards {
    width: 30%;
    height: 150px;
    font-size: 0.6rem;
    font-weight: 400;
    padding: 15px;
  }

  .three-cards ion-icon {
    font-size: 2.5rem;
  }

  .packagelist-cont {
    display: grid;
    margin: auto;
    grid-template-columns: 1fr;
  }

  .package-cards {
    width: 90%;
    margin: auto;
    display: grid;
  }

  .package-title {
    font-size: 1rem;
  }

  .book-button {
    width: 130px;
    font-size: 0.8rem;
    font-weight: 400;
  }

  .glass-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    width: 85%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-container .social-links a {
    align-self: center;
    margin: 5px auto;
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 5px;
  }

  .footer-contact p {
    margin-bottom: 5px;
  }

  .footer-links ul li {
    margin-bottom: 5px;
  }
}