/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #4A4A4A;
  background-color: #FDF6EC;
  line-height: 1.6;
}

/* Header */
.navbar {
  background-color: #E6F0EF;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0; 
  z-index: 1000;


} 


.logo {
  font-size: 1.8rem;
  color: #A3B18A;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links li a {
  text-decoration: none;
  color: #4A4A4A;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #A3B18A;
}


.menu-toggle{
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    top: 70px;
    text-align: center;
    right: 0;
    width: 100%;
    background-color: white;    
    padding: 1rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}









/* Hero Section */
.hero {
  background-color: #C1DADB;
  text-align: center;
  padding: 4rem 2rem;
  color: #4A4A4A;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
}

/* Section Headings */
section h2 {
  text-align: center;
  margin: 2rem 0 1rem;
  color: #A3B18A;
}

/* Services */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1rem 2rem;
}

.service {
  background-color: #E6F0EF;
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service h3 {
  margin-bottom: 0.5rem;
  color: #4A4A4A;
}

/* About & Contact */
#about, #contact {
  padding: 2rem;
  background-color: #FDF6EC;
  text-align: center;
}

/* Footer */
footer {
  background-color: #E6F0EF;
  text-align: center;
  padding: 1rem;
  color: #4A4A4A;
  font-size: 0.9rem;
}

.special-paragraph{
    text-align: center;
    margin-bottom: 10px;
}


.hero {
  position: relative;
  height: 100vh; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3); /* optional translucent overlay */
  border-radius: 12px;
  max-width: 90%;
   
}

.about-container {
  margin: auto;
  max-width: 100%;
  background-color: #C1DADB;
  border: solid 1px #A3B18A;
  margin-top: 0;  
  padding-left: 0px;
  padding-right: 0px;
  
  
}

.why {
  padding-left: 60px;
  padding-right: 20px; 

}
.why ul{
  list-style-type: none;
}


.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list .symbol {
  margin-right: 10px; /* space between symbol and text */
}

.service {
  background-color: #C1DADB; /* Champagne */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* soft shadow */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; 
  transition: transform 0.8s ease
}

.service:hover {
  background-color: #F2DCDC; /* Blush Pink on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* deeper shadow */
  transform: translateX(10px);
}



#location{
  margin-bottom: 5px;
}

#contact{
  background-color: transparent;
}

.contact-section {
  padding: 40px;
  background-color: #f8ebdd;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 5px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #6f4c5b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #553647;
}

.contact-form select {
  padding: 10px;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 5px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: white;
  color: #25D366;
}

.map-section {
  padding: 40px;
  background-color: #f2dcdc;
  text-align: center;
}

.map-container {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.custom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.special-heading1{
  text-align: center;
}

@media (max-width: 768px) {
  .custom-list {
    grid-template-columns: 1fr;
  }
}

.custom-list li {  
  padding: 20px;
  border-radius: 10px;
  /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);*/
  font-size: 1.1rem;
  line-height: 1.6;
 

  /* Center the content */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why {
  background: url('flowers.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  color: black;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}


.social-media {
  background-color: #f2dcdc;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 100%;
}

.social-media h3 {
  font-size: 2rem;
  color: #6f4c5b;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.icon {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s ease;
}

.fb { background-color: #3b5998; }
.ig { background-color: #e1306c; }
.wa { background-color: #25d366; }
.tk { background-color: #000000; }

.icon:hover {
  opacity: 0.85;
}


.typing-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.5rem;
  color: #6f4c5b;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #6f4c5b;
  width: fit-content;
  margin: 40px auto;
  text-overflow: ellipsis;
}

@keyframes blink {
  50% { border-color: transparent; }
}

.typing-text {
  animation: blink 0.7s step-end infinite;
}

/* Make font size responsive */
@media (max-width: 768px) {
  #typingText {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #typingText {
    font-size: 1.2rem;
  }}



.gallerySwiper {
  width: 100%;
  padding: 40px 0;
  background: #f8ebdd;
}

.swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiper-slide img {
  width: 250px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.swiper-slide img:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 10px;
  color: #6f4c5b;
  font-weight: bold;
  font-size: 14px;
}

/* Hide arrows on small screens */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}


