/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    background-color: #f4f1ea;
    background-image: url("https://www.transparenttextures.com/patterns/white-wall.png");
    text-align: center;
    color: #333;
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url("../Img/Exterior.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 50px 80px;
    border-radius: 10px;
    text-align: center;
}

.restaurant-name {
    font-size: 80px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.address a {
    font-size: 24px;
    color: #f0e6d6;
    text-decoration: none;
}

.address a:hover {
    text-decoration: underline;
}

.phone {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}

/* ---------- WELCOME SECTION ---------- */
.welcome-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.welcome-text {
    font-family: "Great Vibes", cursive;
    font-size: 64px;
    color: #8b0000;
}

/* ---------- MAIN CONTENT AREA ---------- */
.content-area {
    padding: 40px 20px;
    font-size: 20px;
}

/* ---------- FOOTER RIBBON ---------- */
.footer-ribbon {
    background-color: #8b0000;
    padding: 20px;
    text-align: center;
}

.footer-ribbon a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.footer-ribbon a:hover {
    text-decoration: underline;
}