html,
body {
    font-family: 'Figtree', sans-serif;
    scroll-behavior: smooth;
    background: #faf9f6;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.image-background {
    position: relative;
    background: url('img/1-min.jpg') no-repeat center center / cover;
}

.image-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the last value to change the overlay opacity */
}

.bg-gold {
    background-color: #f1d392 !important;
}

.text-gold {
    color: #f1d392 !important;
}

.bg-dark {
    background-color: #232020 !important;
}

.bg-gold-transparent {
    background-color: rgba(241, 211, 146, 0.5)
}

.bg-dark-transparent {
    background-color: rgba(35, 32, 32, 0.8)
}

.navbar {
    z-index: 3 !important;
    background-color: rgba(35, 32, 32, 1);
    border-bottom: 1px solid rgba(241, 211, 146, 1);

    a {
        color: rgba(241, 211, 146, 1);
        text-decoration: none;
    }
}

.navbar-toggler {
    background-color: rgba(241, 211, 146, 1);
}

.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link:visited {
    color: rgba(241, 211, 146, 1)
}

.logo {
    width: 180px;
    position: absolute;
    top: 70px;
    z-index: 2;
    border-radius: 50%;
    margin: auto;
    left: 0;
    right: 0;
}

.logoSmall {
    width: 100px;
    top: 50px;
    position: absolute;
    border-radius: 50%;
    margin: auto;
    left: 0;
    right: 0;
}

.intro {
    color: rgba(241, 211, 146, 1);
}

.btn {
    color: black;
    background-color: rgba(241, 211, 146, 1);
}

.phoneNumber {
    color: black;
}

.list-group {
    border: none !important;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #000;
    background-color: rgba(241, 211, 146, 1);

}

.list-group-item:last-child {
    border-bottom: none;
}

/* Modernized and responsive layout styles */
.sidebar-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background: #232020;
    color: #f1d392;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}
.sidebar-nav::before {
    display: none;
}
.sidebar-nav::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; width: 6px;
    z-index: 1100;
    background: repeating-linear-gradient(
        45deg,
        #f1d392 0 8px,
        #fff 8px 16px,
        #e74c3c 16px 24px,
        #fff 24px 32px,
        #3498db 32px 40px,
        #fff 40px 48px
    );
    background-size: 100% 48px;
    border-radius: 0 8px 8px 0;
    animation: barberpole 2s linear infinite;
}
@keyframes barberpole {
    0% { background-position-y: 0; }
    100% { background-position-y: 48px; }
}
.sidebar-nav > * {
    position: relative;
    z-index: 1200;
}
.sidebar-logo {
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sidebar-title {
    font-size: 1.5rem;
    color: #f1d392;
    font-weight: 700;
}
.sidebar-nav .nav-link {
    color: #f1d392;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.sidebar-nav .nav-link:hover {
    color: #fff;
}
.sidebar-social a {
    color: #f1d392;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.sidebar-social a:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    .sidebar-nav {
        display: none !important;
    }
    .main-content {
        margin-left: 0 !important;
    }
    .sidebar-nav::after {
        display: none;
    }
    .navbar::after {
        content: '';
        display: block;
        width: 100vw;
        height: 6px;
        margin-left: -12px;
        background: repeating-linear-gradient(
            135deg,
            #f1d392 0 8px,
            #fff 8px 16px,
            #e74c3c 16px 24px,
            #fff 24px 32px,
            #3498db 32px 40px,
            #fff 40px 48px
        );
        background-size: 48px 100%;
        border-radius: 0 0 8px 8px;
        animation: barberpole-horizontal 2s linear infinite;
        position: relative;
        z-index: 10;
    }
    .logoSmall {
        width: 80px !important;
        height: 80px !important;
        position: static !important;
        margin: 0 auto 8px auto !important;
        display: block;
        z-index: 2;
    }
    .navbar::after {
        display: none !important;
    }
}
@keyframes barberpole-horizontal {
    0% { background-position-x: 0; }
    100% { background-position-x: 48px; }
}

.main-content {
    margin-left: 260px;
    transition: margin 0.3s;
}
@media (max-width: 991.98px) {
    .main-content {
        margin-left: 0;
    }
}

.hero-section {
    min-height: 70vh;
    background: #232020;
    color: #f1d392;
    overflow: hidden;
}
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.hero-section .btn-gold {
    background: #f1d392;
    color: #232020;
    border: none;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.hero-section .btn-gold:hover {
    background: #e0b96a;
    color: #232020;
}
.hero-image {
    min-height: 320px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 80px;
}

@media (min-width: 991.98px) {
    
   
}
@media (max-width: 991.98px) {
    .hero-section {
        flex-direction: column;
        min-height: 50vh;
    }
    .hero-img {
        border-radius: 0;
    }
    .hero-image {
        min-height: auto;
    }
}

.about-section {
    background: #fff;
}
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-highlights li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #232020;
    position: relative;
    padding-left: 1.5em;
}
.about-highlights li::before {
    content: '\2022';
    color: #f1d392;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0.35em;
    line-height: 1;
}
.about-gallery {
    gap: 1rem;
}
.about-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid #f1d392;
}
@media (max-width: 767.98px) {
    .about-gallery {
        justify-content: center;
    }
    .about-img {
        width: 80px;
        height: 80px;
    }
}

.services-section {
    background: #f8f7f3;
}
.service-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(35,32,32,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(35,32,32,0.13);
}
.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e0b96a;
    margin-top: 1rem;
}

.info-section {
    background: #f1d392;
}
.info-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(35,32,32,0.07);
}
.info-card h3 {
    color: #232020;
}
.info-card a {
    color: #232020;
    text-decoration: underline;
}
.info-card a:hover {
    color: #e0b96a;
}

.map-section iframe {
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(35,32,32,0.07);
}

.footer {
    background: #232020;
    color: #f1d392;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

/* Utility classes for spacing and layout */

/* Hide scrollbars for sidebar on desktop */
.sidebar-nav::-webkit-scrollbar {
    display: none;
}
.sidebar-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- Fix barber pole border and logo on mobile, adjust button size --- */
/* 1. Barber pole border: horizontal, below navbar, full width, not overlapping */
@media (max-width: 991.98px) {
  .navbar::after {
    content: '';
    display: block;
    width: 100vw;
    height: 6px;
    margin-left: -12px;
    background: repeating-linear-gradient(
      135deg,
      #f1d392 0 8px,
      #fff 8px 16px,
      #e74c3c 16px 24px,
      #fff 24px 32px,
      #3498db 32px 40px,
      #fff 40px 48px
    );
    background-size: 48px 100%;
    border-radius: 0 0 8px 8px;
    animation: barberpole-horizontal 2s linear infinite;
    position: relative;
    z-index: 10;
  }
}

/* 2. Logo: white background, not overlapping, centered, smaller on mobile */
.sidebar-logo, .logoSmall {
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .logoSmall {
    width: 80px !important;
    height: 80px !important;
    position: static !important;
    margin: 0 auto 8px auto !important;
    display: block;
    z-index: 2;
  }
}

/* 3. Button: reduce padding, font-size, border-radius on mobile */
@media (max-width: 575.98px) {
  .btn-gold {
    font-size: 1.1rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 1.2rem !important;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 991.98px) {
  .navbar::after {
    display: none !important;
  }
}
