/* Font Awesome for social icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

:root {
  --sunset-yellow: #fec260;
  --rosy-pink: #f8afa6;
  --sunset-plum: #944e63;
  --peach-coral: #ff6f61;
  --buttercream: #fff6e5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background-image: url('/Images/body.png');
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.floata{
	position:fixed;
	width:60px;
	height:60px;
	bottom:120px;
	left:40px;
	background-color:red;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--sunset-plum);
  width: 100%;
  padding: 5px;
}

header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

div.logo {
  float: left;
  width: max-content;
}

div.logo img {
  width: 4em;
  height: 4em;
}

/* Keep toggle-btn on small screens */
.toggle-btn {
  width: 35px;
  display: none;
}

.toggle-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fec260;
  margin-bottom: 8px;
}

nav {
  float: right;
}

nav ul li {
  display: inline-block;
  padding: 15px 25px;
}

nav ul li a {
  display: inline-block;
  color: var(--sunset-yellow);
  text-decoration: none;
  font-weight: 600;
}

/* nav ul li:hover {
  background: var(--buttercream);
  border-radius: 20px;
  box-shadow: 1px 1px 2px 2px black;
  transition: all 0.3s ease;
} */

nav ul li a.active {
  color: var(--buttercream);
  font-weight: 700;
  border-bottom: 2px solid var(--buttercream);
  padding-bottom: 5px;
}

@media (max-width: 991px) {
  .toggle-btn {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    border-top: 1px solid #fff;
    margin-top: 10px;
    padding-top: 10px;
  }

  nav ul li {
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  nav.show {
    display: block;
  }
}

.btn.btn1 {
  float: right;
  margin: 0px 2em;
  padding: 0.2em 1em 0.2em 1em;
  border-radius: 25px;
  border: 2px solid rgb(255, 255, 255);
  background-color: #25d366;
  color: white;
  font-size: 20px;
  font-family: auto;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s;
}

.btn.btn1:hover {
  background-color: #1eae53;
  color: white;
  border: 2px SOLID rgb(0, 0, 0);
}

/* #nav.links {
  margin-right: 15em;
} */

/* carousal */
.c-caption {
  text-align: center;
  margin-bottom: 9em;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

@media (max-width: 760px) {
  .carousel-caption {
    top: 40%;
  }
}

.c-caption h1 {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  color: var(--buttercream);
  text-shadow: 3px 3px black;
}

.c-caption p {
  color: var(--buttercream);
  font-size: 26px;
  font-family: "Playfair Display", serif;
}

@media (max-width: 760px) {
  .c-caption h1 {
    font-size: 32px;
  }

  .c-caption p {
    font-size: 16px;
  }

  .c-caption {
    margin-bottom: 3em;
    padding: 0 10px;
  }
}

img.carousel-img {
  height: 600px;
  object-fit: cover;
}

@media (max-width: 760px) {
  img.carousel-img {
    height: 300px;
    /* smaller height on mobile */
  }
}

button#btn1.btn.btn-lg {
  font-family: "UoqMunThenKhung", serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--peach-coral);
  color: #ffffff;
  padding: 6px 50px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 3em;
}

button#btn1.btn.btn-lg:hover {
  background-color: #e85b50;
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

button#btn2.btn.btn-lg {
  font-family: "UoqMunThenKhung", serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--buttercream);
  color: var(--sunset-plum);
  padding: 6px 50px;
  border: 2px solid var(--peach-coral);
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s;
}

button#btn2.btn.btn-lg:hover {
  background-color: var(--peach-coral);
  color: white;
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

.c-buttons {
  margin-top: 1em;
}

@media (max-width: 760px) {
  .c-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    /* Force side by side */
  }

  button#btn1.btn.btn-lg,
  button#btn2.btn.btn-lg {
    font-size: 14px;
    padding: 6px 12px;
    flex: 1 1 auto;
    /* allow them to shrink */
    min-width: 0;
    /* remove min width limits */
    margin: 0;
    /* remove margins that force wrapping */
    white-space: nowrap;
    /* prevent button text from wrapping */
  }
}

h2 {
  font-family: "Playfair Display", sans-serif;
  color: var(--sunset-plum) !important;
}

h2.gallery {
  margin-top: 3em;
}

/* services */
div.s-card {
  background-color: var(--white);
  color: var(--sunset-plum);
  height: auto;
  width: 100%;
  border: 1px solid var(--buttercream);
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(148, 78, 99, 0.15);
  transition: transform 0.3s ease;
}

div.s-card:hover {
  transform: scale(1.08);
}

div.s-card img {
  border-radius: 25px;
  transition: transform 0.4s ease-in-out;
  max-width: 100%;
}

div.services {
  display: grid;
  margin-top: 5em;
}

.div.services.card {
  display: inline-block;
}

h4.card-title {
  color: var(--peach-coral);
  font-weight: 600;
}

p.card-text {
  color: var(--sunset-plum);
}

.parent{
  text-align: center;
}

button#btn3.btn.btn-lg {
  font-family: "Poppins", sans-serif;
  background-color: var(--sunset-yellow);
  color: var(--sunset-plum);
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-transform: capitalize;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

button#btn3.btn.btn-lg:hover {
  background-color: var(--peach-coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

div.figure {
  color: #ffffff;
}

button#btn4.btn.btn-lg {
  font-family: "UoqMunThenKhung", serif;
  background-color: var(--peach-coral);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: inline-block;
}

button#btn4.btn.btn-lg:hover {
  background-color: #e85b50;
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

/* what we offer banner */
div.banner {
  position: relative;
  background-image: url("/Images/carousal1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  box-shadow: 10px 3px 12px 4px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin-top: 5em;
}

/* overlay hidden by default */
div.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

/* overlay on hover */
div.banner:hover .overlay {
  opacity: 1;
}

/* Content should be above overlay */
div.banner .content {
  position: relative;
  z-index: 2;
  color: white;
}

div.col-12.w-100 {
  margin-top: 8em;
  padding: 0em 10em;
  color: white;
}

@media (max-width: 700px) {
  div.col-12.w-100 {
    padding: 0em 6em;
    margin-top: 6em;
    color: white;
  }

  div.banner {
    height: 500px;
  }

  @media (max-width: 400px) {
    div.col-12.w-100 {
      padding: 0em 4em;
      margin-top: 5em;
      color: white;
    }

    div.banner {
      height: 590px;
    }
  }
}

/* gallery */
div.row.g-3.my-3 {
  margin-top: 5em;
  justify-content: center;
  column-gap: 4em;
}

div.g-column {
  width: 30%;
}

@media (max-width: 1399px) {
  div.row.g-3.my-3 {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin-left: 3em;
    margin-right: 3em;
  }

  div.g-column {
    width: 100%;
  }
}

/* testimonials */
.left-curve,
.right-curve {
  background-color: var(--rosy-pink);
  padding: 30px 20px;
  width: 100%;
  max-width: 480px;
  height: auto;
}

.left-curve {
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  margin-right: auto;
}

.right-curve {
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  margin-left: auto;
}

.left-h {
  font-size: 42px;
  color: var(--white);
  font-family: auto;
  text-align: left;
  margin-left: 0.3em;
}

.right-h {
  /* padding: 0em 1em 0em 3em; */
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

.testimonials {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 2em;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.t-row {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.t-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

.t-card {
  background-color: var(--buttercream) !important;
  box-shadow: 2px 2px black;
  padding: 1.5em;
  border-radius: 12px;
  width: 90%;
  max-width: 325px;
  text-align: center;
}

.text {
  font-size: 18px;
  font-family: cursive;
  margin-top: 1em;
}

i.fa-quote-left {
  font-size: 32px;
  color: #444;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--sunset-yellow);
  font-size: 24px;
  cursor: pointer;
  padding: 0.2em 0.2em;
  border-radius: 25px;
  z-index: 5;
}

.prev {
  left: 2px;
}

.next {
  right: 2px;
}

.nav-dots {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  gap: 10px;
}

.nav-dots span {
  width: 12px;
  height: 12px;
  background: #444;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
  cursor: pointer;
}

.nav-dots span.active {
  opacity: 1;
  background: black;
}

@media (max-width: 767px) {
  .left-h,
  .right-h {
    font-size: 22px;
    text-align: center;
    margin: 0 auto;
  }
}

/* footer */
footer {
  background-color: #1f1f1f;
  color: #fff;
  margin-top: 7em;
  position: relative;
  padding-top: 3rem;
}
/* 
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 40px;
  background-color: #1f1f1f;
  border-radius: 50%;
  z-index: 1;
} */

footer h5,
footer h6 {
  color: #ffd166;
  /* sunset yellow for headings */
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: #ffffffb3;
  /* soft white for links */
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f88379;
  /* peach coral on hover */
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer i {
  color: #ffd166;
  /* icons in sunset yellow */
  transition: color 0.3s ease;
}

footer i:hover {
  color: #f88379;
  /* peach coral on icon hover */
}

footer input[type="email"] {
  border-radius: 8px;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
}

footer .btn-primary {
  background-color: var(--sunset-yellow);
  color: var(--sunset-plum);
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  margin: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

footer .btn-primary:hover {
  background-color: #fcb94c;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  footer .row > div {
    text-align: center;
  }

  footer ul {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }

  footer form {
    max-width: 280px;
    margin: 0 auto;
  }
}

.footer-bottom {
  border-top: 1px solid #333;
  font-size: 0.9rem;
  background-color: #1f1f1f;
  color: #ffffff99;
}

a.scroll-to-top {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background-color: var(--sunset-yellow);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0.1em 0.2em;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

a.scroll-to-top i {
  color: var(--sunset-plum);
}

a.scroll-to-top:hover {
  background-color: var(--rosy-pink);
  transform: translate(-50%, -60%);
}

footer ul li a {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

footer ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--peach-coral);
  transition: width 0.4s ease;
}

footer ul li a:hover {
  color: var(--peach-coral);
}

footer ul li a:hover::after {
  width: 100%;
}

@media (max-width: 576px) {
  .subscribe,
  .footer-logo {
    padding: 0 10px;
    text-align: center;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
    margin-bottom: 10px;
  }
}
