* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #ff6f61;
    color: #fff;
    border-radius: 5px;
}

/* Main Section Styling */
main {
    padding: 2rem;
    text-align: center;
    background-color: #000000;
}
.booking-image {
    width: 200px;
    height: 180px;
    margin-top: 7rem;
    margin-bottom: -3rem;
    margin-right: -8rem;
    margin-left: -50rem;
}
.barber-selection-title {
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif;
    margin-top: -3.5rem;
    margin-bottom: 3rem;
    margin-right: -4rem;
    text-transform: uppercase;
    color: #eeeeee;
}

/* Barber Cards */
.barber-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.barber-card {
    background-color: #d4dce6;
    width: 220px;
    height: auto;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.barber-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.barber-card img {
    width: 120px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.barber-card h3 {
    font-size: 1.4rem;
    color: #004c99;
    margin-bottom: 0.5rem;
}

.barber-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.barber-link {
    text-decoration: none;
    color: inherit; /* Inherit color styles from the parent */
}



footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
}