#hero {
    height: 725px;
    background-image: url('../assets/burgerstest.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
    text-align:center;
    justify-content: center;
}

#hero .title {
    margin-bottom: 30px;
    align-content: center;
    height: 265px;
    width: 925px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
}

#hero button {
    height: 63px;
    width: 270px;
    font-size: 20px;
    font-weight: 400;
    color: #737373;
    background-color: #fff;
    border-color: #505050;
    border-radius: 5px;
    border-style: solid;
    border-width: 3px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, border-width 0.2s ease;
}

#hero button:hover {
    color: #ff6600;
    border-color: #ff6600;
    border-width: 5px;
    transform: scale(1.05);
}

#hero button:active {
    transform: scale(1.00);
}

#featured {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 85px 65px;
}

#featured img {
    aspect-ratio: 1;
    width: 42%;
    max-width: 555px;
    border-radius: 20px;
    object-fit: cover;
    object-position: right center;
}

#featured .container {
    width: 570px;
    margin-left: 100px;
}

#featured h2 {
    margin-bottom: 25px;
}

#featured p {
    margin-bottom: 30px;
}

#featured .columns {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

#featured .column {
    flex: 1;
    min-width: 200px;
}

#featured h4 {
    margin-bottom: 10px;
}

#featured button {
    height: 50px;
    width: 145px;
    border-width: 2px;
    border-style: solid;
    border-color: #505050;
    border-radius: 5px;
    background-color: transparent;
    color: #505050;
    font-size: 15px;
    font-weight: 600;
}

#services {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 800px;
    background-color: #fff;
    background-image: url('../assets/1800r.png');
    filter: saturate(0%);
}

#services .content {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #505050;
    background-color: #fff;
    width: 85%;
    max-width: 1225px;
    border: 4px solid #505050;
    outline: 4px solid #505050;
    outline-offset: 4px;
    padding: 50px 80px;
    box-shadow: 0 0 0 8px white;
}

#services .title {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin-bottom: 60px;
}

#services h2 {
    margin-bottom: 20px;
}

#services .columns {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

#services .column {
    flex: 1;
    min-width: 200px;
}

#services h3 {
    margin-bottom: 20px;
    margin-top: 20px;
}

#services .column p {
    padding: 0 40px;
}

#cta {
    margin-bottom: 40px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cta .container {
    max-width: 1100px;
    width: 75%;
}

#cta h2 {
    margin-bottom: 20px;
}

#cta button {
    height: 50px;
    width: 145px;
    border-style: none;
    border-radius: 5px;
    background-color: #505050;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#cta button:hover {
    background-color: #ff6600;
    transform: scale(1.05);
}

#cta button:active {
    background-color: #cc5500;
    transform: scale(0.95);
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

footer .nav {
    width: 86%;
    max-width: 1250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

footer .logo {
    margin: 0;
    width: 33.3%;
    font-size: 32px;
    font-weight: 100;
    text-align: left;
}

footer .navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 33.3%;
}

footer .socials {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 33.3%;
}

footer hr {
    width: 86%;
    max-width: 1250px;
    border: none;
    height: 1px;
    background-color: #505050;
    margin-bottom: 60px;
}

footer .legal-section {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}