@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Yeseva+One&display=swap");

:root {
  --header-font: "Yeseva One", serif;
  --body-font: "Josefin Sans", sans-serif;
 
  --primary-color: #d6ccc2;
  --secondary-color: #6f4d4d;
  --text-color: #3b2b2b;
  --heading-color: #222;
  --border-color: #4f3737;
  --background-color: #fbfefb;
  --light-bg: #f8f8f8;
  --navbar-color: #efe5dc;

  --black: #1c1c1c;
  --gray: #7e7e7e;
  --gray-light: #e4e4e4;
  --red: #b30000;
  --blue: #007bff;

  --font-size-base: 1rem;
  --font-size-md: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
  --font-size-lg: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
  --font-size-xl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
  --border-radius: 10px;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Main-Home Page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: var(--body-font);
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  text-align: center;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
}

body h1,
h2,
h3 {
  font-family: var(--header-font);
}
.main {
  margin-top: 4em;
}
/* Navbar Style */
.navbar {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--navbar-color) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
}
.navbar-toggler {
  max-width: 60px; /* Adjust as needed */
}


.navbar img {
  border-radius: 50%;
}

.navbar a:hover {
  text-decoration: underline;
}
#bookNowBtn {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--gray-light);
}
#bookNowBtn:hover {
  background-color: var(--border-color);
  text-decoration: none;
}
/* Main layout */
/* Ensure no unwanted horizontal scroll */
.hero-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-image: url('https://res.cloudinary.com/dpo4wcevn/image/upload/v1762993864/bg_qhcnux.jpg'); /* Ensure correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%; /* Prevents content from being too close to edges */
  overflow: hidden;
}

/* Overlay effect */
.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust transparency as needed */
  z-index: 0;
}

/* Main content stays centered */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  color: white;
}

/* Ensure navbar takes full width */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--navbar-color) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
}
.lead {
  font-size: 18px;
  font-weight: 400;
  max-width: 570px;
  padding: 15px;
  background: var(--navbar-color);
  color: var(--text-color);
  display: block;
  position: relative;
  text-align: center;
  transform: skew(-20deg); /* Skew effect to create parallelogram */
  margin: 30px auto;
}
/* Contact pictures container */
.contact-pics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

/* Large image container */
.pic-container.large {
  width: 300px;
  height: 510px;
}

/* Ensure the large image fills the container */
.large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Container for stacked images */
.pic-container.grande {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Smaller images */
.grande-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* Gallery Layout */
.gallery {
  display: flex;
  flex-direction: column; /* Stack elements */
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

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

/* Tall Image on Left */
.image-container.tall {
  width: 600px;
  height: 580px;
}

.big {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Right Column */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Text Box */
.text-box {
  width: 550px;
  height: 50px;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Medium Image */
.image-container.medium {
  width: 550px;
  height: 250px;
}

.medium-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* Small Images */
.small-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center; /* Centers small images */
  width: 100%; /* Ensure it takes full width */
}

.small {
  width: 100%;
  height: 125px;
  border-radius: 10px;
  object-fit: cover;
  max-width: 550px;
}

/* WhyUs Section */
.whyUs-container {
  display: flex;
  justify-content: center;
  align-items: center; /* Keep the entire container centered */
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}
.whyUsText p {
  border: 2px solid var(--light-bg);
  padding: 20px;
  border-radius: 12px;
  max-width: 650px;
  font-size: 20px;
  background-color: var(--navbar-color);
}
.whyUs {
  padding: 20px;
  border-radius: 12px;
  margin: 15px auto;
  font-size: 22px;
  max-width: 800px;
  width: 100%;
}


/* Heading Styling */
.header-whyUs {
  font-size: 32px;
  margin-bottom: 20px;
}
/* Left-align the UL while keeping the section centered */
.whyUs-list {
  list-style: none;
  padding: 0; 
  margin: 0;
  text-align: left;  /* Align list items to the left */
}

/* List Item Styling */
.whyUs-list li {
  font-size: 24px;
  line-height: 1.8;
  padding: 5px 0;
}


#bookServiceBtn {
  margin: 2em 0 2em 2em;
  padding: 20px 50px;
  background: var(--secondary-color);
  color: var(--gray-light);
}
#bookServiceBtn:hover,
#bookServiceBtn-service:hover {
  background: var(--border-color);
}

/* Footer Section */
.footer-container {
  display: flex;
  justify-content: space-between; /* Matches the main-container layout */
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%; /* Ensures it spans the full width */
  margin: auto; /* Centers the footer */
  padding: 40px 20px;
  background-color: var(--navbar-color);
}
.contact-footer-item {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
}
.contact-footer-item a {
  color: var(--text-color);
}
.contact-footer-item a:hover {
  color: var(--blue);
}

.footer-info,
.map-container {
  display: inline-block;
  vertical-align: middle; /* Aligns both divs properly */
  width: 45%; /* Adjust width to fit next to each other */
  text-align: left;
  padding: 20px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}
.footer-info h3 {
  margin-bottom: 10px;
}

.social-links a {
  margin: 0 10px;
  font-size: 24px;
  color: #333;
  transition: color 0.3s;
}
.social-links a:hover {
  color: var(--blue);
}
footer #copyRight {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 20px;
  font-size: 14px; /* Adjust the font size */
  color: var(--text-color); /* Adjust the text color */
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  .text-center p {
    font-size: 14px;
  }
  /* Stack elements for mobile */
  .main-container,
  .gallery,
  .contact-pics,
  .grid {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2em;
  }

  /* Consistent image sizing */
  .large,
  .big,
  .grande-img,
  .medium-img,
  .small {
    width: 320px;
    object-fit: cover;
  }

  .large {
    margin-right: 20px;
  }

  .small-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto; /* Prevents overflow */
    margin-top: 40px;
  }

  /* Maintain proper height ratios */
  .grande-img {
    height: 255px; /* Half of 510px */
  }
  .medium-img {
    height: 290px; /* Half of 580px */
  }
  .small {
    height: 125px;
    max-width: 320px;
  }
  .text-box {
    width: 100%;
    max-width: 320px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center it horizontally */
  }
  
  /* Why Us section */
  .whyUsText p {
    max-width: 320px;
    font-size: 13px;
    padding: 15px;
  }
  .whyUs-container {
    margin-top: -40px;
  }
  .whyUs {
    width: 320px;
    min-width: 300px;
    font-size: 13px;
    text-align: center;
    
  }

  .whyUs h2 {
    font-size: 22px;
  }
  .whyUs-list li {
    font-size: 16px;
  }
  /* Book Service Button */
  #bookServiceBtn {
    margin: 2em 0;
  }

  /* Footer */
  .footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
    
  }

  .contact-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    
  }

  .contact-footer-item p {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
  }
  #email{
    margin-right: 18px;
  }
  .footer-info {
    width: 100%;
  }

  .map-container {
    width: 100%;
    max-width: 350px;
  }

  .map-container iframe {
    height: 200px;
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
  }

  .social-links {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .footer-info,
  .map-container,
  .social-links {
    width: 100%;
    text-align: center;
  }
}

/* iPad / Medium Screen (768px - 1200px) */
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  h1 {
    font-size: 40px;
    text-align: center;
  }

  .main-container,
  .gallery {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 2em;
  }

  .lead {
    max-width: 630px;
  }

  .pic-container.grande {
    width: 320px;
  }
  .grande-img {
    width: 320px;
  }

  /* Arrange gallery images in a row */
  .grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
  }
  .image-container.tall {
    width: 300px;
    height: 580px;
  }

  .big {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  /* Medium images */
  .image-container.medium {
    width: 400px;
    height: auto;
  }
  /* Text Box should match medium-img width */
  .text-box {
    width: 100%;
    max-width: 320px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center it horizontally */
  }
  /* Medium Image */
  .image-container.medium {
    width: 320px;
    height: 250px;
  }
  .medium-img {
    width: 320px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }
  /* Small Images */
  .small-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .small {
    width: 320px;
    height: 125px;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Why Us section stays at the bottom */
  .whyUs-container {
    display: flex;
    justify-content: center;
    width: 630px;
    margin-top: 30px;
  }

  .whyUs {
    width: 100%;
    max-width: 630px;
    font-size: 18px;
    text-align: center;
  }
}







/* Contact */
/* Contant Info */
.contact-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.contact-item a {
  color: var(--text-color);
  font-style: italic;
}

.contact-item a:hover {
  color: var(--blue);
}

.contact-details {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.hours {
  margin-top: 40px;
  font-size: 18px;
}

/* FAQ */
.faq-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.contact-faq-wrapper {
  display: flex;
  justify-content: center; /* Space evenly */
  align-items: stretch; /* Make both sections equal height */
  gap: 100px; /* Add spacing between sections */
  max-width: 1200px; /* Limit width */
  margin: auto; /* Center */
  padding: 20px;
}

.contact-container,
.faq-container {
  flex: 1; /* Equal width */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 470px; /* Ensures both have equal height */
  min-width: 530px;
}
.faq-container {
  text-align: left;
}
/* 📌 Mobile Responsive Design */
@media (max-width: 1170px) {
  .contact-faq-wrapper {
    gap: 50px; /* Reduce spacing */
    flex-direction: column; /* Stack items vertically */
    gap: 20px;
  }

  .contact-container,
  .faq-container {
    min-width: 80%; /* Allow containers to take up full width */
    padding: 15px; /* Adjust padding */
  }
}

@media (max-width: 480px) {
  .contact-container,
  .faq-container {
    padding: 10px; /* Less padding for smaller screens */
    width: 100%; /* Full width */
    max-width: 100%; /* Ensure it doesn't exceed screen width */
  }
}
/* Send Message Form */
.contact-form {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-form a {
  color: var(--text-color);
  text-decoration: underline;
  font-style: italic;
}

.contact-form a:hover {
  color: var(--blue);
}

.contact-form p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.input-group textarea {
  height: 150px;
  resize: none;
}

.send-btn {
  background: black;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
  margin-bottom: 2em;
}

.send-btn:hover {
  background: #444;
}
/* 📌 Mobile Responsive Form */
@media (max-width: 1170px) {
  .contact-form {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .contact-container,
  .faq-container {
    padding: 15px;
  }
}








/* GALLERY PAGE */
.gallery-page {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

/* Gallery Layout */
.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 4em;
  min-width: 0;
  grid-template-areas:
    "big1 small1"
    "small2 big2";
}

/* Styling for Big Images */
.big-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Small Images Grid */
.small-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  height: 100%;
}
/* Ensure Small Images Fit Properly */
.small-images-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1 / 1; /* Keeps images square */
}

/* Hover Effect */
.gallery-page img {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
}

.gallery-page img:hover {
  -webkit-filter: brightness(70%);
  filter: brightness(70%);
  cursor: pointer;
}
/* Safari Fix */
@supports (-webkit-touch-callout: none) {
  .small-images-grid img {
    height: 100%;
  }
}

/* Grid Areas */
.big-image:first-of-type {
  grid-area: big1;
}

.small-images-grid:first-of-type {
  grid-area: small1;
}

.small-images-grid:last-of-type {
  grid-area: small2;
}

.big-image:last-of-type {
  grid-area: big2;
}

/* Inner Gallery Layout */
.gallery-inside {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

/* Large Center Image */
.img-large {
  grid-column: span 2;
  grid-row: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Small Images */
.img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Wide Image */
.img-wide {
  grid-column: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
/* Full Screen Mode */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-modal img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 10001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
}

.lightbox-nav .prev,
.lightbox-nav .next {
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* RESPONSIVE DESIGN */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
  .gallery-page {
    max-width: 95%;
    padding: 15px;
  }

  .gallery-layout {
    grid-template-columns: 1fr 1fr; /* Maintain 2-column layout */
    gap: 15px;
  }

  
}

/* Mobile Screens */
@media (max-width: 768px) {
  .gallery-page {
    max-width: 90%;
    padding: 10px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "big1"
      "small1"
      "big2"
      "small2";
    gap: 15px;
  }


  .small-images-grid img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 8px;
  }
  

  .big-image img, 
  .img-large, 
  .img-small, 
  .img-wide {
    border-radius: 8px;
  }

  h2 {
    font-size: 22px;
  }
}


/* Small Phones */
@media (max-width: 480px) {
  .gallery-page {
    max-width: 100%;
    margin: 10px auto;
    padding: 10px;
  }
 
  .big-image img, 
  .small-images-grid img, 
  .img-large, 
  .img-small, 
  .img-wide {
    border-radius: 5px;
  }

  h2 {
    font-size: 20px;
  }
}













/* SERVICE PAGE STYLES */
.service-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Heading and Bordered Paragraph */
.service-header {
  text-align: center;
  text-align: center;
  font-size: 35px;
  color: var(--text-color);
  text-transform: uppercase;
}

.service-menu .dropdown {
  text-align: center;
  margin-bottom: 2rem;
}

.service-photo {
  width: 250px;
  height: 250px;
  margin: 0 auto 1rem;
}
@media (max-width: 768px) {
  .service-photo {
    width: 150px;
    height: 150px;
  }
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Optional: for a circular image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Style for the paragraph under the heading */
.products-section p,
.services-section p {
  border: 2px solid var(--light-bg); /* Add a border */
  padding: 15px;
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 10px auto;
  border-radius: 10px;
  background-color: var(--light-bg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for a soft effect */
}

/* Dropdown Menu Styles */
.service-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: var(--background-color);
  padding: 20px 0;
}

.service-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 60px;
}

.service-menu li {
  position: relative;
}

.service-menu .dropbtn {
  text-decoration: none;
  padding: 10px 55px; /* reduce padding so arrow doesn't get pushed too far right */
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  position: relative; /* IMPORTANT: arrow attaches to this */
  width: fit-content;
  margin-top: 10px; /* add spacing from the image */
}

/* Add arrow icon */
.service-menu .dropbtn::after {
  content: "▾"; /* clean dropdown chevron */
  font-size: 14px;
  position: absolute;
  right: 10px;    /* sits inside the button */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--background-color);
  min-width: 200px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 5px 0;
}

.service-menu .dropdown-content li {
  padding: 10px;
  text-align: left;
}

.service-menu .dropdown-content li a {
  text-decoration: none;
  color: var(--text-color);
  padding: 10px 15px;
  display: block;
  transition: 0.3s;
}

.service-menu a:hover {
  background-color: var(--text-color);
}

.service-menu .dropdown-content li a:hover {
  background-color: var(--border-color);
  color: white;
  border-radius: 5px;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Updated Modal Styling */
.modal-content {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 40%;
  max-width: 400px; /* Ensures it doesn't get too big on larger screens */
  margin: 15% auto;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 16px;
  margin: 8px 0;
}

.service-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 20px;
  margin-top: 10px;

  background: linear-gradient(135deg, #c69cff, #9b6cff);
  color: #fff;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(155, 108, 255, 0.25);

  transition: all 0.25s ease;
}
.service-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(155, 108, 255, 0.35);
  opacity: 0.95;
}

.service-modal-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(155, 108, 255, 0.25);
}




.close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
}
/* Paragraph */
.services-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 95%;
  box-sizing: border-box; /* Prevent padding from affecting the width */
}

.photo-service-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.photo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.photo {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-top-left, 
.photo-top-right {
  height: 300px;
}

.photo-bottom {
  height: 400px;
}

.photo-service-text {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  z-index: 2;
  text-align: center;
  align-self: center;
  justify-self: center;
}

.photo-service-text .subtitle {
  color: #c7a17a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.photo-service-text .main-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.learn-more-btn {
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid #000;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: var(--black);
  color: #fff;
}

/* ----------------- MOBILE RESPONSIVE ----------------- */
@media (max-width: 1059px) {
  .photo-service-text .main-title {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
}
@media (max-width: 768px) {
  .photo-service-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }

  .photo-top-left {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    
  }

  .photo-service-text {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 0.5rem;
  }

  .photo-top-right {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    
  }
  .photo-top-left,
  .photo-top-right,
  .photo-bottom {
    height: 250px;
  }
  .photo-bottom:nth-of-type(1) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    
  }

  .photo-bottom:nth-of-type(2) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    
  }

  .photo-bottom:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    
  }


  .photo-service-text .main-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .learn-more-btn {
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 463px) {
  .photo-service-text .main-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}
#bookServiceBtn-service {
  display: flex;
  justify-content: center;
  max-width: 400px;
}

/* PRODUCTS SECTION */
.products-section {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--light-bg); /* Use your existing color variables */
}

.products-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--text-color);
}

.product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--light-bg);
}

.product-info {
  text-align: left;
}

.product-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 18px;
  margin-bottom: 5px;
}

.highlight {
  color: var(--highlight-color);
  font-weight: bold;
}

/* Coming soon styling */
.coming-soon {
  opacity: 0.6;
}

/* MOBILE RESPONSIVE DESIGN */
@media screen and (max-width: 1338px) {
  .service-header {
    font-size: 32px;
    margin-top: 1.5em;
  }

  .services-section p {
    font-size: 17px;
  }

  .service-menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .service-menu ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .service-menu .dropbtn {
    width: 100%;
    padding: 15px 65px;
  }

  .service-menu .dropdown-content {
    width: 40%;
    text-align: center;
  }

  .modal-content {
    width: 40%;
    max-width: 350px;
    padding: 10px;
  }

  .photo-service-gallery {
    flex-wrap: wrap;
    gap: 10px;
  }

  .photo-service-gallery img {
    width: 180px;
    height: 180px;
  }

  .products-section {
    padding: 30px 15px;
  }

  .product {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .product-image img {
    width: 120px;
    height: 120px;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .product-info p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .service-header {
    font-size: 28px;
  }

  .product-section p {
    font-size: 14px;
    padding: 10px;
    max-width: 400px;
  }

  .service-menu .dropbtn {
    font-size: 14px;
    padding: 15px 65px;
  }

  .photo-service-gallery img {
    width: 150px;
    height: 150px;
  }



  .product {
    padding: 10px;
  }

  .product-image img {
    width: 100px;
    height: 100px;
  }

  .product-info h3 {
    font-size: 18px;
  }

  .product-info p {
    font-size: 14px;
  }
}
#bookServiceBtn-service {
  max-width: 300px;
}








/* ABOUT US */
/* General Page Layout */
.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Heading and Bordered Paragraph */
.about-header {
  text-align: center;
  margin-bottom: 20px;
}
.about-header h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.about-header p {
  border: 2px solid var(--light-bg);
  padding: 30px;
  font-size: 20px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
}

/* Three Photos in a Row */
.photo-about-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.photo-about-gallery img,
.instagram-media {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* Our Techs Section */
.our-techs {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}


.our-techs h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.tech-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
}
.name {
  font-weight: bold;
  margin-top: 5px;
  font-size: 20px;
}
.profile-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.shortIntro {
  border: 2px solid var(--light-bg);
  background-color: var(--background-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 10px;
  max-width: 800px;
  max-height: 300px;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  border-radius: 12px;
  margin-bottom: 10px;
}
.see-more-reviews {
  text-align: center;
  margin-bottom: 60px;
}

.btn-reviews {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background-color: #0073e6;  /* Fresha blue color */
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-reviews:hover {
  background-color: #005bb5; /* Darker blue on hover */
}

/* Style the Instagram embeded section */
.explore-instagram {
  text-align: center;
  padding: 20px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
  .about-header h2 {
    font-size: 30px;
  }
  .about-header p {
    font-size: 18px;
    padding: 20px;
  }
  .photo-about-gallery {
    flex-direction: column;
    align-items: center;
  }
  .tech-profile {
    flex-direction: column;
    text-align: center;
  }
  .profile-pic img {
    width: 250px;
    height: 250px;
  }
  .shortIntro {
    max-width: 90%;
    padding: 40px 10px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .about-header h2 {
    font-size: 28px;
  }
  .about-header p {
    font-size: 16px;
    padding: 15px;
  }
  .photo-about-gallery img,
  .instagram-media {
    max-width: 90%;
  }
  .tech-profile {
    flex-direction: column;
  }
  .profile-pic img {
    width: 200px;
    height: 200px;
  }
  .shortIntro {
    max-width: 90%;
    font-size: 18px;
    padding: 30px 10px;
  }
}

@media screen and (max-width: 480px) {
  .about-header h2 {
    font-size: 24px;
  }
  .about-header p {
    font-size: 14px;
    padding: 10px;
  }
  .profile-pic img {
    width: 180px;
    height: 180px;
  }
  .shortIntro {
    font-size: 16px;
    padding: 20px 10px;
  }
}






/* Blog Page */
.blog-image {
  width: 100%; /* Make image responsive */
  max-width: 800px; /* Limit max width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra spacing */
  margin: 10px auto; /* Center the image */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.articles, .post-det{
  font-size: var(--font-size-base);
  margin: 40px auto 40px; /* Increased margin-top for separation */
  max-width: 70%;
  display: flex;
  flex-direction: column; /* Display articles vertically */
  justify-content: center;
  align-items: center; /* Center the content horizontally */
  padding: 20px; /* Add some breathing room */
  box-sizing: border-box; /* Ensure padding doesn't affect max-width */
  
  /* Background image */
  background-image: url('https://res.cloudinary.com/dpo4wcevn/image/upload/v1762993865/blog-bg_owdqpb.jpg'); /* Replace with correct path */
  background-size: cover; /* Ensures full coverage */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Avoid repetition */
  background-blend-mode: darken;

  /* Add an overlay with reduced opacity */
  background-color: rgba(0, 0, 0, 0.07); /* Optional color overlay */
  
  /* Styling */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0); /* Soft shadow for depth */
  color: var(--text-color); /* Ensure text is readable over the background */
}


.articles a {
  color: var(--text-color);
}
.article-det {
  font-size: 24px;
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.4);
  color: #333; /* softer black for readability */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 2rem auto;

}
@media (max-width: 550px) {
  .article-det {
    font-size: 14px;
  }
}
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  font-family: "Playfair Display", serif;
  font-size: var(--font-size-base);
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.7rem 0.75rem;
  margin-bottom: 1rem;
}
.blog-btn {
  background-color: black;
  border: none;
  color: var(--gray-light);
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 15px;
}

.btn-delete {
  padding: 10px 16px;
  background-color: var(--red);
}

/* Layout */
.container {
  max-width: 982px;
  margin: 0 auto;
  padding: 0 10px;
}

.main {
  padding: 20px 0;
}

.articles__heading {
  margin-top: 4rem;
  font-weight: 400;
}

.article-ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: clamp(1.13rem, calc(1.08rem + 0.22vw), 1.25rem);
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 2rem;
}

.article-list__date {
  font-size: 1rem;
  color: var(--gray);
  width: 100px;
  display: inline-block;
  width: 260px;
}

.article-ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  margin: 18px 0;
}

@media only screen and (min-width: 768px) {
  .article-ul li a {
    flex-direction: row;
    align-items: center;
  }

  .article-list__date {
    text-align: right;
  }
}

.article-ul li {
  font-size: 24px;
  cursor: pointer;
  transition: filter 0.1s;
}

.article-ul li:not(:last-child) {
  border-bottom: 1px solid var(--gray-light);
}

.article-ul li:hover {
  filter: none;
}

.article-ul:hover li {
  filter: blur(3px);
}

.article-ul:hover li:hover {
  filter: none;
}

.article {
  white-space: pre-wrap;
}

/* Dashboard Admin */
.admin-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-posts {
  padding: 0;
  margin: 0;
}

.admin-post-controls form {
  display: inline-block;
}

.admin-posts li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

/* Blur Effect */
.pagination {
  font-size: 1.3rem;
  color: var(--gray);
  text-decoration: none;
  margin-top: 40px;
  display: inline-block;
}
.pagination__button {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  transition: 0.3s;
}
.pagination__button:hover {
  background-color: #0056b3;
}
.pagination__number {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: #f4f4f4;
  color: #333;
  transition: 0.3s;
}

.pagination__number:hover {
  background-color: #ddd;
}

.pagination__number.active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}
.pagination:hover {
  color: var(--black);
}

.header__button button:hover {
  border: 2px solid var(--black);
}
@media only screen and (min-width: 768px) {
  .header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo menu button";
  }
}











/* Modal Background */
/* Overlay */
.modal-pop {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.45);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal-content-pop {
  background: white;
  width: 90%;
  max-width: 520px;
  padding: 30px;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 30px;
  cursor: pointer;
  color: #444;
}

/* Text content */
.modal-text h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-text h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.modal-text h4 {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Buttons */
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.modal-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.modal-book-btn {
  background: #d36fa8;
}

.insta-btn {
  background: black;
}

/* Mobile */
@media (max-width: 480px) {
  .modal-content-pop {
    padding: 22px;
    max-width: 94%;
  }

  .modal-text h1 {
    font-size: 24px;
  }

  .modal-text h2 {
    font-size: 18px;
  }

  .modal-text h4 {
    font-size: 15px;
  }

  .modal-btn {
    font-size: 16px;
    padding: 12px 0;
  }
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}




/* Phone Modal */
.phone-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.phone-modal-content {
  background: white;
  padding: 20px;
  margin: 20% auto;
  width: 250px;
  text-align: center;
  border-radius: 10px;
}

button {
  margin: 5px;
  padding: 10px;
  width: 180px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #ddd;
}





