.restaurant-list {
    padding: 2rem;
    text-align: center;
}

.restaurants-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.restaurant-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.restaurant-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.restaurant-details {
    padding: 1rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    width: 1000px;
    max-width: 100%;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.menu-items {
    margin-top: 1rem;
}

.menu-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.gallery-main {
    padding: 50px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.blog-main {
    padding: 50px 0;
}

.blog-post {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 100%;
    border-radius: 5px;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

.read-more {
    color: #422918;
    text-decoration: none;
}

.most-sold-foods {
    padding: 50px 0;
}

.food-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.food-item:hover {
    transform: translateY(-10px);
}

.food-item img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #422918;
}

.food-info {
    padding: 15px;
    text-align: center;
}

.food-info h4 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.food-info p {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-size: 1.2rem;
    color: #ff6f61;
    font-weight: bold;
}

.custom-section {
    background-color: transparent;
    padding: 50px 0;
    font-family: "Arial", sans-serif;
}

.menu-section {
    text-align: left;
    border-right: 2px solid #d9534f;
    padding-right: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
}

.menu-icon {
    font-size: 2rem;
    color: #d9534f;
    margin-right: 10px;
}

.menu-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.menu-item p a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
}

.menu-item p a:hover {
    text-decoration: underline;
    color: #d9534f;
}

.logo-section {
    text-align: center;
}

.logo-image {
    max-width: 80px;
    margin-bottom: 15px;
}

.slogan {
    font-size: 2rem;
    color: #ff9900;
    font-style: italic;
}

.chef-image {
    max-width: 100%;
    border-radius: 10px;
}

.restaurant-list {
    padding: 2rem;
    text-align: center;
}

.restaurants-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.restaurant-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.restaurant-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.restaurant-details {
    padding: 1rem;
}
