/* ABOUT SECTION */
.about {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 16px;
    padding-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Heading styling */
.about h2 {
    font-size: 34px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin: 0 auto 10px auto;
}

/* blue accent underline */
.about h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: rgb(70, 70, 255);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Main text */
.about h1 {
    font-size: 20px;
    line-height: 1.7;
    color: #cfcfcf;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}


h1 {
    color: white;
    font-size: 20px;
    font-weight: lighter;
}

.hero {
    max-width: 100%;
    height: 80vh;

    background-color: black;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('/Images/barber3.jpg');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

.call-to-action {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 0;
}


.call-to-action h4 {
    color: white;
    font-size: 42px;
}

a img {
    width: 50px;
    transition: opacity 0.17s ease-in-out;
}

a img:hover {
    opacity: 0.5;
}

/* LOCATION SECTION */
.location {
    max-width: 100%;
    height: 60vh;
    /* you already had this; keeping it */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;


}

.location h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
}

.location h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: rgb(70, 70, 255);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.location p {
    color: #cfcfcf;
    font-size: 16px;
    margin-bottom: 24px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    max-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* BOOK SECTION */
.book {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 16px;
}

.book h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: rgb(70, 70, 255);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.book-phone {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 12px;
}

.book-hours {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

button {
    height: 40px;
    width: 150px;
    border-radius: 7px;
    background-color: rgb(70, 70, 255);
    color: white;
    border-style: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transition: opacity 0.17s ease-in-out;
    margin: 10px;
    font-size: 18px;
}

button:hover {
    opacity: 0.5;
}

.call-to-action img {
    max-width: 400px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .call-to-action img {
        max-width: 280px;
        padding-bottom: 20px;
    }
}