/* style.css – warm terracotta & cream design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fdf8f3;
    color: #1e1e1e;
    line-height: 1.8;
    padding-top: 80px;
}
/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --cream: #fdf8f3;
    --terracotta: #c0583a;
    --terracotta-light: #e8b89c;
    --terracotta-bg: #f6ede7;
    --dark: #2c2c2c;
    --text-muted: #5a4e4a;
    --shadow: 0 12px 32px rgba(0,0,0,0.06);
    --radius: 24px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ─── TOP NAV ─── */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 0.7rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 999;
    border-bottom: 3px solid var(--terracotta);
}
.top-nav .brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--terracotta);
    letter-spacing: 0.5px;
}
.top-nav .brand span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.3rem;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.6rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
    background: var(--terracotta-bg);
    border-bottom-color: var(--terracotta);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
}
@media (max-width: 820px) {
    .top-nav { padding: 0.6rem 1.2rem; flex-wrap: wrap; }
    .nav-links { display: none; width: 100%; flex-direction: column; align-items: center; padding-top: 0.8rem; gap: 0.3rem; }
    .nav-links.open { display: flex; }
    .menu-toggle { display: block; }
    body { padding-top: 70px; }
}

/* ─── CONTAINER ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 3rem;
    animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
    0% { opacity: 0.3; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ─── TYPOGRAPHY ─── */
h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
h1 .accent {
    color: var(--terracotta);
}
h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    margin: 2rem 0 0.8rem;
    border-left: 6px solid var(--terracotta);
    padding-left: 1rem;
}
h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--dark);
}
h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0 0.2rem;
    color: var(--terracotta);
}
p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.lead {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
}
.badge {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}
hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--terracotta), transparent);
    margin: 2.5rem 0;
}

/* ─── IMAGE GRID ─── */
.img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0 2rem;
}
.img-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}
.img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(192, 88, 58, 0.12);
}
.img-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.img-card .caption {
    padding: 0.9rem 1rem 1.1rem;
    background: white;
}
.img-card .caption h4 {
    margin: 0 0 0.2rem;
}
.img-card .caption p {
    font-size: 0.9rem;
    margin: 0;
}
.img-card .caption small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ─── CONTACT FORM ─── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 1.5rem 0;
}
.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--terracotta);
    outline: none;
    box-shadow: 0 0 0 4px rgba(192, 88, 58, 0.12);
}
.contact-form button {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
}
.contact-form button:hover {
    background: #a0462e;
    transform: scale(1.01);
}

/* ─── UTILITY ─── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 720px) {
    .two-col { grid-template-columns: 1fr; }
}
.highlight-box {
    background: white;
    padding: 1.5rem 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 6px solid var(--terracotta);
}
.list-check {
    list-style: none;
    padding-left: 0;
}
.list-check li {
    padding: 0.4rem 0 0.4rem 2rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23c0583a" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') left center no-repeat;
    background-size: 1.3rem;
}
.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.social-links a {
    background: var(--terracotta);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.social-links a:hover {
    background: var(--dark);
}

/* ─── FOOTER ─── */
.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
    border-top: 2px solid #eee;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
    .container { padding: 1rem 1rem 2rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .img-grid { grid-template-columns: 1fr 1fr; }
    .img-card img { height: 150px; }
}
@media (max-width: 480px) {
    .img-grid { grid-template-columns: 1fr; }
    .top-nav .brand { font-size: 1.2rem; }
}