/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #faf7f2;
    color: #1e1e1e;
    line-height: 1.6;
    padding-top: 70px; /* space for fixed top nav */
}
/* ─── top navigation ─── */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 0.6rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.3rem 0.8rem;
    z-index: 100;
}
.top-nav a {
    text-decoration: none;
    color: #2d2a26;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    transition: 0.15s;
}
.top-nav a:hover {
    background: #f0e8df;
}
.top-nav a.active {
    background: #b45309;
    color: white;
}
.top-nav .brand {
    font-weight: 700;
    color: #b45309;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
@media (max-width: 700px) {
    .top-nav { padding: 0.4rem 0.8rem; gap: 0.2rem; }
    .top-nav a { font-size: 0.8rem; padding: 0.3rem 0.6rem; }
    .top-nav .brand { font-size: 0.9rem; margin-right: 0.2rem; }
}

/* ─── container ─── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    padding: 2rem 2rem 1.5rem;
}
h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.subhead {
    font-size: 1.1rem;
    color: #5e5e5e;
    border-left: 4px solid #f97316;
    padding-left: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 1.8rem;
}
h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-top: 1.6rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #fee2c0;
    padding-bottom: 0.3rem;
}
h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.6rem;
    margin-bottom: 0.3rem;
    color: #b45309;
}
p {
    margin-bottom: 1rem;
}
.badge {
    display: inline-block;
    background: #b45309;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.1rem 0.7rem;
    border-radius: 30px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.highlight {
    background: #fef3e2;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-weight: 500;
}
hr {
    border: none;
    border-top: 1px solid #e8dfd6;
    margin: 1.8rem 0;
}

/* ─── image grid ─── */
.img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.2rem 0 1.8rem;
}
.img-card {
    background: #f3eee8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: 0.2s;
}
.img-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.img-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.img-card .caption {
    padding: 0.6rem 0.9rem 0.9rem;
    font-size: 0.9rem;
    background: white;
}
.img-card .caption small {
    display: block;
    color: #7a6a5a;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* ─── bottom nav (optional) ─── */
.bottom-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2.2rem 0 0.5rem;
    padding-top: 1.2rem;
    border-top: 2px solid #f0e8df;
    justify-content: center;
}
.bottom-nav a {
    background: #f0e8df;
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #2d2a26;
    transition: 0.15s;
}
.bottom-nav a:hover {
    background: #e2d5c8;
}
.bottom-nav a.active {
    background: #b45309;
    color: white;
}
.page-indicator {
    font-size: 0.9rem;
    color: #6b5b4b;
    align-self: center;
}

/* ─── contact form ─── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 500px;
    margin: 1rem 0;
}
.contact-form input,
.contact-form textarea {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}
.contact-form button {
    background: #b45309;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.15s;
}
.contact-form button:hover {
    background: #9a4100;
}

/* responsive */
@media (max-width: 640px) {
    .container { padding: 1.2rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .img-grid { grid-template-columns: 1fr 1fr; }
    .img-card img { height: 140px; }
}
@media (max-width: 420px) {
    .img-grid { grid-template-columns: 1fr; }
}