
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; 
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
    text-align: center;
}


header {
    background-image: url('OxfordDiner001 copy.jpg');
    background-size: cover;
    background-position: center;
    height: 700px; 
    color: white;
    text-align: center;
    padding-top: 100px; 
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); 
    position: relative;
}

header h1 {
    font-size: 4.5em;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.6em;
    margin-top: 10px;
    font-weight: 400;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(230, 57, 70, 0.85);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 1.4em;
    z-index: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 25px;
    font-weight: bold;
    transition: all 0.3s ease; 
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f1faee;
    transition: width 0.3s ease; 
}

nav a:hover {
    color: #f1faee;
}

nav a:hover::after {
    width: 100%;
}

.content {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
    margin-top: 0px;
}

.content div {
    text-align: center;
    flex-basis: 30%;
    max-width: 350px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content div:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.description {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    font-size: 1.2em;
    line-height: 1.8;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.description-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.description-content img {
    width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.description .text {
    width: 60%;
    text-align: left;
}

.description p {
    margin: 20px 0;
    color: #444;
    font-weight: 400;
}

.description .text p:first-child {
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e63946;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    width: 100%;
    margin-top: 50px;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.3);
}

footer .icons a {
    color: white;
    margin: 0 15px;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .icons a:hover {
    color: #e63946;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        padding: 20px;
    }

    .content div {
        max-width: 100%;
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 3.5em;
    }

    header p {
        font-size: 1.4em;
    }

    nav a {
        font-size: 1.2em;
        margin: 0 20px;
    }
}
/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
    text-align: center;
}

.modal-content {
    margin: 5% auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.close-btn {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: #f1faee;
    text-decoration: none;
    cursor: pointer;
}
.about-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    margin-top: 50px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2em;
    color: #444;
}

.about-content h2 {
    font-size: 2.5em;
    color: #e63946;
    margin-bottom: 20px;
}

.about-content p {
    margin: 20px 0;
    line-height: 1.8;
}

.about-content h3 {
    font-size: 2em;
    margin-top: 30px;
    color: #e63946;
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 20px;
    }

    .about-content h2 {
        font-size: 2.2em;
    }

    .about-content h3 {
        font-size: 1.8em;
    }
}
footer .social-icon {
    width: 40px; /* Adjust this size for consistent small icons */
    height: 40px; /* Maintain aspect ratio */
    object-fit: cover;
    transition: opacity 0.3s ease;
}

footer .icons a:hover .social-icon {
    opacity: 0.7; /* Slight fade effect on hover */
}

footer .facebooklogo.webp,
footer .instagramlogo.png,
footer .gmail.png { /* Ensure class names are correct */
    width: 40px;  /* Uniform size */
    height: 40px; /* Maintain aspect ratio */
}

footer .icons a:hover .facebooklogo.webp,
footer .icons a:hover .instagramlogo.png,
footer .icons a:hover .gmail.gmail.png {
    opacity: 0.7;
}


body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

.menu-header {
    background-image: url('menubanner.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 120px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.menu-header h1 {
    font-size: 3.5em;
    margin: 0;
}

.menu-header p {
    color: rgb(236, 100, 46);
    font-size: 1.5em;
    margin-top: 10px;
    font-weight: 400;
}

nav {
    background-color: rgba(230, 57, 70, 0.85);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 1.4em;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 25px;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f1faee;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #f1faee;
}

nav a:hover::after {
    width: 100%;
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.menu-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer .icons a {
    color: white;
    margin: 0 15px;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .icons a:hover {
    color: #e63946;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.modal-content {
    margin: 5% auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.close-btn {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #f1faee;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-content {
        grid-template-columns: 1fr 1fr;
    }

    .menu-item {
        padding: 15px;
    }

    .menu-header h1 {
        font-size: 3em;
    }

    .menu-header p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .menu-content {
        grid-template-columns: 1fr;
    }

    .menu-header h1 {
        font-size: 2.5em;
    }
}
footer .social-icon.instagram-icon,
footer .social-icon.facebook-icon,
footer .social-icon {
    width: 40px;
    height: 40px;
}
/* Basic Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

/* Header */
.menu-header {
    background-image: url('menubanner.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    color: white;
    text-align: center;
    padding-top: 120px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.menu-header h1 {
    font-size: 3.5em;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.menu-header p {
    font-size: 1.5em;
    margin-top: 10px;
    font-weight: 400;
}

/* Navigation */
nav {
    background-color: rgba(230, 57, 70, 0.85);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 1.4em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 25px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f1faee;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #f1faee;
}

nav a:hover::after {
    width: 100%;
}

/* Menu Content */
.menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
    justify-items: center;
}

.menu-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-item h3 {
    font-size: 1.6em;
    margin-top: 20px;
    color: #e63946;
}

.menu-item:hover img {
    transform: scale(1.05); /* Scale up on hover */
}

.menu-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.menu-item:hover:before {
    opacity: 1;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.3);
}

footer .icons a {
    color: white;
    margin: 0 15px;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .icons a:hover {
    color: #e63946;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.modal-content {
    margin: 5% auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.close-btn {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #f1faee;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-content {
        grid-template-columns: 1fr 1fr;
    }

    .menu-item {
        padding: 15px;
    }

    .menu-header h1 {
        font-size: 3em;
    }

    .menu-header p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .menu-content {
        grid-template-columns: 1fr;
    }

    .menu-header h1 {
        font-size: 2.5em;
    }
}

/* Social Icons */
footer .social-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

footer .icons a:hover .social-icon {
    opacity: 0.7;
}