/* Bubbl Bee Cleaning Services - Main Stylesheet */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fffdf7;
    color: #2c2c2c;
    line-height: 1.6;
}

.row {
    display: flex;
    align-items: center;
}

p {
    text-align: center;
}

header {
    background-color: #f4a300;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header img {
    max-width: 120px;
    margin-bottom: 1rem;
}

h1 {
    font-family: goodTimes;
    font-size: 2.2rem;
    margin: 0;
    color: #2c2c2c;
    font-weight: 700;
}

section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: auto;
    justify-content: center;
    text-align: center;
}

.services h2 {
    color: #f4a300;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services ul {
    list-style-type: none;
    padding-left: 0;
}

.services li {
    margin-bottom: 0.75rem;
    position: relative;
    text-align: center;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 0.9rem;
}

.logoZone img {
	max-width: 100%;
	height: auto;
}

@font-face {
    font-family: 'goodTimes';
    src: url(GoodTimes.otf);
}

@media screen and (max-width: 600px) {
    header img {
        max-width: 90px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .services {
        padding: 1.5rem;
    }
}

.btn {
    padding: 10px 20px;
    margin-bottom: 6px;

    /* font-family: "Open Sans", Helvetica, Arial, sans-serif; */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: none;
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.bg-primary {
    background-color: #f4a300 !important;
}