/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #0e0c0c;      /* Espresso black */
    color: #f2e9e4;           /* Warm cream */
    line-height: 1.6;
    animation: fadePage 0.6s ease;
}

@keyframes fadePage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* HEADER */
header {
    background: linear-gradient(135deg, #1a1717, #0e0c0c); /* Warm charcoal */
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 2px solid #3a2f2a; /* Soft bronze divider */
}

header h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

/* NAVIGATION */
nav {
    background: #1a1717; /* Warm charcoal */
    padding: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
}

nav a {
    color: #f2e9e4;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s, color 0.3s;
}

nav a:hover {
    background: #3a2f2a; /* Warm bronze */
    color: #ffffff;
    transform: translateY(-3px);
}

/* SECTIONS */
section {
    max-width: 900px;
    margin: 40px auto;
    background: #1a1717; /* Warm charcoal */
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    animation: fadeInUp 0.7s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    border-left: 5px solid #5a4a3f; /* Muted bronze accent */
    padding-left: 12px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.menu-card {
    background: #141212; /* Deep warm black */
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #5a4a3f;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.menu-card h3 {
    margin-bottom: 10px;
    color: #f2e9e4;
}

/* REVIEWS */
.review {
    background: #141212;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #5a4a3f;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

/* CONTACT PAGE */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* FACEBOOK FEED */
.feed-wrapper {
    animation: fadeInUp 0.7s ease forwards;
}

/* LINKS */
a {
    color: #b8b1ac; /* Warm cocoa grey */
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
}
#hours {
    text-align: center;
}

#hours ul {
    list-style: none;
    padding: 0;
}

#hours li {
    margin: 6px 0;
}
section ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

section li {
    margin: 6px 0;
}
.menu-box {
    background: #000000;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ddd;
    width: 100%;
    margin: 20px auto;
    text-align: left;
}
#menu {
    text-align: left;
    width: 80%;
    margin: 0 auto;
}

#menu ul {
    list-style-type: none;
    padding-left: 0;
}

#menu li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}
.menu-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.menu-images img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.menu-images {
    margin-bottom: 40px; /* adds space below the images */
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

/* Show when clicked */
.lightbox:target {
    display: block;
}

/* Lightbox image */
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Close button */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #ffffff;
    text-decoration: none;
}

.lightbox .close:after {
    content: "×";
}
.gallery-item {
    display: flex;              /* puts image + text side by side */
    align-items: center;        /* vertically centers text */
    gap: 15px;                  /* space between image and text */
    width: 100%;                /* full row width */
    margin-bottom: 20px;        /* spacing between rows */
}

.gallery-item img {
    width: 150px;               /* smaller images */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-item p {
    flex: 1;                    /* text takes remaining space */
    font-size: 16px;
}
.site-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;  /* keeps it nicely cropped */
    display: block;
    border-bottom:  0px solid #222;
}
h1 {
    text-align: center;
    margin-top: 0px;
}

p {
    text-align: center;
    margin-top: 5px;
}
.toppings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    list-style: none;
    padding: 0;
}
.menu-box h2 {
    margin-top: 25px;   /* space above the title */
    margin-bottom: 10px; /* space between title and list */
}

.menu-box ul {
    margin-bottom: 20px; /* space after each list */
}
body {
    background: url("images/0.jpg") no-repeat center center fixed;
    background-size: cover;
}