body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #2e7d32; /* Dark green */
    color: #fff;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar .logo .chick-icon {
    width: 50px;
    margin-right: 10px;
}

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

.navbar nav ul li {
    margin-left: 30px;
}

.navbar nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-order {
    background-color: #ffc107; /* Yellow */
    color: #333;
}

.btn-order:hover {
    background-color: #ffca28;
}

.hero {
    background-image: url('images/hero image.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
    padding: 100px 0;
    min-height: 500px; /* Adjust as needed */
    display: flex;
    align-items: center;
}

.hero .container {
    margin-left: 0; /* Align to the left */
    padding-left: 50px; /* Increase left padding for more space */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-view-prices {
    background-color: #ffc107; /* Yellow */
    color: #333;
}

.btn-view-prices:hover {
    background-color: #ffca28;
}

.footer {
    background-color: #ffc107; /* Yellow */
    color: #333;
    text-align: center;
    padding: 20px 0;
}

.footer h2 {
    margin: 0;
    font-size: 24px;
}

.features-delivery {
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff; /* For index.html hero section */
    text-align: left;
}

.prices-section .features-delivery {
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 20px auto 30px auto;
}

.features-delivery p {
    margin-bottom: 5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2e7d32;
        position: absolute;
        top: 60px;
        left: 0;
        padding-bottom: 10px;
        align-items: flex-start;
        padding-left: 20px;
    }

    .navbar .navbar-nav.active {
        display: flex;
    }

    .navbar nav ul {
        margin-top: 0;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 50px 0;
        text-align: center;
        min-height: 300px;
    }

    .hero .container {
        padding: 0 20px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 36px;
        max-width: 100%;
    }

    .hero p {
        font-size: 16px;
        max-width: 100%;
    }

    .features-delivery {
        text-align: center;
    }

    .prices-section .price-category {
        width: 90%;
        display: block;
        margin: 20px auto;
    }

    .footer h2 {
        font-size: 20px;
    }
}

.contact-section {
    background-color: #1a1a36; /* Dark blue background */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #fff;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contact-info a {
    color: #8ab4f8; /* Light blue for links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 40px;
}

.social-icons a {
    display: inline-block;
    margin: 0 15px;
    font-size: 2.5em;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }
    .contact-section h1 {
        font-size: 2em;
    }
    .contact-info p {
        font-size: 1em;
    }
    .social-icons a {
        font-size: 2em;
        margin: 0 10px;
    }
} 