/*=========================================================================================================*/
/*============================================      Global     ============================================*/
/*=========================================================================================================*/
img[alt="French Crop"] {
    width: 380px;
    height: 360px;
    object-fit: cover;
    margin: 0 auto;
}
:root {
    /* Background colors */
    --bs-body-bg: #0f0f0f;   /* very dark gray / almost black */
    --bs-dark: #121212;      /* dark area for Navbar & Footer */
    --bs-light: #f8f9fa;

    /* Main colors */
    --bs-primary: #d4af37;   /* Gold accent (Buttons, Hover, Icons) */
    --bs-secondary: #a0a0a0; /* neutral gray texts */
    --bs-info: #e5e5e5;      /* light text on dark background */

    /* Text colors */
    --bs-body-color: #e0e0e0;   /* Standard text (light gray) */
    --bs-link-color: #d4af37;   /* Links in gold */
    --bs-link-hover-color: #f1c232; /* lighter gold for hover */
}

/* Headings */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.btn {
    text-transform: uppercase;
}

.headline-text {
    letter-spacing: 4px;
    font-size: 14px;

    i {
        font-size: 18px;
    }
}

.title {
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.typing-cursor {
  color: var(--bs-primary);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.second-line {
    color: var(--bs-primary);
}


.btn-outline-light {
    position: relative;
    overflow: hidden;
    transition: background-color 0.05s ease;
    z-index: 1;
    background-color: transparent;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2px 0 0 2px;
    border-color: var(--bs-primary);
    border-radius: var(--bs-border-radius);
    transition: all 0s;
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: var(--bs-primary);
    border-radius: var(--bs-border-radius);
    transition: all 0s;
}

.btn-outline-light:hover {
    background: transparent;
    border-color: var(--bs-primary)!important;
    color: var(--bs-primary);
}

.btn-outline-light:hover::before {
    width: 100%;
    height: 100%;
    border-width: 2px 0 0 2px;
    transition: width 0.2s, height 0.2s;
}

.btn-outline-light:hover::after {
    width: 100%;
    height: 100%;
    border-width: 0 2px 2px 0;
    transition: width 0.2s, height 0.2s;
}

/*=========================================================================================================*/
/*============================================      Navbar     ============================================*/
/*=========================================================================================================*/

/* Navbar Custom */
.navbar {
    background-color: rgba(18, 18, 18, 0.85) !important; /* semi-transparent */
}

/* Buttons */
.btn-outline-light {
    color: #d4af37;
    border-color: #d4af37;
}

/* Services Icons */
.service-icon {
    font-size: 2rem;
    color: #d4af37;
}


/* Navbar Links */
.navbar .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #d4af37; /* Gold tone for Barber-Shop Style */
}

/* Brand Styling */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Button Styling */
.navbar .btn {
    font-size: 0.9rem;
}


/*=========================================================================================================*/
/*============================================      HERO       ============================================*/
/*=========================================================================================================*/

.hero-banner {
    min-height: 60vh;
    background: linear-gradient(to right, rgb(0 0 0 / 80%), rgb(0 0 0 / 30%)), url(../images/hero-bg.png);
    background-position: center 70%;
    background-repeat: no-repeat;

    .title {
        min-height: 2.4em;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}
#typing-text {
  font-size: 40px !important;  /* CHANGE THIS NUMBER - default was 56px */
  font-weight: 700;
}

@media (max-width: 900px) {
  #typing-text {
    font-size: 40px !important;
  }
}


/*=========================================================================================================*/
/*============================================    About us     ============================================*/
/*=========================================================================================================*/

.image-collage {
    height: 550px;
    position: relative;
}

.image-collage img {
    position: absolute;
    object-fit: cover;
    border: 4px solid #222;
    transition: transform 0.3s ease;
}

/* Image 1 – large, top left */
.image-collage .img1 {
    top: 0;
    left: 5%;
    max-width: 400px;
    height: auto;
    z-index: 3;
}

/* Image 2 – smaller, top right */
.image-collage .img2 {
    top: 40px;
    right: 5%;
    max-width: 300px;
    height: auto;
    z-index: 2;
}

/* Image 3 – wide, bottom */
.image-collage .img3 {
    bottom: 0;
    right: 0;
    max-width: 500px;
    height: auto;
    z-index: 1;
}

/* Image 4 – small, offset in the middle */
.image-collage .img4 {
    top: 43%;
    left: 0;
    max-width: 200px;
    height: auto;
    z-index: 4;
}

/* Optional: Image Hover Effect */
.image-collage img:hover {
    transform: scale(1.1);
    z-index: 5;
}


/*=========================================================================================================*/
/*============================================    SERVICES     ============================================*/
/*=========================================================================================================*/

.service-icon {
    border: 1px solid var(--bs-primary) !important;
    width: 100px;
    height: 100px;
    margin: auto;
}

.services-section {
    .row {
        .title {
            transition: all 0.2s ease-in-out;
        }

        > div:hover {
            .title {
                color: var(--bs-primary);
            }

            i {
                transition: transform 0.2s ease-in-out;
                transform: scale(1.05);
            }
        }
    }
}


/*=========================================================================================================*/
/*============================================      TEAM       ============================================*/
/*=========================================================================================================*/

.MEET OUR BARBERS {

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        filter: grayscale(1);
        min-height: 400px;
    }

    .card {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .card::before,
    .card::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 50px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .card::before {
        top: 0;
        left: 0;
        border-top: 10px solid var(--bs-primary);
        border-left: 10px solid var(--bs-primary);
        transform: translate(-10px, -10px);
    }

    .card::after {
        bottom: 0;
        right: 0;
        border-bottom: 10px solid var(--bs-primary);
        border-right: 10px solid var(--bs-primary);
        transform: translate(10px, 10px);
    }

    .card:hover {
        &::before, &::after {
            opacity: 1;
            transform: translate(0, 0);
        }

        .card-title {
            color: var(--bs-primary);
        }

        img {
            transform: scale(1.02);
        }
    }

    .card img {
        position: relative;
        z-index: 0;
        transition: transform 0.3s ease-in-out;
    }
}


/*=========================================================================================================*/
/*============================================      CONTACT       ============================================*/
/*=========================================================================================================*/

.social-icons {
    i {
        transition: all 0.1s ease-in-out;
    }

    i:hover {
        color: var(--bs-primary);
    }
}
