
* {
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

h2 {
  font-size: 2rem;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  background-color: transparent;
  z-index: 999;
  transition: background-color 0.3s ease;
}




.logo img {
  height: 70px; /* consistent logo size */
  width: auto;
  display: block;
  object-fit: contain;
}



header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; 
  padding: 0.5rem;
}


.header.scrolled {
  background-color: #111;
}


.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

header img {
  height: auto;
  display: block;
}


nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
}

nav a:hover {
 
  color: #E50914;
  transition: all 0.3s ease;
}



.nav-button {
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.nav-button.red {
  background-color: #E50914;
  color: white;
}

.nav-button.red:hover {
  background-color: #ff1f3d;
  transform: scale(1.05);
}

.nav-button.outline {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.nav-button.outline:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}


.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  color: white;
}



.hero-bg {
  background-image: url('assets/banner1-resized.jpg');
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}



.hero-content {
  text-align: left;
  padding-left: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    padding-right: 30rem;
}


.hero h1,
.hero p,
.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  animation-delay: 0.2s;
}

.hero-buttons {
  animation-delay: 0.4s;

}

.hero-buttons >.button.outline  {
  margin-left: 1rem;
}




@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.button {
  padding: 12px 24px;
  border-radius: 6px;
  margin: auto;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.button.red {
  background-color: #E50914;
  color: white;
}

.button.outline {
  border: 2px solid white;
  color: white;
}

.button.red:hover {
  background-color: #ff1f3d;
  transform: scale(1.05);
}

.button.outline:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}


.section {
  padding: 60px 20px;
  text-align: center;
}


.intro-section {
  background-color: #000;
  padding: 80px 20px;
  color: #fff;
}

.intro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.intro-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.intro-text h4 {
  color: #E50914;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.intro-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro-text p {
  margin-bottom: 15px;
  color: #ccc;
}

.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image img {
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}



.process-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.process-subtext {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.process-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.process-card img {
  width: 50px;
  margin-bottom: 15px;
}

.process-card h3 {
  color: #E50914;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
}

.process-card p {
  text-align: left;
  color: #000;
  font-size: 0.95rem;
}

.process-icon {
  color: #E50914;
}


/* Services Section */
.popular-services {
  background-color: #000;
  padding: 60px 0px;
  color: white;
}


.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-size: 2rem;
  color: #fff;
}

.all-services-link {
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.all-services-link:hover {
  color: #E50914;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}


.service-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 600px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: white;
  padding: 20px;
  width: 100%;
  transition: background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.service-tile:hover .service-overlay {
  background: linear-gradient(to top, rgba(131, 6, 12, 0.3), rgba(0, 0, 0, 0));
}

.service-overlay h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.service-overlay p {
  font-size: 1.1rem;
  color: #ccc;
}


.footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  border-top: 1px solid #333;
}

/* Pricing Section */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns for larger screens */
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.pricing-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}


.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #E50914;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 0.95rem;
  color: #ccc;
}

.pricing-card .button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  font-size: 0.75rem;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1;
}


.featured {
  background: linear-gradient(135deg, #E50914, #7a0000);
  color: #fff;
  border: none;
  transform: scale(1.03);
}

.featured .button.outline {
  background-color: #fff;
  color: #E50914;
  font-weight: bold;
}

.featured .button.outline:hover {
  background-color: #f0f0f0;
}


.featured .price {
  color: #fff;
}
.featured ul li {
  color: #fff;
}

.pricing-card.featured:hover {
  transform: scale(1.03);
}

/* Before & After Section */

.before-after {
  background-color: #1c1c1c;
  
}

.before-after h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: white;
}

.beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}



.ba-container {
  position: relative;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  touch-action: pan-y; /* /* Prevent scrolling conflicts */
  -webkit-user-select: none; /* Avoid accidental text selection */
  transition: none !important;
  cursor: ew-resize;
  border-radius: 8px;

}




.ba-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important; 
}

.ba-img.after {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 50% 0 0);
  transition: none !important;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px; 
  height: 100%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: ew-resize; 
  transition: none !important;
}


.ba-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px; /* Adjust size */
  height: 48px; /* Adjust size */
  background-color: rgba(255, 255, 255, 0.5); 
  border-radius: 50%; /* Make it circular */
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.ba-thumb.dragging {
  background-color: rgba(255, 255, 255, 1); 
}

.ba-thumb .arrow-left,
.ba-thumb .arrow-right {
  color: #000; 
  font-size: 18px; /* Adjust arrow size */
  margin: 0 8px; /* Space between arrows */
}

.ba-thumb .arrow-left {
  margin-right: auto; /* Position left arrow */
}

.ba-thumb .arrow-right {
  margin-left: auto; /* Position right arrow */
}

.ba-label {
  position: absolute;
  top: 10px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  color: white;
  transition: opacity 0.3s ease; 

}

.before-label { left: 10px; background: #ff4444; }
.after-label  { right: 10px; background: #4caf50; }




.beer-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-top: 30px;
   
}


.section-subtext {
  font-size: 1rem;
  color: #ccc;
  margin-top: -20px;
  margin-bottom: 40px;
}

/* Book Appointment Section */

#book {
  background-color: #fafafa;
}

#book h2 {
  color: #333;
  margin-bottom: 20px;
}

/* Testimonials section */

.swiper {
  width: 100%;
  height: 400px;
}

.testimonials {
    text-align: center;
    padding: 60px 20px;
    background-color: #fafafa; /* Dark background for contrast */
    color: #000;
}

.testimonials h2 {
    margin-bottom: 20px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 10px; /* Add spacing between cards */
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    color: #ffd700; /* Gold color for stars */
    margin-bottom: 10px;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px 0;
}

footer {
    font-weight: bold;
    margin-top: 10px;
}

.swiper-pagination {
    bottom: 10px;
    color: #fff ; /* White color for pagination dots */
}

.swiper-pagination-bullet {
    background-color: #fff !important; /* Make pagination dots visible */
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #E50914 !important; /* Highlight active dot in gold */
}

.swiper-button-prev,
.swiper-button-next {
    color: #E50914 !important; /* Gold color for arrows */
    font-size: 2rem;
    transition: color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff !important; /* Change arrow color on hover */
}
.google-review-cta {
  margin-top: 30px;
}

.google-review-cta .button.red {
  background-color: #E50914;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}
.google-review-cta .button.red:hover {
  background-color: #ff1f3d;
}


/* FAQ Section */
.faq-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
}

.faq-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-left {
  flex: 1;
  min-width: 300px;
}

.faq-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.text-accent {
  color: #E50914;
}

.accordion-item {
  border: 1px solid #333;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #111;
}

.accordion-button {
  background: none;
  color: white;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.accordion-button:hover {
  color: #E50914;
}

.accordion-button.active,
.accordion-button.active:hover {
  color: #E50914;          
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-button.active::after {
  content: '-';
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #1a1a1a;
}

.accordion-content p {
  margin: 15px 0;
}

.faq-right {
  flex: 1;
  min-width: 300px;
}

.faq-right img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}


/* Call To Action Section  */
#cta {
    background-image: linear-gradient(to right, #600000, #b50000); 
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
}

#cta h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

#cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Footer Section */
.footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 40px 20px;
    font-size: 1rem;
    text-align: left;
    font-weight: normal;
    padding-bottom: 0px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom {
  text-align: center;
  font-style: italic;
  font-weight: bold;

}

.footer i {
  margin-right: 8px;
  color: #ff0000; 
}


.footer h3 {
  font-weight: bold;
}

.footer-branding,
.footer-contact,
.footer-hours,
.footer-service-areas {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-width: 150px;
}

.footer-social {
    color: #E50914; 
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-social:hover {
    color: #ff1f3d; 
}

h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

footer a {
    color: #E50914; 
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}





@media (max-width: 1024px) {

  .hero-content p{
    padding-right: 15rem;
  }
}

@media (max-width: 840px) {
  nav a {
    margin-left: 15px;
  }

  .nav-button {
    margin-left: 15px;
  }


}


@media (max-width: 768px) {

  .pricing-grid {
    grid-template-columns: 1fr; /
  }
  .all-services-link {
    display: none;
  }

  .services-header {
    display: block;
  }

  .services-header h2{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
  }

  .service-overlay h3 {
    font-size: 1.8rem;
  }

  .service-overlay p {
    font-size: 1rem;
  } 

  .intro-text h2 {
    font-size: 1.8rem;
  }

  .intro-text h4 {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .faq-left h2 {
    font-size: 1.8rem;
  }

  .before-after h2 {
    font-size: 1.8rem;
  }
  

  .hero-content p {
    padding-right: 5rem;
  }

  #cta h2 {
    font-size: 1.7rem;
  }



.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: #111; 
}

/* Mobile navigation menu */
#navMenu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #111;
    z-index: 999; 
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 10px;
    padding-bottom: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);


}

#navMenu.active {
    max-height: 400px; /* Adjust based on your menu's content */
    padding: 1rem;

}


  /* #navMenu.active {
    transform: translateX(0%);
  } */


  nav a, .nav-button {
    margin-left: 0;
    width: 100%;
    text-align: left;
    padding: 10px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1003;
    margin-right: 8px; 
}

  .nav-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .footer-wrapper {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }

  .footer-branding,
  .footer-contact,
  .footer-hours,
  .footer-service-areas {
      margin-bottom: 20px;
  }

  .footer-logo {
      max-width: 120px;
  }

  h3 {
      font-size: 1rem; /* Adjust heading size */
  }

  p {
      font-size: 1rem; /* Adjust paragraph size */
  }

  .footer-social {
      font-size: 1.2rem; /* Adjust social icon size */
  }

  .intro-image img {
    width: 100%;;
  }

  .service-tile {
    height: 400px; 
  }

  .bottom-row {
    grid-template-columns: 1fr; /* Single column for mobile */
  }

  .faq-wrapper {
    flex-direction: column;
  }

  .accordion-button::after {
    right: 15px;
  }

  @media screen and (max-width: 480px) {
    .hero-content p {
      padding-right: 2rem;
    }
  }

  .swiper {
    height: 330px; 
  }

  

}
