* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: hsl(38, 60%, 53%);
    display: flex;
    flex-direction: column;
}

header {
    padding: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.logo-container {
    position: absolute;
}

.logo {
    width: 80px;
    height: 120px;
    margin-left: -90px;
}

h1 {
    font-family: serif;
    font-size: 2em;
    text-align: center;
    flex-grow: 1;
    color: hsl(38, 60%, 53%);
}

/* Introductory Section */
.intro {
    padding: 50px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.intro h2 {
    font-size: 2.5em;
    color: hsl(38, 60%, 53%);
    font-family:  serif;
    font-weight: lighter;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 15px 0;
    font-family: 'Times New Roman', serif;
    
    color: #eee;
}

/* Luxury Divider */
.luxury-divider {
    width: 50%;
    margin: 20px auto;
    border: none;
    border-top: 2px solid hsl(38, 60%, 53%);
    opacity: 0.7;
}

/* Catering Bars Section */
.catering-bars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    width: 100%;
}

.catering-bar {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    max-width: 100%;
    width: 90%;
    transition: transform 0.3s ease;
}

.catering-bar img {
    width: 100%;
    height: auto;
    display: block;
}

.catering-bar h2 {
    padding: 15px;
    font-size: 1.5em;
    color: hsl(38, 60%, 53%);
    font-family: serif;
}

.catering-bar:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        margin-left: -40px;
    }

    h1 {
        font-size: 1.8em;
    }

    .intro h2 {
        font-size: 2em;
    }

    .intro p {
        font-size: 1em;
    }

    .catering-bar h2 {
        font-size: 1.3em;
    }
}

@media (max-width: 1024px) {
    .logo {
        margin-left: -40px;
    }
}

@media (max-width: 1280px) {
    .logo {
        margin-left: -40px;
    }
}

@media (max-width: 1440px) {
    .logo {
        margin-left: -40px;
    }
}
/* PDF Menus Section */
/* PDF Menus Section */
.pdf-menus {
    text-align: center;
    padding: 40px 20px;
    color: hsl(38, 60%, 53%);
}

.pdf-menus h2 {
    font-size: 2em;
    font-weight: lighter;
    margin-bottom: 20px;
    font-family:  serif;
}

.pdf-thumbnails {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pdf-thumbnail {
    position: relative;
    display: inline-block;
    text-align: center;
    color: hsl(38, 60%, 53%);
    font-family: serif;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.pdf-thumbnail img {
    width: 280px;
    height: 230px;
    border: 2px solid hsl(38, 60%, 53%);
    border-radius: 5px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.pdf-thumbnail:hover {
    transform: scale(1.05);
}

.pdf-thumbnail span {
    display: block;
    background-color: black;
    color: hsl(38, 60%, 53%);
    font-size: 1.1em;
    padding: 8px;
    width: 100%;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px); /* Start below the image */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.pdf-thumbnail:hover span {
    opacity: 1;
    transform: translateY(0); /* Move into place */
}



@media (max-width: 768px) {
    .pdf-thumbnails {
        flex-direction: column;
        align-items: center;
    }
    .pdf-thumbnail img {
        width: 220px;
        height: 180px;
    }
}
footer {
    background-color: #0c0c0c;
    color: #ffffff;
    border-top: 2px solid hsl(38, 60%, 53%);
    padding: 40px 20px 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    padding: 20px;
}

.footer-section {
    text-align: center;
    max-width: 350px;
}

.footer-section h3 {
    font-size: 1.5em;
    color: hsl(38, 60%, 53%);
    margin-bottom: 10px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    font-family: 'Times New Roman', serif;
}

.footer-section p {
    font-size: 1em;
    margin: 10px 0;
    color: #cccccc;
    line-height: 1.6;
}

.footer-section a {
    font-size: 1em;
    color: hsl(38, 60%, 53%);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #333;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-section {
        max-width: 90%;
        padding: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8em;
        color: #777;
        margin-top: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 10px 10px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-section h3 {
        font-size: 1.3em;
        margin-bottom: 8px;
    }

    .footer-section p {
        font-size: 0.9em;
    }

    .footer-section a {
        font-size: 0.9em;
    }

    .footer-bottom p {
        font-size: 0.75em;
    }
}

