body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo img {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-image: linear-gradient(to bottom, #ff69b4, #ffe6cc);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.icon-btn {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.icon-btn i {
    margin-right: 8px;
}

.icon-btn:hover {
    background-color: #3e8e41;
}

.about, .menu, .venue, .franchise, .contact {
    padding: 40px 0;
}

.dishes, .venue-gallery, .franchise-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.dish, .venue-gallery img {
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
    margin: 10px;
    text-align: center;
}

.dish img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.venue-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #3e8e41;
}

.franchise-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.island-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.icon-btn {
    background-color: #FFC0CB; /* Pink rose color */
    color: #000000;
    padding: 10px;
    border: none;
    border-radius: 50%; /* Circular shape */
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px; /* Separate buttons */
    width: 50px; /* Fixed width for circular shape */
    height: 50px; /* Fixed height for circular shape */
}

.icon-btn i {
    margin-right: 0; /* Remove margin to center icon */
}

.icon-btn:hover {
    background-color: #3e8e41;
}

h3 {
    margin-top: 40px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    .dishes, .venue-gallery, .franchise-links {
        flex-direction: column;
    }
}
.banner-placeholder {
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}

.banner-placeholder img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    border-radius: 10px;
}