.container {
  position: relative;
  text-align: center;
  margin-top: 20px; /* Added to ensure consistent spacing */
}

.logo {
  position: absolute;
  top: 50%;
  left: 10%;  /* move it left from 20% to 10% */
  transform: translate(0, -50%);
  z-index: 1;
  opacity: 0.5;
  width: 130px;
  height: 130px;
}


h1 {
  position: relative;
  z-index: 2;
  color: #bfa0fa;
  font-family: 'Dancing Script';
  font-size: 80px;
}

h2 { 
  position: relative;
  z-index: 2;
  color: black;
  font-size: 35px;
  text-align: center; /* Centers the text horizontally */
}

body {
  background-color: #f0e5f0;
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 2px;
  background-color: #bfa0fa;
  margin-bottom: 20px;
}

/* Fixed Navbar */
.navbar {
  position: relative;
  display: flex;
  justify-content: center; /* Center the nav items */
  align-items: center;
  margin-bottom: 20px; /* Reduce space below the navbar */
  padding-right: 0; /* Remove unnecessary padding */
}

nav ul {
  display: flex; /* Ensure horizontal alignment */
  justify-content: center; /* Center the nav links */
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

nav ul li {
  display: inline-block;
  font-family: Brush Script MT, Brush Script Std, cursive;
  font-size: 30px;
  margin: 0 40px; /* Balanced spacing */
}

.instagram-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  z-index: 1;
}

/* Styling for Other Elements */
.instagram-text {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: black;
  font-family: Brush Script MT, Brush Script Std, cursive;
  z-index: 1;
}

.quote {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: bold !important;
  font-style: normal;
  text-align: center;
  padding-top: 70px;
}

.gallery-link {
  font-family: Brush Script MT, Brush Script Std, cursive;
  font-size: 40px;
  text-align: center;
}

.main-gallery {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.picture {
  width: 350px;
  height: 350px;
  border: 5px solid #bfa0fa;
}

.main-services {
  display: flex;
  justify-content: space-evenly; /* Ensure equal spacing */
  align-items: flex-start; /* Align items at the top */
  gap: 20px; /* Add spacing between services */
}

/* ...existing code... */
.service {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align content */
    width: 350px;
    height: auto; /* Allow height to adjust based on content */
    text-align: center;
    margin: 0; /* Remove unnecessary margins */
}

.service p {
    position: relative; /* Remove absolute positioning */
    margin-top: 10px; /* Add spacing above the text */
    font-size: 25px; /* Adjust font size */
    font-family: Brush Script MT, Brush Script Std, cursive;
    color: black;
    font-weight: bold;
}
/* ...existing code... */

p {
  font-family: Brush Script MT;
  font-size: 30px;
  text-align: left;
  padding-top: 50px;
  padding-bottom: 20px;
}

.services-text {
  padding-top: 0;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

* {
  box-sizing: border-box;
}

/* Slideshow */
.slideshow-container {
  max-width: 400px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.mySlides img {
  width: 200%;
  max-height: 800px;
  object-fit: cover;
}

.slideshow-text-container {
  display: flex;
  justify-content: flex-start; /* Align items horizontally */
  align-items: center; /* Align items vertically */
  gap: 20px; /* Add spacing between slideshow and text */
}

.slideshow-container {
  flex-shrink: 0; /* Prevent resizing */
  margin-left: 400px; /* Ensure it starts at the left */
}

.slideshow-text {
  flex: 1;
  max-width: 500px;
  margin-top: -30px; /* Remove negative margin to align properly */
  margin-right: 300px;
}

/* Navbar Link Styling */
.navbar a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  margin: 0 15px;
  text-decoration: none;
}

.navbar a:hover {
  color: #bfa0fa;
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 80%;
  margin: 20px auto; /* Reduce space above the about-section */
  text-align: left;
}

.about-image {
  width: 50%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.about-text {
  width: 50%;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  font-family: Brush Script MT, Brush Script Std, cursive;
}

.about-border {
  margin-top: 50px;
}

li {
  font-size: 19px;
  font-family: Brush Script MT, Brush Script Std, cursive;
  color: black;
  margin-bottom: 10px; /* Adds space between list items */
}

/* Gallery Styling */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
  justify-content: center;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}
/* Change font for everything else */
body, p, li, nav ul li, .quote, .gallery-link, .service p, .instagram-text, .navbar a, .about-text {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: black; /* Changed back to black */
}
.navigation-bar li a {
  font-weight: bold;
}
.button-container {
  text-align: center;
  margin-top: 10px; /* Adjust spacing above the button */
  margin-bottom: 30px; /* Add spacing below the button */
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bfa0fa; /* Example: Pink background */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #bfa0fa; /* Example: Lighter pink on hover */
}

/* ...existing code... */
.bold-item {
    font-weight: bold; /* Makes the specific list item bold */
}
/* ...existing code... */

/* ...existing code... */

body:not(.home-page) .instagram-icon {
  margin-top: -10px; /* Adjust the position for other pages */
  position: absolute;
}
.additional-services {
  text-align: center; /* Center the text */
  font-size: 30px; /* Adjust font size */
  font-family: "Playfair Display", serif; /* Match the site's font */
  margin-top: 300px; /* Add spacing above the text */
  color: #333; /* Adjust text color */
}

/* ...existing code... */
.additional-services-note {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-top: 5px;
    font-family: 'Playfair Display', serif;
}
/* ...existing code... */

/* ...existing code... */
.instagram-icon {
    position: absolute; /* Ensure consistent positioning */
    right: 20px; /* Align to the right */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust vertical alignment */
    font-size: 30px; /* Standardize size */
    z-index: 1; /* Ensure it appears above other elements */
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .container {
        text-align: center;
        margin-top: 20px; /* Adjust spacing for smaller screens */
    }

    .logo {
        width: 80px; /* Further reduce logo size */
        height: 80px;
        left: 50%; /* Center the logo */
        transform: translate(-50%, -50%);
    }

    h1 {
        font-size: 40px; /* Reduce heading size */
        margin-top: 10px; /* Add spacing above heading */
    }

    .navbar {
        flex-direction: column; /* Stack navigation items vertically */
        margin-bottom: 10px; /* Reduce space below the navbar on mobile */
    }

    .navigation-bar {
        flex-direction: column; /* Stack links vertically */
        padding: 0;
        gap: 10px; /* Add spacing between links */
    }

    .navigation-bar li {
        margin: 5px 0; /* Reduce spacing between links */
        font-size: 18px; /* Further reduce font size */
    }

    .instagram-icon {
        position: fixed; /* Fix the position */
        bottom: 20px; /* Place it at the bottom */
        right: 20px; /* Align it to the right */
        font-size: 25px; /* Adjust size for mobile */
        z-index: 1000; /* Ensure it stays above other elements */
    }

    .slideshow-container {
        margin: 0 auto; /* Center slideshow */
        width: 100%; /* Make slideshow responsive */
    }

    .slideshow-text-container {
        flex-direction: column; /* Stack slideshow and text vertically */
        gap: 10px; /* Add spacing */
        padding: 0 15px; /* Add padding for better readability */
    }

    .slideshow-text {
        margin: 0; /* Remove unnecessary margins */
        text-align: center; /* Center text */
        font-size: 16px; /* Adjust font size for readability */
    }

    .main-services {
        flex-direction: column; /* Stack services vertically */
        gap: 15px; /* Add spacing between services */
        padding: 0 15px; /* Add padding for better alignment */
    }

    .service {
        width: 100%; /* Make services responsive */
        text-align: center; /* Center content */
    }

    .picture {
        width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust gallery layout */
        gap: 8px; /* Reduce spacing */
        padding: 0 10px; /* Add padding for better alignment */
    }

    .appointment-container {
        width: 90%; /* Make appointment container responsive */
        margin: 20px auto; /* Adjust spacing */
        padding: 20px; /* Add padding for better readability */
    }

    .cta-button {
        font-size: 18px; /* Adjust button size */
        padding: 10px 20px; /* Adjust padding */
    }

    .additional-services {
        font-size: 16px; /* Adjust font size */
        margin-top: 20px; /* Reduce spacing above text */
        padding: 0 15px; /* Add padding for better readability */
    }

    body.booking-page .navbar {
        flex-direction: column; /* Stack navigation items vertically */
        align-items: flex-start; /* Align items to the left */
        padding-left: 1px; /* Move navbar further to the left */
        gap: 10px; /* Add spacing between links */
        text-align: left; /* Ensure text aligns to the left */
    }

    body.booking-page .navigation-bar {
        flex-direction: column; /* Stack links vertically */
        padding: 0;
        gap: 10px; /* Add spacing between links */
        text-align: left; /* Ensure text aligns to the left */
    }

    body.booking-page .navigation-bar li {
        margin: 5px 0; /* Reduce spacing between links */
        font-size: 18px; /* Adjust font size for mobile */
    }

    .about-section {
        margin-top: 10px; /* Reduce space above the about-section on mobile */
    }

    .about-section p {
        font-size: 14px; /* Reduce font size for mobile */
    }

    .about-section h2 {
        font-size: 18px; /* Reduce heading size for mobile */
    }

    .about-section li {
        font-size: 14px; /* Reduce list item font size for mobile */
    }

    .about-image {
        margin-top: -800px; /* Bring the image higher up on mobile */
    }

    .about-section h2 {
        text-align: center; /* Center the heading on mobile */
        width: 100%; /* Make the element span the full width */
        text-align: center; /* Center the text */
    }

/* ...existing code... */

/* ...existing code... */
.main-services a {
    text-decoration: none; /* Remove underline from links */
}
/* ...existing code... */

/* ...existing code... */
.service p:hover, .appointment-text:hover, .services-heading:hover {
    color: #bfa0fa; /* Change text color on hover */
    cursor: pointer; /* Add pointer cursor for hover effect */
}
/* ...existing code... */

/* ...existing code... */
body.home-page .instagram-icon {
    position: absolute; /* Ensure consistent positioning */
    right: 20px; /* Align to the right */
    top: 30%; /* Center vertically */
    transform: translateY(-50%); /* Adjust vertical alignment */
    font-size: 25px; /* Standardize size */
    z-index: 1; /* Ensure it appears above other elements */
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .navbar {
        margin-bottom: 2px; /* Remove more space below the navbar on mobile */
    }

    .about-section {
        margin-top: -100px; /* Remove more space above the about-section on mobile */
    }
}
/* ...existing code... */





}