/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #ff69b4; /* Pink header */
    color: white;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

.logo h1 {
    margin-left: 10px;
}

#hero {
    background-color: #fff0f5; /* Light pink hero */
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff69b4;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.order-button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
}

#menu, #locations, #about, #careers {
    padding: 3rem 2rem;
    text-align: center;
}

#menu h2, #locations h2, #about h2, #careers h2 {
    color: #ff69b4;
    margin-bottom: 2rem;
}

.menu-grid, .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item, .location-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-item h3, .location-item h3 {
    margin-top: 0;
    color: #ff69b4;
}

.price {
    font-weight: bold;
    color: #ff69b4;
}

footer {
    background-color: #ff69b4;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: sticky;
    bottom: 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Cart Icon */
#cart-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#cart-icon svg {
    margin-right: 5px;
}

#cart-count {
    font-weight: bold;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background-color: #ffc0cb; /* Light Pink */
    color: #333;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #ff69b4; /* Pink on hover */
    color: white;
}

/* Cart Section */
#cart {
    padding: 3rem 2rem;
    text-align: center;
}

#cart h2 {
    color: #ff69b4;
    margin-bottom: 2rem;
}

#cart-items {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    flex-grow: 1;
    margin-right: 1rem;
}

.cart-item-price {
    font-weight: bold;
    color: #ff69b4;
    margin-right: 1rem;
}

#cart-total {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    color: #ff69b4;
}

#checkout-button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 2rem;
}

#checkout-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Job Application Form */
#job-application-form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

#job-application-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ff69b4;
}

#job-application-form input[type="text"],
#job-application-form input[type="email"],
#job-application-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#job-application-form textarea {
    resize: vertical;
}

.apply-button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #e04090; /* Darker Pink on hover */
}