/* General Reset */
/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Appointment Section */
#appointment {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#appointment h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 16px;
    color: #000;
}

input, select, button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

input[type="date"], input[type="time"] {
    max-width: 200px;
}

select {
    cursor: pointer;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

/* "Other Barber" Input */
#otherBarber {
    display: none;
}

/* Confirmation Message */
#confirmationMessage {
    background-color: #e7f5ff;
    color: #007bff;
    padding: 15px;
    border: 1px solid #007bff;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
}

.home {
    position: relative;
    background: url('your-background-image.jpg') no-repeat center center/cover; /* Replace with your background image */
    padding: 100px 20px;
    text-align: center;
}

.home .container {
    position: relative;
    background: #22202082; /* Adds a semi-transparent dark overlay */
    padding: 40px;
    border-radius: 10px;
    color: #fff; /* Ensures text is white for contrast */
}

.home .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px); /* Applies the blur effect to the background */
    z-index: -1; /* Places the blurred background behind the content */
}

.home h2 {
    color: #b08a2e; /* Ensures text is white for contrast */
}
.home p {
    color: #ffffff; /* Ensures text is white for contrast */
}

.about {
    position: relative;
    background: url('your-background-image.jpg') no-repeat center center/cover; /* Replace with your background image */
    padding: 60px 20px;
}

.about .container {
    position: relative;
    background: #22202082; /* Adds a semi-transparent dark overlay */
    padding: 40px;
    border-radius: 10px;
}

.about h2, .about h3, .about ul {
    color: #b08a2e; /* Ensures text is white for contrast */
}.about p{
    color: white;
}

.about .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px); /* Applies the blur effect to the background */
    z-index: -1; /* Places the blurred background behind the content */
}

.pricing-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }
  
  .pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    background-color: #000000;
  }
  
  .pricing-row:nth-child(even) {
    background-color: #726d6d;
  }
  
  .pricing-header {
    background-color: #222;
    color: #fff;
    font-weight: bold;
  }
  
  .pricing-type, .pricing-price {
    flex: 1;
    text-align: center;
  }
  
  
/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
 
    background-size: cover;
    overflow-y: auto; /* Allow scrolling */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensure content is spread out */
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px;
  color: #ffcb47;
  flex-grow: 1; 
  overflow: hidden; /* make sure blur doesn't overflow */
}

/* Add blurred background with opacity */
.container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("https://smartcdn.gprod.postmedia.digital/nexus/wp-content/uploads/2023/06/pm-495472225.jpg?quality=90&strip=all&w=944&h=708&type=webp&sig=P8pWPuRX0bzpUDFEQBL0Ug");
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  opacity: 0.5; /* control darkness / lightness */
  z-index: -1; /* behind the container content */
}


h1, h2, p, .falling-text {
    font-weight: bold;
   font-family: unset; /* Make text bold */
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #cfba2e; /* Darker text color */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

h2 {
  text-align: center;
    font-size: 2rem;
    color: #d4af37; /* Darker text color */
    margin-top: 20px;
 

    letter-spacing: 2px;
}

.falling-text {
    font-size: 1.5rem;
    color: #ffcb47;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    animation: bounceText 2s ease-out infinite;
    display: inline-block;
    margin-top: 30px;
}

@keyframes bounceText {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcb47;
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    transition: background-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.cta-button:hover {
    background-color: #e68a00;
}

.booking-form {
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 50%;
    background-color: #f9f9f9;
  }
  
  .booking-form label {
    font-size: 1em;
    display: block;
    margin-bottom: 8px;
  }
  
  .booking-form select, .booking-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .booking-form button {
    padding: 10px 20px;
    background-color: #ffcb47;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .booking-form button:hover {
    background-color: #007bff;
  }
  

/* Appointment Form */
.appointment-form {
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.appointment-form label {
    font-size: 1.2rem;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.appointment-form input, .appointment-form select, .appointment-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ffcb47;
    background-color: #333;
    color: #ffffff;
}

.appointment-form button {
    background-color: #ffcb47;
    cursor: pointer;
    font-size: 1.2rem;
}

.appointment-form button:hover {
    background-color: #e68a00;
}

/* Back to Home Button */
.back-to-home-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcb47;
    color: #0f0f0f;
    font-size: 1.5rem;
    border-radius: 50px;  /* Round the button */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;  /* Space from bottom */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    align-self: center; /* Center horizontally */
}

.back-to-home-btn:hover {
    background-color: #e68a00;
    transform: translateY(-5px); /* 3D lift effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);  /* Enhanced shadow for 3D effect */
}

.back-to-home-btn:active {
    transform: translateY(2px); /* Button sinks when clicked */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .falling-text {
        font-size: 1.2rem;
    }

    .appointment-form {
        padding: 15px;
    }

    .back-to-home-btn {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .appointment-form {
        padding: 10px;
    }

    .back-to-home-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }
}
















/* Body Styling */
body {
    font-family: 'Poppins', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  
  
    background: url('Images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #000000;
    line-height: 1.6;
    perspective: 1000px;
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: #22202082;  /* Semi-transparent background to ensure readability */
    padding: 60px 20px;
    text-align: center;
    transform: rotateX(5deg);
    animation: slideDown 2s ease-in-out forwards;
}

.header h1 {
    font-size: 3.5rem;
    color: #eee301c5;

    animation: glowEffect 2s ease-in-out forwards;
}

.header p {
    margin-top: 15px;
    font-size: 1.3rem;
    color: #d3b7b7d3;
}

/* Navigation Bar *//* Navigation Bar */
.navbar {
    position: fixed; /* Changed from relative to fixed */
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);  /* Darker shade for navbar */
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1.5s ease-in-out forwards;
    z-index: 999; /* Ensure navbar stays above other elements */
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar ul li a:hover {
    background-color: #ffcb47;
    color: #0f0f0f;
    box-shadow: 0 0 15px #151514;
    transform: scale(1.1) translateZ(10px);
}
/* 3-dot mobile menu icon */
.menu-dots {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1001;
}

/* Mobile Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: #1a1a1a;
  padding-top: 80px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  display: block;
  padding: 12px;
  transition: background 0.3s;
}

.sidebar ul li a:hover {
  background-color: #ffcb47;
  color: #111;
}

.sidebar.show {
  right: 0;
}

/* Show dot icon + hide top nav on small screens */
@media (max-width: 425px) {
  .navbar ul {
    display: none;
  }

  .menu-dots {
    display: block;
  }
}

/* Add top padding to body so content is not hidden behind navbar */
body {
    margin: 0;
    padding-top: 80px; /* Adjust based on navbar height */
}


/* Section Styling */
section {
    padding: 80px 20px;
    text-align: center;
    transform-style: preserve-3d;
}

section h2 {
  font-size: 2.8rem;
  color: #ffcb47;
  margin-bottom: 30px;
  text-shadow:
    0 0 10px #151514,     /* existing glow */
    0 0 20px rgba(0, 0, 0, 0.6), /* extra shadow for blur */
    0 0 30px rgba(0, 0, 0, 0.5);
  animation: zoomIn 1.2s ease-out forwards;
}

section h3 {
    font-size: 2.8rem;
    color: #ffcb47;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #151514;
    animation: zoomIn 1.2s ease-out forwards;
}

section p {
    margin: 15px auto;
    font-size: 1.2rem;
    max-width: 700px;
    color: #cccccc;
}

/* Services Section */
/* Services Buttons */
.services-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-btn {
    background-color: #ffcb47;
    color: #0f0f0f;
    border: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    max-width: 300px;
    font-weight: bold;
}

.service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.service-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-btn:focus {
    outline: none;
}

.services ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    transform-style: preserve-3d;
}

.services ul li {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.services ul li:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.services ul li p {
    font-size: 1rem;
    color: #fff;
}
@media (max-width: 425px) {
  /* Make navbar vertical and collapsible if needed */
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .navbar ul li a {
    font-size: 1rem;
    padding: 8px 12px;
  }

  /* Header responsiveness */
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  /* Section headers */
  section h2,
  section h3 {
    font-size: 1.8rem;
  }

  section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Service buttons full width */
  .service-btn {
    font-size: 1rem;
    width: 90%;
    max-width: none;
  }

  /* Service cards stack vertically */
  .services ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .services ul li {
    width: 90%;
  }

  /* Reduce section padding */
  section {
    padding: 50px 10px;
  }

  /* Reduce body top padding (smaller navbar height) */
  body {
    padding-top: 70px;
  }
}


/* Booking Form */
.booking form {
    max-width: 600px;
    margin: auto;
    text-align: left;
    background-color: rgba(26, 26, 26, 0.9); /* Darker background for form */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    transform: rotateX(2deg) rotateY(-2deg);
    animation: formSlideIn 1.5s ease-out forwards;
}

.booking form label {
    font-size: 1.1rem;
    color: #ffcb47;
    display: block;
    margin-bottom: 10px;
}

.booking form input,
.booking form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6);
}

.booking form button {
    width: 100%;
    background-color: #ffcb47;
    padding: 15px;
    border: none;
    border-radius: 5px;
    color: #0f0f0f;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.booking form button:hover {
    background-color: #e68a00;
    transform: translateZ(15px);
}

.location-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  
  .location-section h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
  }
  
  .location-option {
    display: block;
    margin-bottom: 10px;
    font-size: 1em;
    cursor: pointer;
  }
  
/* Footer */
.footer {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 20px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-50px) rotateX(5deg);
    }
    100% {
        transform: translateY(0) rotateX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8) translateZ(-100px);
    }
    100% {
        transform: scale(1) translateZ(0);
    }
}

@keyframes formSlideIn {
    0% {
        transform: translateX(-100px) rotateX(-5deg);
    }
    100% {
        transform: translateX(0) rotateX(0);
    }
}

@keyframes glowEffect {
    0% {
        text-shadow: 0 0 5px #ffcb47;
    }
    100% {
        text-shadow: 0 0 20px #ffcb47, 0 0 30px #ff7b00;
    }
}
 



@keyframes fadeInDown {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
/* Barber carousel container */
.barber-carousel {
    display: flex;
    justify-content: center;
    overflow-x: auto; /* Allows horizontal scrolling */
    padding-bottom: 20px; /* Optional: padding at the bottom of the carousel */
}

/* Profile container */
.carousel {
    display: flex;
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
}

/* Profile styles */
.profile {
    margin: 10px;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking */
    width: 200px;  /* Set the width of the profile */
}

/* Animation to fade in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Profile hover effect */
.profile:hover {
    transform: scale(1.05);
}

/* Optional: Delay for each barber profile */


/* Styles for the container and barber images */
.barbers-container {
    display: flex;
    overflow-x: auto;  /* Allows horizontal scrolling */
    white-space: nowrap; /* Prevents images from wrapping to the next line */
    gap: 20px; /* Space between the images */
    padding: 10px; /* Padding around the container */
}

.barber {
    flex-shrink: 0; /* Prevents shrinking of images */
    width: 200px; /* Adjust width as needed */
    text-align: center; /* Center-aligns text */
}

.barber img {
    width: 100%; /* Makes the image responsive */
    height: 300px; /* Set the height for all images */
    object-fit: cover; /* Ensures the images fill the area without distorting */
    border-radius: 8px; /* Rounded corners for the images */
}

.book-now {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff9900;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-now:hover {
    background-color: #e68a00;
}

/* Add scrolling effect for the carousel */
@keyframes scrollImages {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(-100%); /* Move all images to the left */
    }
}

.barber-carousel {
    display: flex;
    justify-content: center;
    overflow-x: scroll; /* Enable horizontal scrolling */
    gap: 10px; /* Space between the profile items */
    margin-top: 20px;
    scroll-snap-type: x mandatory; /* Optional: Creates a snap effect while scrolling */
}

/* Add the snap effect to each profile */
.profile {
    scroll-snap-align: center; /* Ensures each profile snaps to the center while scrolling */
}

/* Add to your styles.css */
.carousel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between the profiles */
    justify-content: center; /* Center the profiles horizontally */
}

.profile {
    flex: 1 1 calc(33.33% - 20px); /* Allow profiles to take up 1/3 of the container width, minus the gap */
    min-width: 250px; /* Prevent profiles from becoming too small */
    max-width: 300px; /* Limit the width of the profile cards */
    text-align: center;
    border: 1px solid #ccc; /* Optional: add a border around the profile cards */
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Basic 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for 3D effect */
    transform-style: preserve-3d; /* Ensure 3D transforms are applied */
}

/* Add a slight 3D hover effect */
.profile:hover {
    transform: translateY(-10px) rotateY(10deg); /* Slight lift and rotation on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Darker shadow for more emphasis */
}

.profile img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Optional: round the barber image */
}

/* Adjust layout on smaller screens */
@media screen and (max-width: 768px) {
    .profile {
        flex: 1 1 100%; /* Make each profile take the full width on smaller screens */
    }
}

/* Barber carousel container */
.barber-carousel {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;  /* Allows horizontal scrolling */
    padding-bottom: 20px;  /* Optional: padding at the bottom of the carousel */
    gap: 15px;  /* Optional: space between the profiles */
}

/* Button for booking appointment */
.book-now {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff9900;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-now:hover {
    background-color: #e68a00;
}

/* Optional: Create a smooth scrolling effect */
.barber-carousel {
    scroll-snap-type: x mandatory;  /* Ensures smooth snap behavior */
}

.barber {
    scroll-snap-align: center;  /* Makes each profile align to the center when scrolled */
}

/* Remove unnecessary duplicate sections */
@keyframes scrollImages {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(-100%); /* Move all images to the left */
    }
}

/* Ensure each profile card is centered */
.carousel-container {
    display: flex;
    gap: 20px; /* Space between the profiles */
    justify-content: center; /* Center the profiles horizontally */
}

.profile {
    flex: 1 1 calc(33.33% - 20px); /* Allow profiles to take up 1/3 of the container width, minus the gap */
    min-width: 250px; /* Prevent profiles from becoming too small */
    max-width: 300px; /* Limit the width of the profile cards */
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Basic 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for 3D effect */
    transform-style: preserve-3d; /* Ensure 3D transforms are applied */
}

/* Make profile images round */
.profile img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Optional: round the barber image */
}

/* Adjust layout on smaller screens */
@media screen and (max-width: 768px) {
    .profile {
        flex: 1 1 100%; /* Make each profile take the full width on smaller screens */
    }
}

/* Hide extra images initially */
/* Initially hidden images */
/* Hides images by default if they have the 'hidden' class */
.gallery-img.hidden {
  display: none;
}

  
  .gallery-img {
    width: 200px;
    height: auto;
    margin: 10px;
  }
  
  .view-more-btn {
    background-color: #d4af37;
    color: #161111;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
  }
  

/* Revealed images */
.show {
    display: block;
}

#toggle-gallery {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: rgb(255, 203, 71);
    color: #000000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

  

  
  /* When images are revealed, apply smooth scaling and fade-in animation */
  .show {
    display: block;
    opacity: 0;
    animation: fadeInScale 0.5s forwards;
  }
  
  /* Animation for the images */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .location {
    background-color: #22202082; /* Match your theme */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .location h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: left;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .shop-hours,
  .shop-location {
    margin-bottom: 15px;
    list-style: none;
    padding-left: 0;
  }
  
  .shop-location p {
    margin: 5px 0;
  }
  
  .footer a {
    color: #c8a1d2;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .back-to-top {
    color: #000;
    display: inline-block;
    margin-top: 40px;
    background-color: #d4af37;
    color: #161111;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .back-to-top:hover {
    background-color: #b08a2e;
  }
  button {
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  button:hover {
    background-color: #007bff; /* darker tone */
    transform: scale(1.05); /* slight zoom */
  }
  .nav-link {
    color: white;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #fbbf24; /* gold-like highlight */
  }
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #007bff;
  }
  /* ================== Responsive Design for Viewports Below 720px ================== */
@media screen and (max-width: 720px) {
  .container,
  .home .container,
  .about .container,
  .booking-form,
  #appointment {
    padding: 20px 10px;
    width: 95% !important;
    margin: 10px auto;
  }

  h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  form {
    gap: 10px;
  }

  input[type="date"], input[type="time"] {
    max-width: 100%;
  }

  .pricing-table {
    width: 100%;
    font-size: 0.9rem;
  }

  .pricing-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .pricing-type, .pricing-price {
    width: 100%;
    margin: 5px 0;
  }

  .faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }

  .faq-question {
    width: 100%;
    background: #f7f7f7;
    border: none;
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background: #e6e6e6;
  }

  

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #fff;
    border-left: 4px solid #c62d2d;
    color: #444;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 12px 20px;
  }

  .faq-item.active .toggle-icon {
    transform: rotate(180deg);
    content: "−";
  }
}
  @media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .falling-text {
        font-size: 1.2rem;
    }

    .appointment-form {
        padding: 15px;
    }

    .back-to-home-btn {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .booking-form {
        width: 90%;
        padding: 15px;
    }

    .pricing-table {
        flex-direction: column;
    }

    .pricing-row {
        flex-direction: column;
        align-items: center;
    }

    .pricing-type, .pricing-price {
        text-align: center;
        margin: 5px 0;
    }
}
/* Light Theme (default) */
body.light {
  background-color: #fff;
  color: #000;
}

/* Dark Theme */
body.dark {
  background-color: #121212;
  color: #eee;
}

/* Style other elements accordingly */
.footer-maps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.map-location {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.map-location iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
#footer-section {
  transition: background-color 0.8s ease, color 0.8s ease;
}
#footer-section * {
  transition: color 0.8s ease;
}
#footer-section {
  transition: background-color 0.8s ease, color 0.8s ease, box-shadow 1s ease;
  box-shadow: none;
}
/* New slide-down animation */
.slide-down {
  animation: slideDownImage 0.6s ease forwards;
}

@keyframes slideDownImage {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#magic-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#magic-btn:hover {
  transform: scale(1.15) rotate(3deg);
  box-shadow: 0 0 15px 6px rgba(255, 215, 0, 0.7); /* golden glow */
}

/* For message */
#hover-message {
  font-size: 16px;
  color: #ffcb47;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
}

#hover-message.visible {
  opacity: 1;
}
html {
  scroll-behavior: smooth;
}
/* Sidebar Menu Icon */
/* Sidebar base */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: #1a1a1a;
  padding-top: 80px;
  z-index: 1000;
  overflow-y: auto;
  /* Hide scrollbar for neatness */
  scrollbar-width: none; /* Firefox */
}
.sidebar::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Show sidebar with animation */
.sidebar.show {
  right: 0;
  animation: slideInVolume 0.5s ease forwards;
}

/* Sidebar list styling */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
}

.sidebar ul li {
  margin: 15px 0;
  opacity: 0;
  display: block;
  transform: translateX(50px);
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/* Animate each list item in sequence */
.sidebar.show ul li:nth-child(1) {
  animation: fadeSlideIn 0.4s 0.1s forwards;
}
.sidebar.show ul li:nth-child(2) {
  animation: fadeSlideIn 0.4s 0.2s forwards;
}
.sidebar.show ul li:nth-child(3) {
  animation: fadeSlideIn 0.4s 0.3s forwards;
}
.sidebar.show ul li:nth-child(4) {
  animation: fadeSlideIn 0.4s 0.4s forwards;
}
.sidebar.show ul li:nth-child(5) {
  animation: fadeSlideIn 0.4s 0.5s forwards;
}
.sidebar.show ul li:nth-child(6) {
  animation: fadeSlideIn 0.4s 0.6s forwards;
}

/* Animation Keyframes */
@keyframes slideInVolume {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sidebar link styling */
.sidebar ul li a {
  display: block;         /* Make links take full width */
  padding: 12px 20px;     /* Padding inside links */
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: left; 
}

.sidebar ul li a:hover {
  background-color: #ffcb47;
  color: #111;
}

/* Hide desktop nav and show dots on mobile */
@media (max-width: 425px) {
  .nav-links {
    display: none;
  }
  .menu-dots {
    display: block;
  }
}




/* Footer Styles */
footer {
  background-color: #141414a1;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  margin-top: 60px;
  font-family: 'Poppins', sans-serif;
}

footer h2, footer h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer img {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  vertical-align: middle;
}

footer p {
  margin-top: 30px;
  color: #ccc;
}

footer .back-to-top {
  display: inline-block;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .back-to-top:hover {
  color: #d4af37;
  text-decoration: underline;
}




.price-table-container {
  position: relative;
  margin: 40px auto 30px;
  max-width: 800px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  overflow: hidden;
}

/* Background image with low opacity */
.price-table-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1508606572321-901ea443707f?auto=format&fit=crop&w=800&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  filter: grayscale(80%) brightness(70%);
  z-index: 0;
  border-radius: 8px;
}

.price-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  z-index: 1;
  position: relative;
}

.price-table th, 
.price-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #444;
  text-align: left;
}

.price-table th {
  background-color: #d4af37;
  color: #000;
  font-weight: 700;
}

.price-table tr:hover {
  background-color: rgba(255, 203, 71, 0.3);
  cursor: default;
}












.section {
  padding: 80px 20px;
  background-color: #7d7c7c47;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #ffcb47;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 50px;
}

.services-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.service-box {
  flex: 1 1 300px;
  background: #ccc9c997;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.service-box h3 {
  font-size: 1.5rem;
  color: #d9b62d;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 1rem;
  color: #000000;
}

.cta-center {
  margin-top: 50px;
  text-align: center;
}

.btn-primary {
  background-color: #ffcb47;
  color: #000000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #333;
}








/* Owner page  */
 .owner-dashboard {
   
   
    padding: 20px;
    background-color: rgba(18, 18, 18, 0.5); /* semi-transparent black */
    color: #eee;
    backdrop-filter: blur(10px); /* adds blur to the background behind the element */
    border-radius: 12px; /* optional for rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* optional for depth */
 }



.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery-img {
  width: 30%;
  max-width: 100px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, opacity 0.6s ease;
  opacity: 1;
}

.gallery-img.hidden {
  display: none;
  opacity: 0;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Media query to control size better on smaller devices */
@media (max-width: 768px) {
  .gallery-img {
    width: 35%; /* Still 3 per row */
    max-width: 100px; /* Prevents it from getting too big */
  }
}

.gallery-swiper {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.gallery-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery-swiper .swiper-slide {
  width: calc(33.33% - 10px); /* 3 images in a row */
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-swiper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.gallery-swiper img:hover {
  transform: scale(1.05);
}

/* 📱 Mobile fix: keep 3 per row even on small screen */
@media (max-width: 768px) {
  .gallery-swiper .swiper-slide {
    width: 30%;
  }
}





/* Mobile view - only collapse below 420px */
@media (max-width: 420px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* Default for larger devices (430px+ including iPhone 14 Pro Max) */
.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}
@media (min-width: 430px) {
  .nav-links {
    display: flex !important;
  }

  .nav-toggle {
    display: none !important;
  }
}


