/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5vw;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.site-nav a:hover {
    color: #8B4513;
}

/* Containers */
.image-container,
.image-text-container,
.map-container {
    position: relative;
    width: min(90%, 1200px);
    margin: 3rem auto;
    overflow: hidden;
    border-radius: 14px;
}

.image-container img,
.image-text-container img {
    width: 100%;
    border: 12px solid #ddd;
    border-radius: 14px;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Overlay */
.dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    border-radius: 14px;
    pointer-events: none;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.25);
    padding: 1.2rem;
    border-radius: 12px;
}

.overlay-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    background: #8B4513;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.order-ahead {
    background: #A0522D;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

/* Map */
.map-section {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.hours {
    background: #f9f5f0;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

#leaflet-map {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.map-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-links a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}

.map-links a:hover {
    text-decoration: underline;
}

/* Instagram Section */
.instagram-section {
    text-align: center;
    margin: 4rem auto;
    padding: 2.5rem 1rem;
    background: #f9f5f0;
    border-radius: 14px;
    width: min(90%, 1200px);
}

.instagram-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #8B4513;
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 1.2rem 0;
}

.instagram-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.25);
    color: #E1306C;
}

.instagram-link img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.instagram-section p {
    font-size: 1.05rem;
    color: #555;
    max-width: 420px;
    margin: 0 auto;
}

/* Square & Footer */
.square {
    background: #f5f5f5;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #ddd;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header { padding: 1rem 4vw; }
    #leaflet-map { height: 340px; }
}

@media (max-width: 480px) {
    .site-nav ul { gap: 1rem; font-size: 0.95rem; }
    #leaflet-map { height: 280px; }
}

@media (max-width: 360px) {
    .hero-buttons { flex-direction: column; align-items: center; }
}