﻿:root {
    --bg-color-primary: white;
    --bg-color-secondary: #ff8f00;
    --text-color-primary: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom, #ff8f00 150px, #ffffff 500px);
    background-repeat: no-repeat; /* Prevents the gradient from repeating */
    background-size: 100% 1000px; /* Sets the gradient height to 500px */
    margin: 0;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 90%;
    margin: 0 auto; /* Centers the header */
    z-index: 1000;
    border-radius: 0 0 1rem 1rem;
    border: 1px var(--bg-color-secondary, white) solid;
    border-top: 0px;
}


nav {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    flex: 1 1 auto;
    background-color: #fff;
}

.logo img {
    height: 40px;
}

a {
    text-decoration: none;
}


main {
    padding-top: 0px; /* Padding to account for the fixed header */
}

.hero {
    text-align: center;
    padding: 50px 0 50px 0;
}

.hero-image {
    width: 40vw;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ff8f00;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 40rem;
    margin: 0 auto;
}

.service-box {
    background-color: #fff;
    border-radius: 10px;
    width: 200px;
    margin: 10px;
    aspect-ratio: 1;
    padding: 20px;
    display: grid;
    text-align: center;
    background: #E6E6E6;
    box-shadow: 0px 4px 4px 0px #00000040;
    text-transform: uppercase;
    align-content: center;
    justify-items: center;
}


    .service-box img {
        height: 50px;
        margin-bottom: 10px;
    }

    .service-box p {
        font-size: 1.2em;
        color: var(--text-color-primary, black);
        font-weight: bold;
        height:2rem;
    }

    .service-box .multi {
        display: flex;
        flex-direction: column;
    }

        .service-box .multi img {
            height: 35px;
        }

/* Feedback Section */
.feedback {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

    .feedback h2 {
        font-size: 1.5em;
        color: #ff9800;
    }

    .feedback p {
        font-size: 1.2em;
        margin: 10px 0;
    }

.feedback-icons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

    .feedback-icons img {
        height: 50px;
        margin: 0 10px;
    }

/* Ratings Section */
.ratings {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

    .ratings h2 {
        font-size: 1.5em;
        color: #333;
    }

.rating-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    color: #ff9800;
    font-size: 1.2em;
    margin: 10px 0;
}
/* Common styles from previous sections are here */

/* Planned Event Section */
.planned-event {
    text-align: center;
    padding: 20px;
    background-color: #ff9800;
}

    .planned-event h2 {
        font-size: 1.5em;
        color: white;
    }

.event-card {
    background-color: #fff;
    border-radius: 10px;
    width: 200px;
    margin: 20px auto;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.event-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .event-info img {
        height: 30px;
        margin-bottom: 10px;
    }

/* Call to Action Section */
.cta {
    text-align: center;
    padding: 20px;
    background-color: white;
}

    .cta button {
        padding: 10px 20px;
        background-color: #ff9800;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.2em;
    }

/* Contact Section */
.contact {
    text-align: center;
    padding: 20px;
    background-color: #ff9800;
    color: white;
}

    .contact a {
        color: white;
        text-decoration: underline;
    }

.contact-info {
    margin-top: 20px;
}

    .contact-info p {
        font-size: 1em;
    }

.social-links img {
    width: 30px;
    margin: 0 10px;
}

/* Newsletter Section */
.newsletter {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
}

    .newsletter form {
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }

    .newsletter input[type="email"] {
        padding: 10px;
        font-size: 1em;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        width: 200px;
    }

    .newsletter button {
        padding: 10px;
        background-color: #ff9800;
        color: white;
        border: none;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
    }

    .newsletter p {
        font-size: 0.8em;
        color: #777;
    }

/* Common styles from previous sections are here */

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
}

/* Mobile Menu Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 50%;
    height: max-content;
    width: 90%;
    background-color: #fff;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1999;
    transform: translate(-50%, -100%);
    transition: 0.2s ease-in-out;
    display: flex;
    opacity: 0;
    flex-direction: column;
    padding: 20px;
    border-radius: 0 0 1rem 1rem;
}

    .mobile-menu ul {
        list-style-type: none;
        margin-top: 50px;
    }

        .mobile-menu ul li {
            margin-bottom: 20px;
        }

            .mobile-menu ul li a {
                text-decoration: none;
                font-size: 1.5em;
                color: #333;
            }

.mobile-menu-logo {
    margin-top: auto;
    text-align: center;
}

    .mobile-menu-logo img {
        height: 40px;
    }

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5em;
    cursor: pointer;
    color: #ff9800;
}

/* Mobile Menu Open */
.mobile-menu.open {
    opacity: 1;
    transform: translate(-50%, 0);
}
