/* Use Poppins font everywhere */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
}

header, footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
}

nav a {
    color: #ffd700;
    margin: 0 10px;
    text-decoration: none;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section {
    padding: 20px;
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.barber {
    margin-bottom: 30px;
    text-align: center;
}

a.button, .btn.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    border: none;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

p, a, button {
    font-weight: 400;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
/* Hero section on homepage */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
}

.hero-content .btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
}
/* Make barber images larger */
.barber-img {
    max-height: 600px;  /* was 300px, now larger */
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 0;  /* remove bottom space */
}

/* Align text vertically with image */
.carousel-item .col-md-7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* align top */
}

/* Adjust heading and text */
.carousel-item h6 {
    color: #fff;  /* make 'Barber' label white */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.carousel-item h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.carousel-item p {
    font-size: 1rem;
    color: #ddd;
}

/* Update button color to yellow */
.btn-book {
    background-color: #ffc107;  /* Bootstrap yellow */
    border: none;
    color: #000;
}

.btn-book:hover {
    background-color: #e0a800;  /* darker yellow on hover */
    color: #000;
}

/* Update section heading (Meet the Barbers) */
.section-title {
    color: #fff;
}
.barber-bio {
    font-size: 1.8rem;       /* Make text larger, you can increase to 1.3rem if needed */
    line-height: 2.8;        /* Increase line height for better readability */
    max-width: 100%;         /* Allow text to use more width */
}

.barber-section {
    padding-right: 30px;     /* Add some space to the right side */
}

h2.section-title {
    font-size: 2.2rem;       /* Make the “Meet the Barbers” title larger */
    margin-bottom: 20px;
}
.btn-book {
    background-color: #f6c000;        /* yellow color */
    color: #000;
    border: none;
    padding: 15px 30px;               /* taller button: vertical 15px, horizontal 30px */
    font-size: 1.2rem;                /* bigger text */
    font-weight: 600;
    border-radius: 8px;               /* rounded corners */
    text-align: center;
    display: inline-block;
    width: auto;                      /* let the width fit content */
    min-width: 180px;                 /* minimum width */
    max-width: 220px;                 /* maximum width */
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #e0ac00;        /* darker yellow on hover */
    color: #fff;
}

@media (max-width: 768px) {
    .btn-book {
        width: 100%;                  /* full width on small screens */
        font-size: 1rem;
    }
}
.btn-directions {
    background-color: #f6c000;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background-color: #e0ac00;
    color: #fff;
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.shop-hours h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.shop-hours ul {
  list-style: none;
  padding: 0;
}

.shop-hours li {
  margin-bottom: 5px;
  font-size: 1rem;
}
.service-card {
  background-color: #1c1c1c;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 250px; /* or whatever makes them uniform */
}

.services-section {
  position: relative;
  background: url('/static/images/barbershop.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.5);
  z-index: 1;
}

.services-section > .container {
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.service-card h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107; /* gold/yellow */
  margin-bottom: 10px;
}

.service-card .description {
  font-size: 1.1rem;
  color: #ddd;
}

.row.g-4 {
  display: flex;
  flex-wrap: wrap;
}

.row.g-4 > .col-md-6 {
  display: flex;
}

.service-card.text-center.p-3 {
  flex: 1;
}
.btn-book {
  padding: 12px 25px;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-book:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
.barbers-section {
  position: relative;
  overflow: hidden;
  background: url('/static/images/barbershop.jpg') no-repeat center center;
  background-size: cover;
}

.barbers-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: inherit;
  filter: blur(8px) brightness(0.5);
  z-index: 1;
}

.barbers-section .container {
  position: relative;
  z-index: 2;
}
.contact-section {
  position: relative;
  overflow: hidden;
  background: url('/static/images/barbershop.jpg') no-repeat center center;
  background-size: cover;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: inherit;
  filter: blur(8px) brightness(0.5);
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}
/* === Hero Section Upgrades === */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('/static/images/your-hero-image.jpg') center/cover no-repeat;
    color: white;
}

.hero-section h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-hero {
    background: #ffcc00;
    color: black;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #ffdb4d;
    transform: scale(1.05);
}

/* === Service Cards === */
.service-card {
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.service-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    color: #ffcc00;
}

/* === Testimonials Section === */
.testimonials {
    background: #111;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial {
    max-width: 600px;
    margin: 1rem auto;
    font-style: italic;
}

/* === Footer Upgrades === */
.footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.footer a {
    color: #ffcc00;
    margin: 0 0.5rem;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
.scroll-down-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
.testimonials {
    background: #111;
    padding: 3rem 1rem;
}
.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.testimonial {
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 1rem;
}
.services-section-preview {
    padding: 3rem 0;
}
.services-section {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #fff;
}

.service-card {
    border: 2px solid #d4af37;  /* gold border */
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
    border-color: #ffd700;  /* brighter gold on hover */
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffd700;
}

.cta-button {
    background: #d4af37;
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #ffd700;
    transform: scale(1.05);
}
body {
  background: url('/static/images/black-marble.jpg') no-repeat center center fixed;
  background-size: cover;
}

.services-section,
.why-choose-us,
.testimonials,
footer,
.navbar {
  background-color: rgba(0, 0, 0, 0.7);  /* dark overlay for readability */
}
/* Animate barber card */
.barber-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.barber-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animate text block */
.barber-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.barber-text.show {
    opacity: 1;
    transform: translateX(0);
}

/* Fancy button styling */
.btn-book {
    background: linear-gradient(90deg, #f6c000, #e0ac00);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(246, 192, 0, 0.4);
}

.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(246, 192, 0, 0.6);
    color: #fff;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove Bootstrap’s default */
  color: gold;
  font-size: 2rem;
}

.carousel-control-prev::after {
  content: '\f104'; /* Font Awesome left arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.carousel-control-next::after {
  content: '\f105'; /* Font Awesome right arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 15px;
}

.navbar-nav img {
    transition: transform 0.3s ease;
}

.navbar-nav img:hover {
    transform: scale(1.05);

}

.navbar-nav {
    gap: 15px;  /* adds a little spacing between nav items */
}
/* Adjust navbar spacing to visually balance left and right */
.navbar-nav {
    gap: 30px;  /* Add even space between all items */
}

.navbar-nav .nav-item:nth-child(4) {
    margin-left: 10px;  /* Push "Meet the Barbers" slightly right */
}

.navbar-nav .nav-item:nth-child(2) {
    margin-right: 10px;  /* Push "Services" slightly left */
}
.navbar-nav.flex-row {
    display: flex;
    align-items: center;
}

.navbar-nav.flex-row .nav-item {
    margin: 0 10px;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .navbar .container {
        flex-direction: column;
    }
    .navbar-brand {
        position: static;
        transform: none;
        margin: 10px 0;
    }
    .navbar-nav.flex-row {
        flex-direction: row;
        justify-content: center;
    }
}
.hero-content {
    padding-left: 20px; /* or 30px, adjust as needed */
}

@media (max-width: 991px) {
    .hero-content {
        padding-left: 0; /* remove shift on mobile */
    }
}
.navbar-brand img {
    height: 120px;   /* adjust this: try 80px, 90px, 100px */
    width: auto;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 60px; /* smaller logo on mobile */
    }
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c8a165; /* gold accent */
}

.why-choose-us-section,
.services-section-preview,
.testimonials-section,
.contact-section {
    background: url('/static/images/black-marble.jpg') no-repeat center center / cover;
    padding: 60px 0;
    position: relative;
}

.why-choose-us-section::before,
.services-section-preview::before,
.testimonials-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.why-choose-us-section .container,
.services-section-preview .container,
.testimonials-section .container,
.contact-section .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(0,0,0,0.8);
    border: 1px solid #c8a165;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.btn-hero, .btn-book {
    background-color: #c8a165;
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover, .btn-book:hover {
    background-color: #d4af7f;
    color: #000;
}

.text-accent {
    color: #c8a165;
}

.testimonial {
    font-style: italic;
    margin-bottom: 1.5rem;
}
/* Section backgrounds */
.section-light {
    background-color: #fff;
    color: #000;
}

.section-dark {
    background-color: #000;
    color: #d4af37; /* gold tone */
}

/* Section titles with underline */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 10px auto 0;
}

/* Hero button */
.btn-hero {
    background-color: #d4af37;
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #bfa233;
    color: #fff;
    transform: scale(1.05);
}

/* General buttons */
.btn-book {
    background-color: #d4af37;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #bfa233;
    color: #fff;
    transform: scale(1.05);
}

/* Testimonials */
.testimonial {
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

/* Service card dark section fix */
.section-dark .service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-dark .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Accent text (links inside dark) */
.text-accent {
    color: #d4af37;
}

.text-accent:hover {
    color: #fff;
}
.why-choose-us-section {
    background-color: #fff;
    color: #000;
    padding: 60px 0;
    width: 100%;
}

.why-choose-us-section .container {
    max-width: 100%;
    padding: 0 20px;
}
/* Barber profile section vertical layout */
.barber-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.barber-section img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.barber-section p {
    max-width: 600px;
    margin-bottom: 20px;
}

.barber-section .btn {
    margin-top: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .barber-section img {
        max-width: 200px;
    }

    .barber-section p {
        padding: 0 15px;
        font-size: 0.95rem;
    }
}
.barber-profile img.barber-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.barber-profile .barber-bio {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .barber-profile img.barber-img {
        max-width: 200px;
    }
}
.barbers-section {
    background-image: url('/static/images/your-background.jpg'); /* adjust your path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh; /* ensure at least full screen height */
    display: flex;
    align-items: center;
}
.carousel-inner {
    min-height: 600px; /* or whatever fixed height you want */
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .carousel-inner {
        min-height: auto;
    }
}
/* Meet the Barbers Section */
.barber-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
}

.barber-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffd700; /* gold border */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.barber-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 15px;
    color: #ffd700;
}

.barber-title {
    font-size: 1rem;
    font-weight: 400;
    color: #bbb;
    margin-bottom: 10px;
}

.barber-bio {
    font-size: 1rem;
    color: #eee;
    margin-top: 10px;
    margin-bottom: 20px;
    max-width: 400px;
}

.btn-book {
    background: #ffd700;
    color: #000;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
}

.btn-book:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .barber-image {
        width: 150px;
        height: 150px;
    }

    .barber-bio {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .btn-book {
        width: 80%;
    }
}
.barbers-section {
    background: linear-gradient(180deg, #000, #111);
    padding: 60px 20px;
    text-align: center;
}

.barber-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid gold;
    box-shadow: 0 0 25px gold;
    transition: transform 0.3s ease;
}

.barber-image:hover {
    transform: scale(1.05);
}

.barber-name {
    font-size: 28px;
    font-weight: 700;
    color: gold;
    margin-bottom: 5px;
}

.barber-title {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 15px;
}

.barber-bio {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
}

.btn-book {
    background-color: gold;
    color: #000;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
.barber-profile {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    border-radius: 20px;
}

.barber-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px; /* rounded square look */
    box-shadow: 0 0 20px gold;
}

.barber-name {
    font-size: 1.8rem;
    margin-top: 15px;
}

.barber-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.barber-bio {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
}

.btn-book {
    background-color: gold;
    color: black;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px gold;
}

@media (max-width: 768px) {
    .barber-image {
        max-width: 250px;
    }
    .barber-profile {
        padding: 15px;
    }
}
/* Barbers Section Styles */
.barbers-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.barber-profile-card {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.barber-card-content {
  margin-bottom: 2rem;
}

.barber-image-container {
  margin-bottom: 1.5rem;
}

.barber-profile-image {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid #ffc107;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.barber-info {
  margin-bottom: 1.5rem;
}

.barber-name {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.barber-title {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 50%;
  color: #ffc107;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.barber-bio-section {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.barber-bio {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.book-button-container {
  margin-top: 2rem;
}

.book-appointment-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.book-appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
  color: #000;
}

.book-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.2rem;
  opacity: 0.8;
}

.custom-carousel-control {
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  border: 1px solid #ffc107;
  top: 50%;
  transform: translateY(-50%);
}

.custom-carousel-control:hover {
  background: rgba(255, 193, 7, 0.4);
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .barber-profile-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .barber-profile-image {
    width: 150px;
    height: 150px;
  }
  
  .barber-name {
    font-size: 1.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
/* Barbers Section Styles */
.barbers-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.barber-profile-card {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.barber-card-content {
  margin-bottom: 2rem;
}

.barber-image-container {
  margin-bottom: 1.5rem;
}

.barber-profile-image {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid #ffc107;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.barber-info {
  margin-bottom: 1.5rem;
}

.barber-name {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.barber-title {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 50%;
  color: #ffc107;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.barber-bio-section {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.barber-bio {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.book-button-container {
  margin-top: 2rem;
}

.book-appointment-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.book-appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
  color: #000;
}

.book-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.2rem;
  opacity: 0.8;
}

.custom-carousel-control {
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  border: 1px solid #ffc107;
  top: 50%;
  transform: translateY(-50%);
}

.custom-carousel-control:hover {
  background: rgba(255, 193, 7, 0.4);
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .barber-profile-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .barber-profile-image {
    width: 150px;
    height: 150px;
  }
  
  .barber-name {
    font-size: 1.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
/* Barbers Section Styles */
.barbers-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.carousel-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 60px; /* Space for arrows */
}

.barber-profile-card {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.barber-card-content {
  margin-bottom: 2rem;
}

.barber-image-container {
  margin-bottom: 1.5rem;
}

.barber-profile-image {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid #ffc107;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.barber-info {
  margin-bottom: 1.5rem;
}

.barber-name {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.barber-title {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 50%;
  color: #ffc107;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.barber-bio-section {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.barber-bio {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.book-button-container {
  margin-top: 2rem;
}

.book-appointment-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.book-appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
  color: #000;
}

.book-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.2rem;
  opacity: 0.8;
}

/* Carousel Controls - Fixed positioning */
.custom-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.8) !important;
  border: 2px solid #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.custom-carousel-control:hover {
  background: #ffc107 !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
}

.carousel-control-prev.custom-carousel-control {
  left: 10px;
}

.carousel-control-next.custom-carousel-control {
  right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
  filter: invert(1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 20px;
  }
  
  .barber-profile-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .barber-profile-image {
    width: 150px;
    height: 150px;
  }
  
  .barber-name {
    font-size: 1.5rem;
  }
  
  .custom-carousel-control {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev.custom-carousel-control {
    left: 5px;
  }
  
  .carousel-control-next.custom-carousel-control {
    right: 5px;
  }
}
/* Main centered layout styles */
.logo-badge {
    width: 120px;
    height: 120px;
    background-color: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
    line-height: 1.1;
}

.decorative-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.decorative-lines .line {
    width: 60px;
    height: 2px;
    background-color: #f1c40f;
}

.decorative-lines .dot {
    width: 16px;
    height: 16px;
    background-color: #f1c40f;
    border-radius: 50%;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-text {
    color: #333;
    font-weight: 500;
}

.cta-or {
    color: #666;
}

/* Service section improvements */
.service-underline {
    width: 80px;
    height: 3px;
    background-color: #f1c40f;
}

.section-dark {
    background-color: #000 !important;
}

.service-card {
    background-color: #000;
    border: 2px solid rgba(241, 196, 15, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 196, 15, 0.6);
}

.service-card .price {
    font-size: 2rem;
    font-weight: bold;
}

/* Testimonial improvements */
.testimonial-item {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #f1c40f;
    font-weight: bold;
    font-size: 1rem;
}

/* Contact section improvements */
.contact-info {
    max-width: 500px;
    margin: 0 auto;
}

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

.contact-links a:hover {
    color: #fff !important;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .logo-badge {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
}
/* Add this to your existing styles.css file */

/* Enhanced Barber Profile Styling - Based on Reference Image */
.barber-profile-card {
    background: rgba(40, 40, 40, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.barber-image-container {
    margin-bottom: 25px;
}

.barber-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #ffc107;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.barber-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.barber-title {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.social-icons {
    margin-bottom: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 50%;
    color: #ffc107;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin: 0 8px;
    text-decoration: none;
}

.social-link:hover {
    background: #ffc107;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.barber-bio-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.barber-bio {
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.book-appointment-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: black;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    text-align: center;
    min-width: 280px;
}

.book-appointment-btn:hover {
    background: linear-gradient(135deg, #e0a800, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    color: black;
}

.book-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.8;
}

/* Carousel Container */
.carousel-container {
    padding: 40px 0;
}

.barbers-section {
    background: black;
    min-height: 100vh;
}

/* Custom Carousel Controls */
.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.custom-carousel-control:hover {
    background: #ffc107;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .barber-profile-card {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .barber-profile-image {
        width: 150px;
        height: 150px;
    }
    
    .barber-name {
        font-size: 2rem;
    }
    
    .custom-carousel-control {
        display: none;
    }
}
/* Mobile-specific video quality enhancement */
@media (max-width: 768px) {
    .hero-video {
        filter: contrast(1.1) saturate(1.05);
        -webkit-filter: contrast(1.1) saturate(1.05);
    }
}
/* Global Font Styling - Using Playfair Display like "Our Top Services" */
* {
    font-family: 'Playfair Display', serif !important;
}

/* Global Uppercase Styling */
h1, h2, h3, h4, h5, h6, p, span, a, li, .nav-link, .btn, label {
    text-transform: uppercase !important;
}

/* Global Gold Color - Update all gold elements to match "Our Top Services" */
.text-warning, .text-primary, .section-title, .barber-name, .social-link, 
.contact-links a, .service-card h4, .service-card .price, .testimonial-author,
.logo-text, .line, .dot, .btn-hero, .btn-book, .cta-button, .book-appointment-btn {
    color: #D4AF37 !important;
}

/* Gold Background Elements */
.btn-hero, .btn-book, .cta-button, .book-appointment-btn, .custom-carousel-control {
    background: linear-gradient(45deg, #D4AF37, #F5E050) !important;
}

/* Gold Border Elements */
.logo-badge, .barber-profile-image, .service-card {
    border-color: #D4AF37 !important;
}
/* Fix 1: Remove global uppercase, only apply to specific elements */
.nav-link, .btn, .text-uppercase, .service-card h3, .why-choose-us h2, .section-title {
    text-transform: uppercase !important;
}

/* Fix 2: Make METRO KLIPZ silver instead of white */
.hero-content h1 {
    color: #C0C0C0 !important; /* Silver color for METRO KLIPZ */
}

/* Fix 3: Make service card buttons more visible */
.service-card .btn, .service-card .book-appointment-btn, .cta-button {
    background: linear-gradient(45deg, #D4AF37, #F5E050) !important;
    color: #000 !important;
    border: 2px solid #D4AF37 !important;
    font-weight: bold !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.service-card .btn:hover, .service-card .book-appointment-btn:hover {
    background: linear-gradient(45deg, #F5E050, #D4AF37) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
    color: #000 !important;
}
/* Make button text black */
.service-card .btn, .service-card .book-appointment-btn, .cta-button, .btn-hero, .btn-book {
    color: #000 !important;
}

.service-card .btn:hover, .service-card .book-appointment-btn:hover, .btn-hero:hover, .btn-book:hover {
    color: #000 !important;
}

/* Make METRO KLIPZ silver more visible */
.hero-content h1 {
    color: #B8B8B8 !important; /* Darker silver */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 10px rgba(184,184,184,0.5) !important; /* Enhanced shadow and glow */
    -webkit-text-stroke: 1px rgba(255,255,255,0.1); /* Subtle outline */
}
/* Keep icons visible in Why Choose Us section */
.why-choose-us .icon, .why-choose-us i, .why-choose-us [class*="fa-"], .why-choose-us [class*="icon-"] {
    font-family: 'Font Awesome 5 Free', 'FontAwesome', sans-serif !important;
}



/* Make barber profile button text black */
.barber-profile-card .book-appointment-btn, .barber-profile-card .btn {
    color: #000 !important;
}

/* Keep Instagram and social icons visible */
.social-link i, .social-icons i, [class*="fa-instagram"], [class*="fa-facebook"], [class*="fa-twitter"] {
    font-family: 'Font Awesome 5 Brands', 'FontAwesome', sans-serif !important;
}

/* Target the MK text specifically in the logo badge */
.bg-primary .text-primary-foreground {
    color: #000 !important;
}
.snapchat-icon {
  background-color: #FFFC00;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 18px;
  margin-left: 8px;
}

.snapchat-icon:hover {
  background-color: #FFF700;
  transform: scale(1.1);
  color: #000;
  text-decoration: none;
}
/* Import Bebas Neue Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Global Font and Text Styling */
* {
    font-family: 'Bebas Neue', cursive !important;
    text-transform: uppercase !important;
}

/* Preserve normal case for icons and form elements */
.fa, .fab, .fas, .far, .fal, .fad, .fass, .fasr, .fatl, .fatr,
[class*="fa-"]::before,
i[class*="fa"],
.navbar-toggler-icon,
input, textarea, select, option,
.btn-close {
    text-transform: none !important;
}

/* Ensure Bootstrap icons stay normal case */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    text-transform: none !important;
}

/* Keep button text uppercase but preserve icon content */
.btn {
    text-transform: uppercase !important;
}

.btn i,
.btn .fa,
.btn [class*="fa-"] {
    text-transform: none !important;
}

/* Navigation specific */
.navbar-brand,
.nav-link {
    text-transform: uppercase !important;
}

/* Preserve form elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    text-transform: none !important;
    font-family: 'Bebas Neue', cursive !important;
}

/* Preserve placeholder text */
input::placeholder,
textarea::placeholder {
    text-transform: none !important;
}

/* Make sure headings use the font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive !important;
    text-transform: uppercase !important;
}

/* Ensure paragraphs and spans use the font */
p, span, div, a {
    font-family: 'Bebas Neue', cursive !important;
    text-transform: uppercase !important;
}

/* Keep email and phone links readable */
a[href^="mailto:"],
a[href^="tel:"] {
    text-transform: none !important;
}
/* Fix services section centering and layout */
.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.services-section .col-md-6 {
    flex: 0 0 calc(50% - 15px);
    max-width: 450px;
    display: flex;
}

.services-section .service-card {
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .services-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 400px;
    }
    
    .services-section .row {
        gap: 20px;
    }
}
/* Logo Badge - Instagram Icon */
.logo-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #F5E050);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.instagram-icon {
    color: #000;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    color: #000;
    transform: scale(1.1);
}
/* Social Media Icons - Make them the same size */
.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Or if they have specific classes */
.instagram-icon,
.snapchat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
/* Social Icons - Consistent sizing for all platforms */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.social-icons .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Instagram icon */
.social-icons .instagram-icon {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F56040);
    color: white;
}

.social-icons .instagram-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

/* Facebook icon */
.social-icons .facebook-icon {
    background: #1877F2;
    color: white;
}

.social-icons .facebook-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Snapchat icon */
.social-icons .snapchat-icon {
    background: #FFFC00;
    color: black;
    font-size: 1.5rem;
}

.social-icons .snapchat-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4);
}
/* Logo Badge - Instagram Icon */
.logo-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F56040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 auto;
}

.logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(225, 48, 108, 0.5);
}

.instagram-icon {
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    color: white;
    transform: scale(1.1);
}
/* Add this to your styles.css file */

/* Hero section mobile cropping */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
}

/* Mobile-specific cropping */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh; /* Reduce height on mobile */
    }
    
    .hero-video {
        height: 70vh;
        object-fit: cover;
        object-position: center 20%; /* Crop from bottom, keep top 20% positioned */
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
    }
}
@media (max-width: 768px) {
    .cta-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .cta-text, .cta-or {
        margin: 0 !important;
    }
}
/* Google Icon Styling for Reviews Button */
.fab.fa-google {
    color: #4285F4 !important; /* Google blue color */
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Alternative Google icon styling if you want it to match the button color */
.btn-warning .fab.fa-google {
    color: #000 !important; /* Black to match button text */
}

/* Contact Section - Change to White Background */
.contact-section-white {
    background-color: #f8f9fa !important;
    color: #333 !important;
}

.contact-section-white .section-title {
    color: #D4AF37 !important; /* Keep the gold color for the title */
}

.contact-section-white .text-white {
    color: #333 !important; /* Change white text to dark */
}

.contact-section-white .text-light {
    color: #666 !important; /* Change light text to medium gray */
}

.contact-section-white .contact-links a {
    color: #D4AF37 !important; /* Keep the gold color for links */
}

.contact-section-white .contact-links a:hover {
    color: #F5E050 !important; /* Hover effect remains gold */
}
/* Google Review Button with Icon */
.google-review-btn {
    background: #ffc107 !important;
    border: none !important;
    color: black !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    background: #e0a800 !important;
    color: black !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.google-review-btn i {
    color: black !important;
    font-size: 1.2rem;
}

/* Contact Section White Background */
.contact-section-white {
    background: white !important;
    color: black !important;
}

.contact-section-white h2 {
    color: black !important;
}

.contact-section-white p {
    color: black !important;
}

.contact-section-white .text-warning {
    color: #D4AF37 !important;
}
/* Google Icon Fix */
.fab.fa-google:before {
    content: "\f1a0";
    font-family: "Font Awesome 5 Brands" !important;
    display: inline-block;
    font-weight: 400;
}

/* Google Review Button */
.google-review-btn {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000 !important;
    font-weight: bold;
}

.google-review-btn:hover {
    background-color: #B8941F !important;
    border-color: #B8941F !important;
    color: #000 !important;
}
