@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@400;600&display=swap");
footer {
    background-color: whitesmoke;
    color: black;
    padding: 50px 0;
}

.footer-content {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.footer-logo {
    height: 200px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    font-size: 22px;
}
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: gold;
}

.footer-links ul li a {
    text-decoration: none;
    color: black;
}

.footer-contact p {
    font-size: 18px;
    margin: 0;
}

.footer-social {
    margin-top: -50px;
    padding-left: 70px;
}

.footer-social a {
    font-size: 25px;
    margin-right: 10px;
    color: #eb8538;
    cursor: pointer;
}


/*.popup-content*/
.popupOverlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    
    background-color: #fff;
    padding: 20px;
    width: 35%;
    height: 35%;
    border-radius: 10px;
}

.close {
    position: absolute;
    cursor: pointer;
    color: black;
    text-decoration: unset;
    top: 34%;
    right: 34%;
    width: 30px;
    background-color: gold;
    text-align: center;
    border-radius: 20px;
}

#ingredients-list {
    margin-top: 10px;
}

/* Location */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Playfair Display", "Times New Roman", serif;
    
    background-color: #ffffff;
    color: #1b1b1b;
    line-height: 1.6;
}

/* Locations Section */
#locations {
    max-width: 700px;
    margin: 80px auto;
    padding: 20px 20px;
    text-align: center;
}

/* Main Title with decorative lines */
.locations-title {
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #1b1b1b;
}

.locations-title::before,
.locations-title::after {
    content: '—';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #1b1b1b;
}

.locations-title::before {
    left: -80px;
}

.locations-title::after {
    right: -80px;
}

/* Category Title */
.category-title {
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 25px;
    font-weight: 350;
    margin-bottom: 20px;
    color: #f46e09;
}


.location-name {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 15px;
    color: #1b1b1b;
    font-weight: 300;
    margin-top: 15px;
}

.location-address {
    font-size: 18px;
    color: #1b1b1b;
    font-weight: 300;
}

.location-schedule {
    font-size: 18px;
    color: #1b1b1b;
    font-weight: 300;
}

.location-time {
    font-size: 18px;
    color: #1b1b1b;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .locations-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .locations-title::before,
    .locations-title::after {
        font-size: 28px;
    }

    .locations-title::before {
        left: -50px;
    }

    .locations-title::after {
        right: -50px;
    }

    .location-name {
        font-size: 20px;
    }

    .location-address,
    .location-schedule,
    .location-time {
        font-size: 16px;
    }

    .location {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    #locations {
        padding: 40px 15px;
    }

    .locations-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .locations-title::before,
    .locations-title::after {
        font-size: 24px;
    }

    .locations-title::before {
        left: -35px;
    }

    .locations-title::after {
        right: -35px;
    }

    .locations-subtitle {
        font-size: 16px;
    }

    .category-title {
        font-size: 22px;
    }
}