* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Header Section */
header {
    width: 100%;
    background-color: rgba(253, 245, 230, 0.9); /* Semi-transparent background */
    padding: 10px 20px; /* Adjust padding for better responsiveness */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Ensure content wraps for smaller screens */
}

header img {
    height: 50px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allows wrapping of menu items on smaller screens */
}

nav ul li a {
    color: #4b2b0f;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #7feed9;
}

/* Content Section */
.content {
    flex: 1; /* Ensures content takes up remaining space between header and footer */
    background: url('https://beirutdelights.com/images/underconstruction.jpg') no-repeat center center;
    background-size: cover; /* Ensures the image covers the entire section */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 30px;
    margin-top: 20px;
}

.social-icon {
    font-size: 40px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon .fa-facebook {
    color: #1877f2;
}

.social-icon .fa-instagram {
    color: #e1306c;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #000;
}

.connect {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Footer Section */
footer {
    background-color: rgba(51, 51, 51, 0.9);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack header content vertically */
        text-align: center;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px; /* Reduce font size for smaller screens */
    }

   .content {
        padding: 10px;
        font-size: 16px; /* Adjust text size */
        background: url('https://beirutdelights.com/images/underconstructionmob.jpg') no-repeat center center;
        background-size: cover; /* Ensures the image covers the entire section */

    }

    .social-links {
        gap: 15px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    header img {
        height: 40px; /* Reduce logo size */
    }

    nav ul {
        flex-direction: column; /* Stack navigation links */
        gap: 10px;
    }

    .content {
        padding: 10px;
        font-size: 16px; /* Adjust text size */
        background: url('https://beirutdelights.com/images/underconstructionmob.jpg') no-repeat center center;
        background-size: cover; /* Ensures the image covers the entire section */

    }

    .social-links {
        gap: 10px;
        font-size: 10px;
    }
}