/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    cursor: url('images/burger-icon.png'), auto;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 120px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

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

nav ul li a:hover {
    color: #ff6347;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4); /* Darkens the background */
    background-blend-mode: darken;
    cursor: url('images/burger-icon.png'), auto; /* Custom cursor */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

.hero .btn {
    background-color: #ff6347;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #ff4500;
}

/* Menu Section */
#menu {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

#menu h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.menu-item {
    display: inline-block;
    width: 300px;
    margin: 20px;
    text-align: center;
    background-color: #fafafa;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

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

.menu-item h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.menu-item p {
    font-size: 1rem;
    margin: 10px 0;
}

.menu-item p:last-child {
    font-weight: bold;
}

/* Locations Section */
#locations {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

#locations h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#locations ul {
    list-style: none;
}

#locations ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* About Section */
#about {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
#contact {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#contact form {
    display: inline-block;
    max-width: 600px;
    text-align: left;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contact button {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

#contact button:hover {
    background-color: #ff4500;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

footer p {
    margin-bottom: 10px;
}

footer .social-icons img {
    width: 30px;
    margin: 0 10px;
    display: inline-block;
}

footer .social-icons a:hover img {
    filter: brightness(0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .menu-item {
        width: 100%;
        margin: 20px 0;
    }
}
