@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Kavoon&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Marcellus', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
}

h1,
h2 {
  font-size: 80px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

.heading,
a,
b {
  font-family: 'Kavoon';
  line-height: 1;
}

.text {
  font-family: 'Marcellus ';
  font-size: 20px;
  color: #123E53;
}

header {
  background: #264959;
  color: white;
  padding: 1rem 2rem;
  display: block;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
    filter: hue-rotate(265deg);
}

/* Navigation links */
.nav-links a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300 !important;
}

/* Menu toggle button (hamburger) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.btn{
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  box-shadow: 2px 2px 10px #c5c5c5, -2px -2px 10px #ffffff;
}

.btn:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.btn:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.btn:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.btn:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.btn:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


.hero {
  background: url('./images/bg-1.webp') center/cover no-repeat;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
}

#hero-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  min-width: 100%;
  background-image: linear-gradient(180deg, #0e0e0e7c 0%, #0e0e0e8c 50%);
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.8rem;
  max-width: 800px;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

#about {
  background-color: #4385a3;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 7rem;
  gap: 50px;
}

.abt-img {
  width: 45%;
  
  display: flex;
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.95);
}

.abt-img img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.abt-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.para{
  color: #123E53;
}
.services,
.hotels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  margin: 1rem 0;
  padding: 0;
  background: #123E53;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

  &:hover img {
    transform: scale(1.2);
    overflow: hidden;
  }
}
.card-img {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  transform: scale(1);
  transition: .3s ease-in-out;
}

.card-content {
  padding: 1rem;
}

.hotel-card {
  padding: 0%;
  background: #123E53;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

  transform: rotate(0deg);
  transition: .3s ease-in-out;

  &:hover {
    transform: rotate(3deg);
  }
}

.hotel-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-text,
footer a {
  color: #ffffff;
  margin: 0 .5rem;
  text-decoration: none;
  font-family: 'Dancing Script';
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }

  header {
    flex-direction: row;
    align-items: flex-start;
  }
  #about {
    display: flex;
    flex-flow: column-reverse wrap;
    padding: 3rem 2rem;
  }
  .abt-img,.abt-text{
    width: 100%;
  }
}