/* Color Palette */
:root {
  --zaffre: #0818A8;
  --royal-blue: #0818A8;
  --white: #fff;
  --black: #070707;
  --sand: #e6e6e6;
  --royal-blue: #0096FF;
  --grey: #808080;
  --bright-blue: #0096FF;
}

/* Base Styles */
body {
  font-family: "Gentium Plus", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: var(--sand);
}

/* Basic Header Styling */


/* Header Styling */


.navbar .nav-link {
  font-weight: 600;
  margin-left: 1rem;
  color: #333 !important;
}

.navbar .nav-link.active {
  color: #ffffff !important;
}

/* Header styling when scrolled */
.header.scrolled {
  background-color: var(--white); /* Change color after scroll */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Darker shadow after scroll */

}

.header.scrolled .navbar-nav .nav-link {
  color: var(--bright-blue); /* White color for nav links */
  text-decoration: none;
  font-size: 1.1rem;
  margin: 0 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.header.scrolled .navbar-nav .nav-link.active{
  color: var(--black) !important; /* Highlight the active link */
  font-weight: bold; /* Optional: Make it bolder for emphasis */
  border-bottom: 3px solid var(--bright-blue); /* Add a marker under the link */
  padding-bottom: 5px; /* Ensure spacing between the text and the underline */
}

/* Default header style */
#main-header {
  position: relative;
  width: 100%;
  background-color: var(--bright-blue);
  color: white;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1000;
}

/* Lighter header style */
#main-header.scrolled {
  background-color: var(--white); /* Lighter background color */
  color: var(--black); /* Adjust text color */
}

/* Hero Section */




/* Bootstrap-specific Styling for Navbar on smaller screens */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center; /* Center-align links on smaller screens */
  }

  .navbar-collapse {
    background-color: var(--zaffre); /* Make navbar background match header */
  }

  .navbar-toggler {
    border-color: var(--white); /* Make toggle icon gold */
  }

  .navbar-toggler-icon {
    background-color: var(--white); /* Toggle icon color */
  }
}


/* Carousel Image Styling */
.carousel-item img {
  object-fit: cover;  /* Ensures the image covers the full height and width */
  width: 100%;  /* Makes the image responsive */
  height: 100vh;  /* Makes the image cover the full viewport height */
  object-position: center;  /* Centers the image within the container */
}

/* Caption Styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);  /* Adds a shadow for better readability */
  width: 90%;  /* Ensures that the text doesn't overflow in small screens */
}

/*.carousel-caption{
  background: rgba(103,103,103,0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(103,103,103,0.15);
  border-radius: 30px;
}*/
/* Header Text Styling */
.carousel-caption h2 {
  font-size: 3rem;
  font-family: "Gentium Plus", serif;
  font-weight: bold;
  animation: typing 0.7s steps(59, end), blink 0.5s step-end infinite;
}

/* Typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blinking cursor effect */
@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: black;
  }
}

/* Paragraph Text Styling */
.carousel-caption p {
  font-size: 1.5rem;
  font-family: "Gentium Plus", serif;
}

/* Carousel Control Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);  /* Makes the arrows light-colored */
}

.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.carousel-inner {
  border-radius: 10px;  /* Rounded corners for the carousel */
}

/* Styling buttons on the Hero section */
.carousel-caption .btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  margin: 10px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Primary button styling */
.carousel-caption .btn-primary {
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  border-color: var(--white);
  
}

.carousel-caption .btn-primary:hover {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  border-color: var(--bright-blue);
  color: var(--white);
}

/* Secondary button styling */
.carousel-caption .btn-secondary {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  border-color: var(--bright-blue);
  color: var(--white);

}

.carousel-caption .btn-secondary:hover {
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  border-color: var(--white);
  color: white;
}

/* Media Queries for Responsiveness */

/* Medium devices (tablets) */
@media (max-width: 768px) {

  .carousel-caption{
    display: flex !important;
    flex-direction: column;
  }
  .carousel-caption h2 {
    font-size: 2rem;  /* Smaller font size for tablet devices */
  }

  .carousel-caption p {
    font-size: 1rem;  /* Smaller font size for paragraph text */
  }
}

/* Small devices (phones) */
@media (max-width: 576px) {
  .carousel-caption{
    display: flex !important;
    flex-direction: column;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;  /* Even smaller font size for small screens */
  }

  .carousel-caption p {
    font-size: 0.9rem;  /* Smaller paragraph font size for mobile */
  }

  /* Adjust the width of the caption to fit better on smaller screens */
  .carousel-caption {
    width: 60%;
  }

  /* Adjust button size for mobile screens */
  .carousel-caption .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}


.logo{
  height:10vh;
  width: 20vh;
}

/* Service Cards Styles */
.service-card {
  background-color: var(--royal-blue);
  color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card h4 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
  color: var(--black);
}

.service-card p {
  font-family: 'Gentium', serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}

.service-card .btn {
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  color: var(--white);
  border: none;
}

.service-card .btn:hover {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  color: var(--white);
  border: none;
}


.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image inside service card */
.service-image {
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }
  
  .service-card h4 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}

/* Testimonials Section Styling */
.testimonials {
  background-color: var(--white);
  padding: 60px 20px;
}

.introduction-section {
  display: flex;
  align-items: center; /* Vertically aligns content in the middle */
  justify-content: center; /* Centers the content horizontally */
  text-align: center; /* Align text to the center */
  height: 100vh; /* Full viewport height */
  background: linear-gradient(to bottom, var(--sand), var(--white)); /* Optional gradient background */
  padding: 20px; /* Add padding for spacing */
  position: relative;
}

.introduction-section1 {
  display: flex;
  align-items: center; /* Vertically aligns content in the middle */
  justify-content: center; /* Centers the content horizontally */
  text-align: center; /* Align text to the center */
  background: linear-gradient(to bottom, var(--sand), var(--white)); /* Optional gradient background */
  padding: 20px; /* Add padding for spacing */
  position: relative;
}

.introduction-section .content {
  transform: translateY(20%); /* Move the text slightly down to "hang" */
  max-width: 600px; /* Limit the width for better readability */
  color: var(--black); /* Adjust text color */
}

.introduction-section h2 {
  font-size: 2.5rem;
  font-family: 'Lora', serif;
  margin-bottom: 15px;
}

.introduction-section p {
  font-size: 1.2rem;
  line-height: 1.6;
}


.section-title {
  font-size: 2.5rem;
  color: var(--zaffre);
  margin-bottom: 40px;
  font-weight: bold;
}

/* Testimonial Card Styling */
.testimonial-card {
/*  background-color: white;*/
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 10px auto;
  position: relative;
  background: rgba(255,255,255,0.2);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--royal-blue);
  margin: 15px 0;
}

.client-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--royal-blue);
  margin-top: 10px;
}

/* Carousel Controls Positioning */
.carousel-control-prev,
.carousel-control-next {
  top: 50%; /* Center the buttons vertically */
  transform: translateY(-50%);
  width: 5%; /* Make buttons more compact */
}

/**/

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 15px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .client-name {
    font-size: 1rem;
  }
}


.carousel-inner {
  text-align: center;
/*  padding: 30px 0;*/
}

.carousel-item footer {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
  color: var(--royal-blue);
}

.blog-highlights .blog-card {
 background: rgba(55,86,53,0.5);
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
border: 1px solid rgba(55,86,53,0.25);
  color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.blog-highlights .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-highlights .blog-card a {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
}

footer {
  background-color: var(--royal-blue);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 1rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 20px;
  }
}

.about-section {
  padding: 60px 20px;
}

.about-card {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.about-card p {
  margin-bottom: 15px;
}

/* Values Section */
.values-section {
  background-color: var(--sand);
  padding: 60px 20px;
}

.value-card {
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  margin: 10px;
}

.value-title {
  font-size: 1.5rem;
  color: var(--zaffre);
  margin-bottom: 15px;
}

.services{
  background: var(--white);
  width: 100%;
}

.services .container .mt-5{
  margin-top: 0px !important;

}

@media (min-width: 576px) {
    .container, .container-sm {
         max-width: none !important; 
          margin-top: 0px !important;

    }
}
.services-hero {
  background-color: var(--royal-blue);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.services-hero .hero-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.services-hero .hero-subtitle {
  font-size: 1.2rem;
}

/* Services Section */
.services-section {
  padding: 60px 20px;
}

.service-card {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  margin-bottom: 30px;
}

.service-card .card-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 5px solid var(--sand);
}

.service-card .service-title {
  font-size: 1.5rem;
  color: var(--zaffre);
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--grey);
}

.btn-sunlit-gold {
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  color: var(--white);
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 25px;
}

.btn-sunlit-gold:hover {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  color: white;
}

/* Contact Hero Section */
.contact-hero {
  background-color: var(--zaffre);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-hero .hero-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-hero .hero-subtitle {
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
}

.contact-card {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  text-align: left;
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--zaffre);
}

.map-placeholder {
   background: rgba(244,227,207,0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(244,227,207,0.15);
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.btn-sunlit-gold {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  color: var(--white);
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 25px;
}

.btn-sunlit-gold:hover {
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  color: white;
}



.nav-link.active {
  color: var(--royal-blue) !important; /* Highlight the active link */
  font-weight: bold; /* Optional: Make it bolder for emphasis */
  border-bottom: 3px solid var(--white); /* Add a marker under the link */
  padding-bottom: 5px; /* Ensure spacing between the text and the underline */
}


.btn-learn-more {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  background-color: var(--zaffre);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 30px;
}

.btn-learn-more:hover {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}

/* Blog Page Styling */
.blog-page {
  padding: 60px 0;
  background-color: var(--sand); /* Light background for the blog page */
}

.section-title {
  font-size: 2.5rem;
  color: var(--zaffre);
  margin-bottom: 40px;
}

.blog-card {
  background-color: var(--sand);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card-content h3 {
  font-size: 1.8rem;
  color: var(--zaffre);
  margin-bottom: 10px;
}

.blog-card-content p {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.6;
}

.blog-card-content .btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  color: var(--white);
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
}

.blog-card-content .btn:hover {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  color: var(--white);
  border-color: var(--white);
}

/* Pagination button */
.btn-sunlit-gold {
  background: linear-gradient(to left, var(--zaffre), var(--bright-blue));
  color: var(--white);
  border-radius: 30px;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-sunlit-gold:hover {
  background: linear-gradient(to right, var(--zaffre), var(--bright-blue));
  color: var(--white);
}

/* Filter Dropdown */
.filter-options {
  margin-bottom: 20px;
  text-align: center;
}

.filter-options select {
  padding: 10px;
  font-size: 1rem;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid var(--black);
}

.filter-options button {
  padding: 10px 20px;
  background-color: var(--zaffre);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.filter-options button:hover {
  background-color: var(--white);
  color: var(--black);
}

.booking-container {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;

}


/* Styling for each step */
.step {
  display: none;
}

.step.active {
  display: block;
  width: 100%;
}

label, input, select {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
  padding: 3px;
}

input select option{
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.booking-container button {
  background-color: var(--zaffre);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}

.booking-container button:hover {
  background-color: var(--white);
}

.booking-container .btn-container{
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
.booking-container button.next-btn {
  display: flex;

}

.booking-container button.prev-btn {
  display:flex;
}

.booking-container button.submit-btn {
  width: 100%;
  background-color: var(--royal-blue);
}

/* Date & Time Section */
#time-slots {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

#time-slots div {
  padding: 10px;
  background-color: var(--bright-blue);
  cursor: pointer;
}

#time-slots div.available {
  background-color: #0ee86c;
}

#time-slots div.selected {
  background-color: #7054c7;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-container {
    width: 100%;
    padding: 10px;
  }
}

.single-post-card img{
  border-radius: 10px;
  margin-bottom: 20px;
}

.single-post-card h2{
  text-transform: uppercase;
}

.step-contain{
  margin-bottom: 20px;
}