html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh; /* Ensures the full viewport height */
  background: url('../images/aa1a.jpg')
              no-repeat  center  fixed; 
  background-size: cover; /* Makes the image cover the full page */
  font-family: 'Georgia', serif;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  
}
body {
  font-family: 'Georgia', serif;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Transparent Navigation Bar */
header {
   /* Fix the header at the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensure it's on top */
  background: transparent; /* Semi-transparent */
  backdrop-filter: blur(5px);
  position: absolute;
    right: 0;
    left: 0;
    margin-top: 51px;
    
}


/* Navigation Menu */


.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px; /* Adjust the spacing between items */
}



.burger-menu {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
}

.burger {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 5px;
}

.nav-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.nav-menu a:hover {
  color: #ddd; /* Slight color change on hover */
}



/* Hero Section - Full Page Background */

.hero {
  width: 100%; /* Full width */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 0; /* Ensure no extra spacing */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 100px;
  padding: 20px;
}

.content h1 {
  font-size:2.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.08em;
 font-family: "Playwrite DE VA Guides", cursive;;
}

.content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-align: center;
  color: rgb(255 255 255 / 96%);
  font-weight: 100;
  font-family: "Playwrite AT Guides", cursive;
  
}

.content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgb(255 255 255 / 72%);
  font-style: italic;
}


/* Navigation Menu */
.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
/* Dropdown Menu */
.nav-menu li {
  position: relative;
}



.nav-menu li ul li {
  width: 100%;
}

.nav-menu li ul li a {
  color: #fff;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}

.nav-menu li ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu li:hover > ul {
  display: block;
}

/* For responsive dropdown */
@media (max-width: 1000px) {
  .nav-menu li ul {
    position: static;
  }
}

/* Social Icons */
.social-icons, .review-icons {
  display: flex;
  gap: 15px;

}

.social-icon, .review-icon {
  color: #fffafa;
  text-decoration: none;
  font-size: 1rem;
}

.social-icon:hover, .review-icon:hover {
  color: #000000;
}

.review-icons a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
  font-size: 1rem;
}

.review-icons a:hover {
  color: #8a8a7a;
}

/* Social and Reviews Links */
.social-links,
.reviews-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
}

.social-links a,
.reviews-links .review-item {
  color: #ffffff;
  text-decoration: none;
  padding: 3px 8px;
  font-size: 10px;
  text-transform: uppercase;
}

.social-links a:hover,
.reviews-links .review-item a:hover {
  color: #ddd;
}

.social:hover .social-links,
.reviews:hover .reviews-links {
  display: block;
}

.social-links li {
  border-top: 1px solid #fff;
}

.social-links li:first-child {
  border-top: none;
}

.nav-menu .social-links li::after {
  content: none !important;
}

.nav-menu .reviews-links li::after {
  content: none !important;
}
.section-title,
.strong-text {
  color: #a49d95;
font-size: 20px !important;
}

/* For screens up to 768px (Tablets & Phones) */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center the menu items */
    gap: 15px; /* Reduce spacing for a compact view */
  }

  .nav-menu li {
    width: 100%; /* Make list items take full width */
    text-align: center;
  }

  .nav-menu li:not(:last-child)::after {
    display: none; /* Remove vertical separators */
  }
}

/* For smaller screens up to 480px (e.g., iPhone 12 Pro) */
@media (max-width: 480px) {
  .nav-menu {
    gap: 10px; /* Reduce spacing further */
  }

  .nav-menu a {
    font-size: 14px; /* Increase readability on small screens */
    letter-spacing: 0.5px;
  }

  .content h1 {
    font-size: 40px;
  }

  .center-button button {
    width: 330px;
  }

  .divided-text {
    gap: 15px; /* Reduce spacing for a tighter layout */
    padding: 10px;
  }

  .left-text h3, .right-text h3 {
    font-size: 18px; /* Slightly smaller headings */
  }

  .left-text p, .right-text p {
    font-size: 14px; /* Adjust paragraph text for readability */
  }
}




@media (max-width: 950px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgb(0 0 0 / 68%);
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px 0;
    text-align: center;
  }

  .burger-menu {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
    align-items: center;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  /* Remove the pseudo-element when nav-menu is active */
  .nav-menu li:not(:last-child)::after {
    display: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with some transparency */
  z-index: 10; /* Ensure it appears above most elements */
  opacity: 0; /* Start invisible */
  visibility: hidden; /* Prevent interaction when hidden */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show the overlay when active */
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Ensure the menu is above the overlay */
.nav-menu {
  z-index: 11; /* Above the overlay */
}
.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.left-column, .right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;  /* Add space between squares */
  width: 40%;  /* Keep the width of each column around 50% of the container */
}
.service-square {
  width: 80%;  /* Narrower squares */
  padding: 15px;
  background-color: transparent;
  border: 1px solid #b1b1b1;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 auto;  /* Center the squares horizontally */
  position: relative;  /* Allow for absolute positioning of buttons below */
}

.service-square h3 {
  margin-bottom: 50px;
  font-size: 22px;
  color: #fff;
  font-family: "Charm", serif;
  font-weight: 400;
  font-style: normal;
}

.service-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 90px;
  font-family: "Charm", serif;
  font-weight: 400;
  font-style: normal;
}

.price {
  color: #fff;
}

.service-square p {
  color: #fff;
  margin: 10px 0;
  font-family: "Charm", serif;
  font-weight: 400;
  font-style: normal;
}

/* Buttons styled */
.buttons {
  width: 100%;
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  gap: 10px; /* Space between buttons */
  margin-top: 20px;
  padding-top: 10px; /* Adjust padding to align with square */
}

.btn {
  padding: 6px 10px;
  font-size: 16px;
  background-color: transparent;
  color: #fff;
  border: 2px solid white;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s;
  width: 100%; /* Ensure buttons fill the width of the square */
  font-family: "Charm", serif;
  font-weight: 400;
  font-style: normal;
}

.btn:hover {
  background-color: rgb(175, 146, 109);
  color: #000000;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
  }

  .left-column, .right-column {
    width: 100%;
  }

  .service-square {
    width: 90%; /* Slightly narrower on mobile */
  }

  .buttons {
    width: 100%;
  }
}
@media (max-width: 950px) {
  .social-links,
  .reviews-links {
    display: none !important;
  }
}
