/*importing google fonts*/

@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

 * {
    margin:0;
    padding: o;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
 }

 :root {
    /*colors*/
    --white-color: #fff;                  
    --dark-color: #252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /*font size*/
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-1: 1.5rem;
    --font-size-x1: 2rem;
    --font-size-xx1: 2.3rem;

    /*font weight*/
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600:
    --font-weight-bold: 700;

    /*Border radius*/
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50px;

    /* Site max width*/
    --site-max-width: 1300px;

 }

 html {
    scroll-behavior: smooth;

 }


/* Styling for whole site*/

 ul{
    list-style: none;
 }

 a {
    text-decoration: none;
 }

button {
    cursor: pointer;
}

img {
    width: 100%;
 }

 .section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
 }

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-x1);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto;
    border-radius: var(--border-radius-s);
    background: darkgoldenrod;
}

 /*Navbar styling*/

 header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--dark-color);
 }

 header .navbar{
    display: flex;
    padding:10px;
    align-items: center;
    justify-content: space-between;
 }

 .navbar .nav-logo .logo-text{
    color: wheat;
    font-size: var(--font-size-x1);
    font-weight: var(--font-weight-semibold);
 }

 .navbar .nav-menu {
    display: flex;
    gap: 10px;
 }

 .navbar .nav-menu .nav-link {
    padding:10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);

    transition: 0.3s ease;
 }

 .navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
     border-radius: var(--border-radius-m);
    background: darkgoldenrod;

 }

 .navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
 }


 /* Base Styles (Small Screens / Mobile) artisan signup*/
.btn-artisan {
  display: inline-block;
  background-color: darkgoldenrod; /* Artisan Orange */
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 15px;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 13px; /* Smaller text for small screens */
  transition: background 0.3s ease;
}

.btn-artisan:hover {
  background-color: var(--dark-color);
}

/* Medium Screens (Tablets - 768px and up) */
@media (min-width: 768px) {
  .btn-artisan {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 15px;
  }
}

/* Big Screens (Desktops - 1024px and up) */
@media (min-width: 1024px) {
  .btn-artisan {
    padding: 12px 28px;
    font-size: 17px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
}

/* hero section styling */

 .hero-section {
    min-height: 100vh;
    background: var(--dark-color);
 }

 .hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: green;
    justify-content: space-between;
 }

 .hero-section .hero details .title {
    font-size: var(--font-size-xx1);
    color: var(--secondary-color);
    font-family: "poppins","sans-serif" ;
 }

 .hero-section .hero-details .subtitle {
    margin-top: 20px;
    max-width: 70%;
    font-size: var(--font-size-x1);
    font-weight: var(--font-weight-semibold);
 }

 .hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 24px;
    font-size: var(--font-size-m);
 }

 .hero-section .hero-details .button{
    padding: 5px 5px;
    border: 5px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s;
 }

 .hero-section .hero-details .button:hover,
 .hero-section .hero-details .contact-us {
    /*color: var(--white-color);*/
    border-color: darkgoldenrod;
    background: transparent;
 }

.hero-section .hero-details .contact-us:hover {
    color: var(--primary-color);
    border-color: darkgoldenrod;
    background: darkgoldenrod;
}


 .hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 0;
    margin-left: 0;
 } 

.about-section{
    padding: 120px 0;
    /* color: wheat; */
    background:var(--white-color);
}

 .about-section .section-content{
   display: flex;
   gap: 50px;
   align-items: center;
   justify-content: space-between; 
 }

.about-section .about-image-wrapper .about-image {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
 }


.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details {
    max-width: 50;
}


.about-section .about-details .text {
    line-height: 30px;
    margin:50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
 }

.about-section .social-link-list{
display: flex;
gap: 25px;
justify-content: center; 

}

.about-section .social-link-list .social-list {
    color: var(--primary-color);
    font-size: var(--font-size-s);
}

.about-section .social-link-list .social-link:hover {
    color: var(--secondary-color);
}

/* menu section styling */
.menu-section {
    color: var(--white-color);
    background: var(--dark-color);
    padding: 50px 0 50px;
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
}

.menu-section .menu-list .menu-item {
  display: flex;
  text-align: center;
  align-items: center; 
  flex-direction: column;
  justify-content: center;
  width: calc(100% / 3 - 110px); 
}

.menu-section .menu-list .menu-item .menu-image {
 max-width: 83%;
 aspect-ratio: 1; 
 margin-bottom: 15;
 object-fit: contain;  
}

.menu-section .menu-list .menu-item .name {
margin: 12px 0;
font-size: var(--font-size-1);
font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);
}

/* Testimonial Styling */
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper {
    overflow: hidden;
    margin:0 60px 50px;
}

.testimonials-section .testimonial {
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name{
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
    line-height: 25px;   
}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
    color: var(--primary-color);
}

.gallery-section {
    padding: 100 0 100px;
}

.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery-section .gallery-list .gallery-item {
    width: calc(100%/ 3 - 32px);
}

.gallery-section .gallery-item .gallery-image {
overflow: hidden;
width: 100px;
height: 100px;
cursor: zoom-in;
transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.5);
}
    
/* contact us section styling */
.contact-section {
    padding-left: 20px;
    padding-right: 50px;
    background: var(--light-pink-color);
}

.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
display: flex;
gap: 10px;
margin: 20px 0;
align-items: center;
}

.contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
   width: 100%; 
   height: 50px;
   padding: 0 12px;
   outline: none;
   margin-bottom: 16px;
   background: var(--white-color);
   border-radius: var(--border-radius-s);
   border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form {
    max-width: 500px;
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--secondary-color);
}

.contact-section .contact-form textarea {
    height: 150px;
    padding: 0 12px;
    resize: vertical;
}


.contact-section .contact-form .submit-button {
    padding: 10px 20px;
    margin-top: 10px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-color);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
} 

.contact-section .contact-form .submit-button:hover {
    color: var(--primary-color);
    background: transparent;
}

/* Footer styling */
.footer-section {
   padding: 20px 0;
   background: var(--dark-color); 
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list {
   display: flex; 
   gap: 25px;
}

c .social-link-list .social-link {
    font-size: var(--font-size-1);
}

.footer-section .social-link-list .social-link:hover,
 .footer-section .policy-text .policy-link:hover {
    color: var(--secondary-color);
}

.footer-section .policy-text .separator {
margin: 0 5px;  
color: var(--white-color);
}

/* styling of categories container */

/* .categories-container {
  padding: 20px;
  font-family: sans-serif;
  text-align: center;
} */

/* .filter-buttons {
  margin-bottom: 30px;
} */

/* .btn {
  border: none;
  outline: none;
  padding: 12px 20px;
  background-color: #f1f1f1;
  cursor: pointer;
  border-radius: 10px;
  margin: 5px;
  transition: 0.3s;
} */

/* .btn:hover, .btn.active {
  background-color: #666;
  color: white;
} */

/* .category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
} */

.cat-card {
  background-color: darkgoldenrod;
  color: #ffffff;
  width: 150px;
  line-height: 100px;
  text-align: center;
  border-radius: 15px;
  display: none; /* Hidden by default, JS will show them */
}

/* The class added by JS to show items */
.show {
  display: block;
}
/* search bar styling */

.search-wrapper {
  max-width: 400px;
  margin: 100px auto;
  font-family: 'Segoe UI', sans-serif;
}

.input-holder {
  position: relative;
  display: flex;
  align-items: center;
}

#mainSearch {
  width: 100%;
  padding-top: -5%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

#mainSearch:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.search-icon {
  position: absolute;
  right: 15px;
  color: #aaa;
}

/* The Secret Sauce: Hidden by default */
#resultsList {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none; /* Fully hidden */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Show when this class is added */
#resultsList.active {
  display: block;
}

#resultsList li {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

#resultsList li:last-child {
  border-bottom: none;
}

#resultsList li:hover {
  background-color: #f8f9fa;
  color: var(--secondary-color);
}

/* Top rated artisans section */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: #f9f9f9; }

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--dark-color);
}

/* THE GRID SYSTEM */
/* .artisan-grid {
  display: grid;
  gap: 5px; */
  /* Default: 1 column (Small Screens/Mobile) */
  /* grid-template-columns: repeat(4, 1fr);
} */

/* Medium Screens (Tablets) - 2 Columns */
/* @media (min-width: 600px) {
  .artisan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

/* Big Screens (Desktops) - 4 Columns */
/* @media (min-width: 1024px) {
  .artisan-grid {
    grid-template-columns: repeat(4, 1fr);
  }
} */

/* Card Styling */
/* .artisan-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.artisan-card:hover {
  transform: translateY(-5px);
}

.artisan-image {
  position: relative;
  height: 180px;
}

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

.rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
  color: #ff9800;
}

.artisan-info {
  padding: 20px;
  text-align: center;
}

.artisan-info h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: #222;
}

.craft {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.view-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.view-btn:hover {
  background-color: #0056b3;
} */

/* styling of Faq */

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  color: gold;
  font-family: sans-serif, Tahoma;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 18px;
  text-align: left;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}

.faq-question:hover {
  background-color: #f9f9f9;
  color: var(--secondary-color);
}

/* Style the icon */
.icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* This is the hidden answer panel */
.faq-panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-panel p {
  padding: 15px 0;
  color: #666;
  line-height: 1.6;
}

/* Class to rotate the + into an x (or just rotate) */
.active .icon {
  transform: rotate(45deg);
}

/* available artisan styling */
:root {
  --primary: #25D366; /* WhatsApp Green */
  --secondary: #007bff;
  --dark: #333;
}

body { font-family: 'Segoe UI', sans-serif; background: #f8f9fa; margin: 0; }

.directory-container { max-width: 1100px; margin: 50px auto; padding: 15px; }
.section-header { text-align: center; color: var(--dark); margin-bottom: 40px; }

/* --- THE GRID LAYOUT --- */
.artisan-grid {
  display: grid;
  gap: 5px;
  /* Default: 1 column (Small Screens/Mobile) */
  grid-template-columns: repeat(2, 1fr);
}

/* Medium Screens (Tablets) - 2 Columns */
@media (min-width: 600px) {
  .artisan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Big Screens (Desktops) - 4 Columns */
@media (min-width: 1024px) {
  .artisan-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.artisan-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.artisan-card:hover { transform: translateY(-10px); }
.avatar { font-size: 50px; margin-bottom: 15px; }

.book-btn {
  background: darkgoldenrod;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}
/* upload container */
.upload-container {
  max-width: 400px;
  margin: 40px auto;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.upload-area {
  margin: 20px 0;
  padding: 30px;
  border: 2px dashed #e67e22;
  border-radius: 10px;
  cursor: pointer;
  background-color: #fff9f4;
  transition: all 0.3s ease;
}

.upload-area:hover {
  background-color: #fdebd0;
  border-color: #d35400;
}

.upload-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

#imagePreview {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  margin-top: 10px;
}

.btn-submit {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #27ae60;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center; justify-content: center;
}

.modal-content {
  background: white; padding: 40px; border-radius: 20px;
  width: 90%; max-width: 400px; position: relative;
}

.modal-content input {
  width: 100%; padding: 12px; margin: 10px 0 20px;
  border: 1px solid #ddd; border-radius: 8px;
}

.whatsapp-submit {
  width: 100%; background: var(--primary);
  color: white; border: none; padding: 15px;
  border-radius: 8px; font-size: 16px; font-weight: bold;
  cursor: pointer;
}

.close { position: absolute; right: 20px; top: 15px; cursor: pointer; font-size: 24px; }

/* vision and mission sction */
.vision-mission {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-header p {
  color: #e67e22; /* Artisan Accent Color */
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Grid Layout */
.content-grid {
  display: flex;
  flex-direction: column; /* Mobile first */
  gap: 30px;
}

/* Individual Cards */
.card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.8rem;
  color: darkgoldenrod;
  margin-bottom: 15px;
}

.card p {
  line-height: 1.6;
  color: var(--dark-color);
}

/* Medium & Large Screens (Tablets and Desktops) */
@media (min-width: 768px) {
  .content-grid {
    flex-direction: row; /* Side by side */
  }
  
  .card {
    flex: 1; /* Equal width cards */
  }
}


/* hireme */
/* Basic Button Style */
.btn-primary {
  padding: 12px 24px;
  background-color: darkgoldenrod;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
}

/* Modal Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Modal Box */
.modal-content {
  background-color: grey;
  margin: 15% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Option Buttons inside Modal */
.hire-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.option-btn {
  padding: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.option-btn:hover {
  background: darkgoldenrod;
  color: white;
}


/* Responsive media query coode for max width 1024px */
@media screen and (max-width: 1024px) {
    .menu-section .menu-list{
        gap: 60px;
    }
    .menu-section .menu-list .menu-item {
        width: calc(100% / 3 - 60px);
}

}

/* Responsive media query coode for max width 900px */
 @media screen and (max-width: 900px) {
    :root {
    --font-size-m: 1rem;
    --font-size-1: 1.3rem;
    --font-size-x1: 1.5rem;
    --font-size-xx1: 1.8rem;
    }

body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
}

/* vision and mission setion */

/* Section Container */
.vision-mission {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-header p {
  color: #e67e22; /* Artisan Accent Color */
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Grid Layout */
.content-grid {
  display: flex;
  flex-direction: column; /* Mobile first */
  gap: 30px;
}

/* Individual Cards */
.card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.8rem;
  color: darkgoldenrod;
  margin-bottom: 15px;
}

.card p {
  line-height: 1.6;
  color: var(--dark-color);
}

/* Medium & Large Screens (Tablets and Desktops) */
@media (min-width: 768px) {
  .content-grid {
    flex-direction: row; /* Side by side */
  }
  
  .card {
    flex: 1; /* Equal width cards */
  }
}


    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-x1);  
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 10px;
    }

    .navbar #menu-open-button {
        color: var(--dark-color);
    }

    
    .navbar .nav-menu {
    display: block;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    display:flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: var(--white-color);
    transition: left 0,2s ease;
}

body.show-mobile-menu .navbar .nav-menu {
    left: 0;
}

.navbar .nav-menu .nav-link {
    color: var(--dark-color);
    display: block;
    margin-top: 20px;
    font-size: var(--font-size-1);
}
.hero-section .section-content {
    gap: 30px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
 }

.hero-section .hero-details :is(.subtitle, .description), .about-section .about-details, .contact-section .contact-form {
width: 100%;  
}

 .hero-section .hero-image-wrapper {
    padding-top: 0%;
    max-width: 800px;
    margin-right: 0;
    object-fit: cover;
    }

.about-section .section-content {
gap: 70px;
flex-direction: column;
}

.hero-section .hero-details :is(.subtitle, .description), .about-section .about-details {
    max-width: 100%;
}

.about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
}

  .menu-section .menu-list{
        gap: 30px;
    }
    .menu-section .menu-list .menu-item {
        width: calc(100% / 2 - 30px);
}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 200px;
}

.gallery-section .gallery-list {
gap: 40px;
}

.gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 -30px);
}

.contact-section .section-content {
    align-items: center;
    flex-direction: column-reverse;
}



 }


 /* Responsive media query coode for max width 640px */
@media screen and (max-width: 640px) {
    .menu-section .menu-list{
        gap: 60px;
    }
    
    .menu-section .menu-list .menu-item {
        width: 100%;
    }
    /* .gallery-section .gallery-list .gallery-item{
        width: 100%;
    } */
        
    .testimonials-section .slider-wrapper{
      margin: 0 0 30px;  
    }


.testimonials-section .swiper-slide-button {
    display: none;
}

.footer-section .section-content {
   flex-direction: column; 
   gap: 20px;
}

}


/* hero overlay */

/* Hero Section Container */
.hero-section {
  position: relative;
  height: 80vh; /* Covers 80% of the viewport height */
  min-height: 500px;
  background-image: url('images/about.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Optional: adds a parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  color: wheat;
  text-align: center;
}

/* Dark Overlay to make text pop */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Black with 50% transparency */
  z-index: 1;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 2; /* Sits above the overlay */
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-primary {
  background-color: darkgoldenrod;
  color: white;
  border: 2px solid white;
  border-radius: 20px;
}

.btn-primary:hover {
  background-color: var(--dark-color);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 20px;
}

.btn-secondary:hover {
  background-color: white;
  color: #333;
  border-radius: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* commission fee */
/* body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f5f6f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
} */

/* .booking-card {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 12px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
} */

/* h2 { color: #1c1e21; margin-top: 0; }
.notice { font-size: 14px; color: #606770; line-height: 1.4; } */

/* label {
    display: block;
    font-weight: 600;
    margin: 15px 0 5px;
    font-size: 14px;
} */

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

.payment-summary {
    background: #f0f2f5;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

/* .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
} */

.total {
    border-top: 1px solid #ced4da;
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

/* .btn-whatsapp {
    width: 100%;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
} */

.btn-whatsapp:hover {
    background-color: darkgoldenrod;
}



:root {
  --accent: #8d6e63; /* Earthy artisan tone */
  --text: #2c2c2c;
  --bg: #fdfaf7;
}

.artisan-carousel {
  padding: 50px 20px;
  background-color: var(--bg);
  overflow: hidden;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.service-card {
  min-width: 300px;
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: var(--text);
}

.btn-service {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-service:hover {
  opacity: 0.8;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-nav button {
  background: none;
  border: 1px solid var(--text);
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
}




