*,
body {
    margin: 0;
    padding: 0
}


body,
h1,
h2,
h3 {
    color: #333
}



.about-section h1,
.about-section h2,
.contact-section h2,
.gallery h2,
.hero-content h1,
.services-section h2 {
    font-family: Raleway, sans-serif;
    font-weight: 900
}

#contactForm label,
* {
    font-family: Lato, sans-serif
}

* {
    box-sizing: border-box
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5
}

.separator {
    height: 2px;
    background-color: #7cb7d3;
    border: none
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fefefe;
    padding: 15px 30px
}

.logo {
    margin-right: auto
}

.logo-footer {
    align-items: flex-start
}

.logo h1 {
    color: #fff;
    margin: 0
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
}

.nav-links li {
    margin-left: 20px
}

.nav-links a {
    color: #1f1e1e;
    text-decoration: none;
    padding: 8px 15px;
    transition: background-color .3s
}

.nav-links a:hover {
    background-color: #00b8f5;
    border-radius: 5px
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: #1f1e1e
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(https://aircatmarketing.com/images/dawson-kitchen.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 5px;
    color: #FEFEFE
}

.hero-content h2 {
    font-size: clamp(1.25rem, 4vw, 2rem);
    margin-bottom: 20px;
    color: #FEFEFE
}

.hero-content p {
    font-size: 2.8rem;
    margin-bottom: 20px
}

#contactForm button,
.cta-btn {
    background-color: rgba(0, 0, 0, .75);
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    border: 2px solid #fff;
    transition: background-color .3s, border-color .3s
}

.cta-btn-container {
    text-align: center;
    padding: 15px 30px
}

.services-section {
    padding: 60px 20px;
    background-color: #1f1e1e;
    text-align: center
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff7f11
}

.services-section p {
    color: #fefefe;
    font-size: 1.1rem
}

.services li {
    color: #fefefe;
    list-style-type: none
}

.services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px
}

.service-item {
    background-color: #1f1e1e;
    padding: 50px;
    border-radius: 10px;
    width: 30%;
    max-width: 300px;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    margin: 15px;
    transition: transform .3s
}

.additional-service-item:hover,
.service-item:hover {
    transform: translateY(-5px)
}

.service-item h3,
.service-item h4 {
    font-size: 1.8rem;
    color: #fefefe;
    margin-bottom: 15px
}

.service-item p {
    font-size: 1.1rem;
    color: #fefefe
}

@media (max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column
    }

    .nav-toggle {
        display: block
    }

    nav.active .nav-links {
        display: flex
    }

    .services-section {
        padding: 40px 10px
    }

    .services-grid {
        justify-content: center
    }

    .service-item {
        width: 45%;
        margin: 10px auto
    }
}

.additional-services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: transparent
}

.additional-services-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff7f11
}

.additional-services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto
}

.additional-service-item {
    background: #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform .3s
}

.additional-service-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #007bff
}

.additional-service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333
}

.additional-service-description {
    font-size: 14px;
    color: #666
}

@media (max-width:768px) {
    .additional-services-container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .services-grid {
        justify-content: center
    }

    .service-item {
        width: 100%;
        margin: 10px auto
    }

    .additional-services-container {
        grid-template-columns: 1fr
    }
}

.centered-image-content-section {
    display: flex;
    max-width: 1300px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-align: left
}

.about-section,
.contact-section,
.footer,
.footer-social,
.gallery {
    text-align: center
}

.image-container {
    flex: 3;
    max-width: 300px
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.content-container {
    flex: 7;
    max-width: 700px
}

.content-container h2 {
    font-size: 24px;
    margin-bottom: 10px
}

.content-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px
}

.about-section {
    padding: 60px 20px;
    background-color: #fefefe
}

.about-section h1,
.about-section h2 {
    color: #ff7f11;
    margin-bottom: 20px
}

.about-section h1 {
    font-size: 3rem
}

.about-section h2 {
    font-size: 2.5rem
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px
}

.about-section p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8
}

.gallery {
    padding: 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #f9f9f9
}

.contact-section h2,
.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff7f11
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: .35rem;
    align-items: stretch;
    justify-content: center
}

.gallery-item {
    position: relative;
    overflow: hidden
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1)
}

.gallery-item.wide {
    grid-column: span 2
}

.contact-section {
    padding: 50px 20px;
    background-color: #fefefe
}

.contact-form-container {
    background-color: #e0e0e0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    max-width: 600px;
    margin: 0 auto
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.centered-image {
    width: 40%;
    display: block;
    margin: 0 auto
}

#contactForm label {
    font-size: 1.2rem;
    color: #1f1e1e;
    text-align: left
}

#contactForm input,
#contactForm textarea {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-family: Lato, sans-serif;
    width: 100%;
    box-sizing: border-box
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.cta-btn:hover {
    background-color: rgba(0, 0, 0, .7);
    border-color: #00b8f5
}

.footer {
    background-color: #1f1e1e;
    color: #fff;
    padding: 40px
}

.footer-social {
    margin-top: 20px
}

.footer-social a {
    display: inline-block;
    transition: transform .3s, opacity .3s
}

.footer-social img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2)
}

.footer-social a:hover img {
    transform: scale(1.1);
    opacity: .8
}

.prepping-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1200px;
    box-sizing: border-box
}

.prepping-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.prepping-row:nth-child(odd) {
    flex-direction: row-reverse
}

.prepping-image,
.prepping-text {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 10px;
    box-sizing: border-box
}

.prepping-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1)
}

.prepping-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff7f11
}

.prepping-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .centered-image-content-section {
        flex-direction: column
    }

    .image-container {
        margin-bottom: 20px
    }

    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1
    }

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

    video {
        width: 100%;
        height: auto
    }

    .prepping-row {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .prepping-image,
    .prepping-text {
        max-width: 100%
    }

    .prepping-text h2 {
        font-size: 1.5rem
    }

    .prepping-text p {
        font-size: .9rem
    }
}


