/* 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 2rem;
    border-bottom: 1px solid #ddd;
}

.site-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.site-nav a {
    text-decoration: none;
    color: #333;
}

.site-nav a:hover {
    color: #8B4513;
}

/* Image containers */
.image-container,
.image-text-container {
    position: relative;
    width: 80%;
    margin: 3rem auto;
    overflow: hidden;
}

.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);
}

/* Dark overlay */
.dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    border-radius: 14px;
    pointer-events: none;
}

/* Overlay text */
.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: 3rem;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: 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;
}

.btn.order-ahead {
    background: #A0522D;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

.btn.order-ahead:hover {
    background: #B06533;
}

/* Square */
.square {
    background: #f5f5f5;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
}

/* Map */
.map-section {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.map-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.mobile-map-link {
    position: absolute;
    inset: 0;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #ddd;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .image-container,
    .image-text-container,
    .map-container {
        width: 90%;
    }

    .overlay-text h2 {
        font-size: 2.2rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .overlay-text h2 {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .map-container iframe {
        height: 240px;
    }
}
