@import url("https://fonts.googleapis.com/css2?family=Quintessential&display=swap");
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
}

#header {
  width: 100%;
  border-bottom: 1px solid black;
}

/* Start Header */

#contactInfo a {
  text-decoration: none;
  color: black;
}

#contactInfo img {
  max-height: 30px;
  max-width: 30px;
  margin-top: 15px;
}

#contactInfo {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  line-height: 50px;
  align-items: center;
}

#header h1 {
  font-size: 1em;
}

/* End Header */
/* Start Title */

#Title {
  font-family: "Quintessential", serif;
  font-weight: 400;
  text-align: center;
}

#Title h1 {
  font-size: clamp(1rem, 5vw, 5rem);
  max-width: 90%;
  margin: 0 auto;
  word-wrap: break-word;
}

#Title h2 {
  font-size: clamp(1rem, 4vw, 3rem);
  max-width: 90%;
  margin: 0 auto;
  word-wrap: break-word;
}

/* Additional Media Queries for Fine Tuning */
@media (max-width: 768px) {
  #Title h1 {
    font-size: clamp(1.5rem, 7vw, 4rem);
  }

  #Title h2 {
    font-size: clamp(0.8rem, 3.5vw, 2rem);
  }
}

/* End Title */
/* Start 3 Column Section */

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem;
}

.item {
  padding: 1rem;
  text-align: center;
  flex: 1 1 calc(33.333% - 1rem);
  box-sizing: border-box;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .item {
    flex: 1 1 100%;
  }
}

/* End 3 Column Section */
/* Start Review Class */

.review {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial {
  margin-bottom: 2rem;
  position: relative;
  padding: 1.5rem 1.5rem;
  background-color: #ffffff;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial em {
  font-weight: bolder;
}

.testimonialh3 {
  color: #000;
  font-weight: bold;
  text-align: center;
  position: relative;
  font-size: 1.5rem;
  font-family: "Quintessential", serif;
}

.quote {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  position: relative;
  text-align: justify;
}

.quoteMark:before,
.quoteMark:after {
  content: '"';
  font-size: 3rem;
  color: #007bff;
  font-family: Georgia, serif;
  position: absolute;
}

.quoteMark:before {
  top: -30px;
  left: -30px;
}

.quoteMark:after {
  bottom: -30px;
  right: -30px;
}

.quoteTitle {
  font-size: 2rem;
  color: #000;
  font-family: "Quintessential", serif;
}

.infoh3 {
  color: #000;
  font-weight: bold;
  text-align: center;
  position: relative;
  font-size: 1rem;
  font-family: "Quintessential", serif;
}

.marginMinus {
  margin-top: -20px;
}

.infoItem {
  font-size: 1rem;
  color: #555;
  position: relative;
  text-align: justify;
}

.services{
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.infoTitle {
  color: #000;
}

.list {
  list-style: none;
  text-align: left;
  display: table;
  margin: 0 auto;
  padding: 0;
}

.list li {
  text-align: left;
  padding: 5px 0;
}

.serveLink {
  text-decoration: none;
  color: #007BFF;
  font-style: italic;
  font-weight: bolder;
}
/* Unused */
.author {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin-top: 1rem;
}

/* End Review Class */

/*for 2 column body layout*/
/*
#leftColumn {
    width:60%;
    margin: auto;
}


#rightColumn {
    width:40%;
    margin: auto;
}
*/
/*for single comlum body layout*/

/* Style the main slideshow container */
#mainSection {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

/* Start Slideshow */

.slideshow-container {
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
  margin: auto;
}

.slideshow-container .slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slideshow-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Making first slide appear */
.slideshow-container .slide:first-of-type {
  display: block;
}

/* Left and right arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  user-select: none;
  z-index: 10;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .slideshow-container {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  #hero {
    max-width: 100%;
    flex: none;
  }
}

#hero {
  width: 100%;
  height: 60vh;
}

/* End Slideshow */
/* Start Contact Section */

#connectTitle {
  color: #000;
  font-size: 2rem;
  font-family: "Quintessential", serif;
  font-weight: bold;
}

#connectImg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.1);
}

.item.review {
  text-align: center;
  padding: 20px;
}

.social-buttons {
  margin-top: 20px;
}

/* buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  text-align: center;
  width: 60%;
  margin: auto;
}

.btn img {
  height: 30px;
  width: auto;
}

.btn.facebook {
  background-color: #3b5998;
  color: #fff;
}

.btn.whatsapp {
  background-color: #29a71a;
  color: #fff;
}

.btn.email {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.btn.tripAdvisor {
  background-color: #34E0A1;
  color: #000;
}


/*Facebook Widget*/
.facebookApp {
  position: relative;
  padding-top: 150%;
  width: 100%;
  max-width: 340px;
  margin: 20px auto 0 auto;
}

.facebookApp iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .facebookApp {
    padding-top: 75%;
  }

  .facebookApp iframe {
    height: 100%;
  }
}

/* End Contact Section */
/* Start Footer */

#footer {
  width: 90%;
  padding: 20px 0;
  margin: auto;
  border-top: 1px solid black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footerInfo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#footerInfo a {
  color: #000;
  text-decoration: none;
}

#footerSocialIcons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footerSocialIcons .subTitle {
  margin-bottom: 10px;
}

#footerSocialIcons div {
  margin-top: 5px;
}

#footerSocialIcons img {
  max-height: 30px;
  max-width: 30px;
}

/* End Footer */
/* Start Attributions */

#attributions {
  display: none;
}

/* End Attributions */
