/* 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-color: var(--buttercream); */
  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;
}

/* map */
.map-container {
  width: 100%;
  max-width: 1500px;
  height: 350px;
  /* You control the height here */
  margin: 2em auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* form */
.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sunset-plum);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-subheading::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 50px;
  background-color: var(--rosy-pink);
  margin-top: 6px;
  margin-bottom: 5px;
  margin-left: 15px;
}

.contact-subheading::before {
  content: "";
  display: inline-block;
  height: 3px;
  width: 50px;
  background-color: var(--rosy-pink);
  margin-top: 6px;
  margin-bottom: 5px;
  margin-right: 15px;
}

.contact-subheading {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sunset-yellow);
  position: inherit;
  display: block;
  margin-top: 6px;
}

.contact-info h5 {
  color: var(--sunset-yellow);
}

input.form-control.txt-box {
  border: 2px solid var(--rosy-pink);
  box-shadow: 1px 1px 2px 0px black;
}

button.btn {
  font-family: "Poppins", sans-serif;
  background-color: var(--sunset-yellow);
  color: var(--sunset-plum);
  padding: 8px 60px;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 40px;
  text-transform: capitalize;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button.btn:hover {
  background-color: var(--peach-coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

/* 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;
  }
}
