/* General Reset */
body {
  margin: 0;
  font-family: Muli, BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  overflow-x: hidden;
}


.book-now-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ffcc00; /* Bright accent color */
  color: #000; /* Text color */
  text-decoration: none; /* Remove underline */
  font-weight: bold;
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.book-now-button:hover {
  background-color: #000; /* Change to black on hover */
  color: #fff; /* White text on hover */
}


/* Book Order Section */
.book-order {
  background-color: #f4f4f4;
  padding: 4rem 1rem;
  text-align: center;
}

.book-order-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book-order-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the page */
  right: 20px; /* Distance from the right side of the page */
  z-index: 1000; /* Ensure it appears above other elements */
  background-color: #323433; /* WhatsApp green background */
  border-radius: 50%; /* Circular button */
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.whatsapp-float img {
  width: 50px; /* Icon size */
  height: 50px; /* Icon size */
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Slight zoom-in on hover */
}


.book-order-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.book-cover {
  flex: 1;
  max-width: 300px;
}

.book-cover-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.book-details {
  flex: 2;
  max-width: 500px;
}

.book-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.book-pricing {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}

.price {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.note {
  font-size: 1.1rem;
  color: #777;
}

.order-button-container {
  text-align: center;
}

.razorpay-embed-btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .book-order-content {
    flex-direction: column;
    text-align: center;
  }
}







/* Footer Policies Styling */
.footer-policies {
 
  padding: 2rem;
  color: white;

}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #f4f4f4;
}

.policy-links {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.policy-links li {
  margin: 0.5rem 0;
}

.policy-links a {
  text-decoration: none;
  color: #f4f4f4;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.policy-links a:hover {
  color: #1e90ff; /* Hover color */
}

@media (min-width: 768px) {
  .footer-policies {
   
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: left;
  }

  .footer-policies .footer-heading {
    margin-right: 2rem;
  }

  .policy-links {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .policy-links li {
    margin: 0.5rem 1rem;
  }
}






/* General Navbar Styling */
.navbar {
  background-color: #000; /* Black background */
  display: flex;
  justify-content: space-between; /* Space between logo and menu items */
  align-items: center; /* Vertically align content */
  height: 70px; /* Navbar height */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  position: fixed; /* Fix the navbar to the top */
  top: 0; /* Position it at the very top */
  width: 100%; /* Stretch across the full width of the screen */
  z-index: 1000; /* Ensure it stays above other elements */
  padding: 0 20px; /* Add padding for spacing */
}

/* Logo Styling */
.logo img {
  height: 100px; /* Smaller size for the logo */
  width: auto; /* Maintain aspect ratio */
  display: block; /* Prevent extra spacing */
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0 15px; /* Spacing between menu items */
}

.nav-links li a {
  text-decoration: none;
  color: #fff; /* White text */
  font-weight: 600; /* Semi-bold font weight */
  font-size: 14px;
  text-transform: uppercase; /* Uppercase text */
  line-height: 70px; /* Vertically center text */
  transition: color 0.3s ease; /* Smooth color change on hover */
}

.nav-links li a:hover {
  color: #ffcc00; /* Accent hover color */
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none; /* Hide by default */
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin: 3px 0;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none; /* Hide links initially */
    flex-direction: column; /* Stack links vertically */
    position: absolute; /* Overlay links */
    top: 70px; /* Below the navbar */
    right: 0;
    background-color: #000; /* Match navbar background */
    width: 100%; /* Full width for mobile */
    text-align: center;
    z-index: 1000;
  }
  
  
  .navbar {
 
  width: 91%; /* Stretch across the full width of the screen */
 
}
  

  .nav-links li {
    margin: 0; /* Remove horizontal spacing for mobile */
    line-height: 50px; /* Adjust line height */
  }

  .menu-toggle {
    display: flex; /* Show toggle button on mobile */
  }

  .nav-links.active {
    display: flex; /* Show links when active */
  }
}

/* Center Align Navbar for Large Screens */
@media screen and (min-width: 769px) {
  .navbar {
    justify-content: center; /* Center-align navbar */
  }

  .logo {
    position: absolute; /* Keep the logo centered */
    left: 20px; /* Position it slightly to the left */
  }
}

/* Add padding to body to avoid content overlap with fixed navbar */
body {
  padding-top: 70px; /* Matches the navbar height */
}





/* Caption Styling */
.caption {
 width: 31%;
    position: absolute;
    bottom: 8%;
    left: 82%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 5px;
}

.caption h2 {
  font-size: 36px;
  margin: 0 0 10px;
}

.caption p {
    padding-top:20px;
  font-size: 18px;
  margin: 0;
}

/* Slider Container */
/* Slider Container */
.slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Initially hidden */
  transition: opacity 1.5s ease-in-out; /* Smooth fade transition */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fit the container while maintaining aspect ratio */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .slider {
    height: 216px; /* Adjust slider height for smaller screens */
  }

  .book-now-button {
    display: block;
    width: 72%;
    margin: 8px 0;
    padding: 10px 0;
    font-size: 9px;
    text-align: center;
  }

  .caption h2 {
    font-size: 16px;
  }

  .caption p {
    font-size: 8px !important;
  }

  .author-heading {
    font-size: 22px !important;
  }
}


/* Caption Styling */
.caption {
width: 31%;
    position: absolute;
    bottom: 8%;
    left: 82%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 5px;
}

.caption h2 {
  font-size: 24px;
  margin: 0 0 10px;
}

.caption p {
  font-size: 18px;
  margin: 0;
}

/* Responsive Design */




/* About Section */
.about {
  background-color: #121212; /* Dark background for contrast */
  color: #fff; /* White text */
  padding: 50px 20px; /* Spacing around the section */
  text-align: left; /* Center align content */
}




.about-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffcc00;
}

.about-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  margin-top:15%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text-container {
  flex: 2;
}

.about-text {
  font-size: 16px;
  line-height: 1.6;
  color:white;
  margin-bottom: 16px;
  
}

.about-text span {
  font-size: 24px;
  color: #ffcc00; /* Highlighted color for "Fire Ant Studios" */
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  
  .about-text {
  font-size: 12px !important;
  
}

  .about-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-text-container {
    text-align: justify;
  }
}









/* About Author Section */
/* About Author Section */
.about-author {
  background-color: #121212; /* Slightly lighter dark background for distinction */
  color: #fff; /* White text */
  padding: 50px 20px;
  text-align: center;
}

.author-container {
  max-width: 90%;
  margin: 0 auto;
}

.author-heading {
  /* font-family: 'Playfair Display', serif; Elegant serif font */
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffcc00; /* Accent color for the heading */
}

.author-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap; /* Ensure layout adapts to smaller screens */
}

.author-photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; /* Add spacing below image on smaller screens */
  
}

.author-photo {
  width: 200px; /* Rectangular photo width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Slightly rounded corners */
  margin-bottom: 10px; /* Space between photo and name */
  padding-left: 10px;
}

.author-name {
  /* font-family: 'Playfair Display', serif; */
  font-size: 20px;
  color: #ffcc00; /* Match the accent color */
  margin: 0;
}

.author-info {
  width: 75%;
  margin-left: 20px;
  text-align: left;
}

.author-text {
  /* font-family: 'Arial', sans-serif; Simple, readable font */
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ffff; /* Slightly lighter text for readability */
}

@media screen and (max-width: 768px) {
  .author-content {
    flex-direction: column; /* Stack photo and text vertically */
  }
  
  
  
  
.about-image img {
  width: 100%;
  
}



    
.author-photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; /* Add spacing below image on smaller screens */
  width:100%;
}



  .author-info {
     width: 100%;
    margin-left: 0;
    text-align: center; /* Center text on smaller screens */
  }

  .author-text {
    text-align: justify;
    font-size:12px;
  }
  .author-container {
      width:100%;
    }
}



/* General Styles */
.book-order-container {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.book-order-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Flexbox for Columns */
.book-order-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Column Styling */
.book-cover {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-cover-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.book-description-column {
  flex: 2;
}

.book-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.book-pricing .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.book-details-column {
  flex: 1;
}

.book-details-table {
  width: 93%;
    border-collapse: collapse;
    font-size: 12px;
}

.book-details-table th, 
.book-details-table td {
  padding: 5px;
  text-align: left;
  border: 1px solid #ddd;
}

.book-details-table th {
  background-color: #f1f1f1;
  font-weight: bold;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .book-order-columns {
    flex-direction: column;
    align-items: center;
  }

  .book-cover,
  .book-description-column,
  .book-details-column {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .caption h2 {
        font-size: 10px;
    }

  .book-description {
    text-align: center;
  }

  .book-pricing .price {
    text-align: center;
  }

  .book-details-table th, 
  .book-details-table td {
    font-size: 0.9rem;
    padding: 8px;
    color:white;
  }
  
  
  
  .book-order-columns {
  display: flex; /* Create a flex container */
  justify-content: space-between; /* Add space between columns */
  align-items: center !important; /* Align items to the top */
  gap: 20px; /* Add spacing between columns */
}
}

/* Tablet and Small Laptop Styles */
@media screen and (max-width: 1024px) {
  .book-order-columns {
    flex-wrap: wrap;
  }

  .book-cover,
  .book-description-column,
  .book-details-column {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .book-details-column {
    width: 100%;
  }
}




.parallax {
    background-image: url(images/Ele-Duo-Water-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 384px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .parallax {
        background-attachment: scroll; /* Prevents fixed background issue on mobile */
        background-size: cover; /* Keeps the image scaled properly */
        height: 250px; /* Adjust height for mobile */
    }
}

/* Add a subtle overlay for better text readability */
.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2; /* Ensures text is above the overlay */
}

.parallax h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.parallax p {
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Footer Styling */
/* Footer Styling */
.footer {
  background-color: #121212; /* Dark background */
  color: #fff; /* White text */
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffcc00; /* Accent color for headings */
}

.footer-contact,
.footer-social {
  flex: 1;
  min-width: 300px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-item i {
  color: #ffcc00; /* Icon accent color */
  font-size: 20px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffcc00;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  color: #fff;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ffcc00;
}

/* Credit Section Styling */
.footer-credits {
  text-align: center;
  font-size: 14px;
  color: #bbb; /* Light text color */
  margin-top: 20px;
}

.footer-credits a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-credits a:hover {
  text-decoration: underline; /* Hover effect for the link */
}

.book-order-container {
  max-width: 1200px; /* Restrict maximum width */
  margin: 0 auto; /* Center the container */
  padding: 20px; /* Add padding for spacing */
}

.book-order-columns {
  display: flex; /* Create a flex container */
  justify-content: space-between; /* Add space between columns */
  align-items: flex-start; /* Align items to the top */
  gap: 20px; /* Add spacing between columns */
}

.book-cover img {
  max-width: 100%; /* Ensure the image fits its column */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Subtle shadow */
}

.book-description-column {
  flex: 1; /* Allow this column to expand */
  margin-right: 20px; /* Add spacing on the right */
}

.book-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333; /* Text color */
  margin-bottom: 20px;
  text-align:justify;
}

.book-details-column {
  flex: 1; /* Allow this column to expand */
}

.book-details-table {
  width: 100%;
  border-collapse: collapse;
}

.book-details-table th,
.book-details-table td {
  border: 1px solid #ddd; /* Cell border */
  padding: 10px;
  color:white;
}

.book-details-table th {
  background-color: #1e1e1e; /* Header background */
  font-weight: bold; /* Bold header */
  color:white;
}

.book-details-table td {
  background-color: #1e1e1e; /* Content background */
}

@media screen and (max-width: 1024px) {
    .book-cover {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .book-cover img {
        width: 100%; /* Adjust the image size for smaller screens */
        height: auto;
    }
}











