/* ====================== Fonts ====================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Moon+Dance&display=swap');

@font-face {
  font-family: 'logofont';
  src: url('font/moon-time-regular_freefontdownload_org/moon-time-regular.ttf');
}



/*--------------- Global Reset---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", serif;

}
/* Body with space for fixed header and side padding */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  padding: 120px 10% 0; /* Top padding accounts for fixed nav */
}


/* Fullscreen white background */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

/* Hide when done */
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Centered responsive video */
#preloader video {
  width: 40vw;
  max-width: 800px;
  min-width: 350px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
}

/* Entrance animation */
@keyframes scaleInCenter {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.scale-in-center {
  animation: scaleInCenter 0.6s ease-in-out;
}

/* Exit animation */
@keyframes slideOutBottom {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}
.slide-out-bottom {
  animation: slideOutBottom 1s ease-in-out forwards;
  animation-delay: 3s;
}

/* ---------------------------------------------------------- */

/* Fixed Nav Wrapper */
.nav-wrapper {
  position: fixed;
  top: 7px;
  left: 10%;
  right: 10%;
  z-index: 1000;
}

/* General Header Layout */
.main-header {
  background-color: #f8fbfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo{
    display: flex;
}
.logo h1 {
  font-family: 'logofont', cursive;
  font-size: 40px;
  font-weight: 200;
  color: #8221a8;
}
.logo img{
 
    width: 55px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(15, 10, 7);

  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #dea764;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}


.hamburger span {
  height: 3px;
  width: 100%;
  background: rgb(79, 64, 64);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Animate Hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f8fbfc;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-bar.active .nav-links {
    max-height: 300px; /* enough for all links */
    padding: 20px 0;
  }

  .nav-links li {
    padding: 10px 0;
  }
}


/* Hero Section */
.hero {
  background-image: url('assets/Design\ sem\ nome\ \(1\).png');
  background-size: cover;
  border-radius: 10px;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(34, 26, 36);
  text-align: center;
}
.hero-feed {
  background-image: url('assets/young-couple-with-their-son-white-dog-lying-grey-sofa-home.jpg');
  background-size: cover;
  border-radius: 10px;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(178, 144, 186);
  text-align: center;
}
.hero p{
    margin: 5px;
}

button {
  background-color: #000000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 5px;
  border: none;
}
/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background-color: #000000;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #000000;
}

.cta-btn a {
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
}


.hero .cta-btn:hover {
  background-color: #d4ab89;
}

/* Services Section */
.services {
  text-align: center;
  padding: 40px 20px; /* ✅ Added side padding for smaller screens */
  max-width: 1200px;   /* ✅ Keeps layout neat on large screens */
  margin: 0 auto;      /* ✅ Centers the whole section */
}

.services h2 {
  margin-bottom: 10px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ Always center the cards */
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.service-card {
  background: #e9e9e9;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  max-width: 90vw;           /* ✅ Makes card responsive on smaller screens */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.image-icons {
  width: 100px;
  margin: 5px auto;     /* ✅ Centers the image inside the card */
  display: block;
}

/* Optional: fine-tune layout further on smaller screens */
@media (max-width: 730px) {
  .service-card {
    width: 90%; /* ✅ Make cards nearly full-width on mobile */
  }
}

/* Container centering and max width */
.about-container {
  max-width: 900px;  /* max width for readability */
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* stack everything vertically */
  align-items: center;    /* center horizontally */
  gap: 1.5rem;
  text-align: center;     /* center all text */
}

/* Image styling */
.about-container img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  margin-bottom: 1rem;
}

/* Headings and paragraphs with responsive font sizes */
.about-container h1 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0 0 1rem 0;
  color: #c5ae83;
}

.about-container h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: 2rem;
}

.about-container p {
  font-size: clamp(1rem, 3.5vw, 0.2rem);
  line-height: 1.6;
  margin-bottom: 0.09rem;
  max-width: 100%;
  /* Optional: limit width so lines don’t get too long on big screens */
  max-width: 900px;
}

/* Optional: smaller padding on very small screens */
@media (max-width: 400px) {
  body {
    padding: 1rem;
  }
  .about-container {
    gap: 1rem;
  }
}

.team-photo {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ----------- Contact ----------- */
.contact-section {
  background: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3f014db4;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #575454;
}

.contact-details p {
  margin: 0.5rem 0;
  color: #333;
}

.contact-details a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 18px;
}
.social-icons a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #000;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #c5ae83;
}


/* Footer */
footer {
  font-size: 0.6rem;
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}

footer .contact-info a {
  color: #aa29c7;
  text-decoration: none;
}

footer .contact-info a:hover {
  color: #d44ae9;
}

/* CLient Feedback Page */
.feedback-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.feedback-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.feedback-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feedback-card {
  
  background-color: #fff;
  padding: 20px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback-card h3 {
  margin-top: 0;
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin: 5px 0;
}

.contact-form {
margin-top: 10px;
}



.social-icons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 18px;
}

.social-icons a {
  color: #000000;
  text-decoration: none;
}

.social-icons p {
  font-size: 1rem;
  margin-top: 10px;
}


/* SERVICES SECTION */
.services {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #c5ae83;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img.image-icons {
  width: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #c5ae83;
  margin-bottom: 10px;
}

.service-card p {
  color: #444;
}


/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.whatsapp-float img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(21%) saturate(649%) hue-rotate(358deg) brightness(92%) contrast(92%);

  width: 100%;
  height: 100%;
  object-fit: contain;

 
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  filter: brightness(0) saturate(100%) invert(27%) sepia(97%) saturate(720%) hue-rotate(120deg) brightness(90%) contrast(92%);

  transform: scale(1.1);
}
@media (max-width: 764px) {
  body{
        padding: 110px 1% 0;
  }
 
  .about-container {
    gap: 1rem;
  }
  .nav-wrapper{
    left: 1%;
    right: 1%;

  }
}