/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: url("/img/ParmCrustPan.jpg") no-repeat center center fixed;
    background-size: cover;
    line-height: 1.6;
    position: relative;
}

/* Global dark overlay for readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */

nav {
    background: rgba(0, 0, 0, 0.65);
    padding: 15px 0;
    text-align: center;
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 25px;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

nav a:hover {
    color: #ffcc66;
    opacity: 0.85;
}

/* ============================================================
   DEFAULT MAIN CONTENT AREA
   ============================================================ */

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(0,0,0,0.55);
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

h1, h2, h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6rem;
    margin-top: 30px;
}

h3 {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

.home-page-main {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
}

.hero {
    text-align: center;
    margin-top: 40px;
}

.hero img {
    width: 95%;
    max-width: 1100px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.home-intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(0,0,0,0.55);
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.home-intro p {
    font-size: 1.25rem;
    text-align: center;
}

/* ============================================================
   MENU PAGE
   ============================================================ */

.menu-page {
    background: url("/img/express-collage (9)totallogo2.jpg") no-repeat center center fixed;
    background-size: cover;
}

.menu-image {
    text-align: center;
    margin: 40px 0;
}

.menu-image img {
    max-width: 650px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page-main {
    background: none;
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
}

.contact-hero {
    position: relative;
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

.contact-hero img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.contact-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 700px;
    color: white;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
    padding: 20px;
}

.contact-overlay h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-overlay p {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* ⭐ CONTACT PAGE LINK VISIBILITY FIX */
.contact-overlay a {
    color: #ffcc66;
    font-weight: bold;
    text-decoration: underline;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

.contact-overlay a:hover {
    color: #ffd98a;
    opacity: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-page-main {
    background: none;
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
}

.about-hero {
    position: relative;
    text-align: center;
    margin-top: 40px;
}

.about-hero img {
    width: 95%;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.about-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 450px;
    background: rgba(0,0,0,0.55);
    padding: 25px;
    border-radius: 10px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
}

.about-overlay.right {
    right: 5%;
    text-align: right;
}

.about-overlay h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-overlay h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.about-overlay p {
    font-size: 1.1rem;
    margin: 4px 0;
}

/* ============================================================
   SPECIALS PAGE — FULL IMAGE FIT
   ============================================================ */

.specials-main {
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
}

.specials-image-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.specials-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ============================================================
   DELIVERY PAGE
   ============================================================ */

.delivery-page {
    background: url("/img/express-collage.jpg") no-repeat center center fixed;
    background-size: cover;
}

.delivery-main {
    background: none;
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
}

.delivery-hero {
    text-align: center;
    margin-top: 40px;
}

.delivery-hero img {
    width: 95%;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.delivery-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(0,0,0,0.55);
    border-radius: 10px;
    text-align: center;
}

.delivery-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.qr-box img {
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.dd-button {
    display: inline-block;
    background: #ff2d55;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
}

.dd-button:hover {
    opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    color: #ddd;
    font-size: 0.9rem;
}
