body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('20231213_215236227_iOS.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

header {
    background-color: rgba(68, 68, 68, 0.8); /* Slightly lighter grey with transparency */
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #555; /* Darker border */
}

.logo {
    max-width: 100px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    background-color: rgba(85, 85, 85, 0.8); /* Medium grey with transparency */
    margin: 0;
    height: 50px; /* Increased height of the nav bar */
    display: flex;
    justify-content: center; /* Centering horizontally */
    align-items: center; /* Centering vertically */
}

nav ul li {
    display: inline;
    margin: 0;
}

nav ul li a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: inline-block;
}

nav ul li a:hover {
    background-color: rgba(102, 102, 102, 0.8); /* Lighter grey with transparency */
}

main {
    padding: 20px;
    text-align: center;
    background-color: rgba(68, 68, 68, 0.8); /* Slightly lighter grey with transparency */
}

footer {
    background-color: rgba(68, 68, 68, 0.8); /* Slightly lighter grey with transparency */
    text-align: center;
    padding: 10px;
    border-top: 1px solid #555; /* Darker border */
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* New section styles */
section {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #555; /* Border around each section */
    border-radius: 5px;
    background-color: rgba(68, 68, 68, 0.8); /* Slightly lighter grey with transparency */
    text-align: left;
}

section h2 {
    color: #ffcc00; /* Yellow color for section titles */
}

section ul {
    text-align: left;
    display: inline-block;
    margin: 0;
    padding: 0;
}

section ul li {
    margin-bottom: 10px;
}

.contact p, .about p, .offers p {
    margin: 10px 0;
}

/* Gallery styles */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.row img {
    margin: 10px;
    width: 200px; /* Fixed width for gallery images */
    height: auto; /* Maintain aspect ratio */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Contact form styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    align-self: flex-start;
    margin-bottom: 5px;
}

.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: rgba(85, 85, 85, 0.8); /* Medium grey with transparency */
    color: #fff;
}

.contact-form input[type="submit"] {
    padding: 10px 20px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #333;
}

.contact-form input[type="submit"]:hover {
    background-color: #ffdd33;
}

/* Add these styles at the end of styles.css */
button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #ffdd33;
}

/* Ensure carousel images are centered and not stretched */
#carousel img {
    display: none;
    width: 200px;
    height: auto;
    margin: 0 auto;
}








