/* Panshield Manor – Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: #333; background: #fdfcf9; line-height: 1.7; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; color: #2c4a2c; }
h1 { font-size: 2.8rem; margin-bottom: 0.5em; }
h2 { font-size: 2rem; margin-bottom: 0.5em; border-bottom: 2px solid #c9dabf; padding-bottom: 0.3em; }
h3 { font-size: 1.4rem; margin: 1.5em 0 0.5em; color: #3d6b3d; }
p { margin-bottom: 1em; }
ul { margin: 0.5em 0 1.5em 1.5em; }
li { margin-bottom: 0.4em; }
a { color: #3d6b3d; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; border-radius: 8px; }

.site-header { background: #2c4a2c; color: #fff; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; letter-spacing: 0.05em; }
.site-header nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.3em; margin: 0; }
.site-header nav a { color: #e0edd9; padding: 0.4em 0.7em; border-radius: 4px; font-size: 0.85rem; transition: background 0.2s; }
.site-header nav a:hover, .site-header nav a.active { background: #3d6b3d; color: #fff; text-decoration: none; }

.hero { position: relative; background: linear-gradient(135deg, #2c4a2c 0%, #4a7c4a 50%, #6b9f6b 100%); color: #fff; text-align: center; padding: 5rem 2rem 4rem; overflow: hidden; }
.hero.small { padding: 3rem 2rem 2.5rem; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.hero-text { position: relative; z-index: 1; }
.hero-text h1 { color: #fff; font-size: 3rem; margin-bottom: 0.3em; }
.hero.small .hero-text h1 { font-size: 2.4rem; }
.hero-text p { font-size: 1.2rem; opacity: 0.9; }

.content-section { max-width: 960px; margin: 2rem auto; padding: 0 2rem 3rem; }
blockquote { border-left: 4px solid #b59f68; padding: 1em 1.5em; margin: 1.5em 0; background: #f5f0e8; font-style: italic; color: #555; }

.image-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
.image-gallery img { width: 100%; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.footer { background: #2c4a2c; color: #e0edd9; text-align: center; padding: 1.5rem; font-size: 0.9rem; margin-top: 3rem; }

@media (max-width: 768px) {
  .site-header { flex-direction: column; gap: 0.5rem; }
  .site-header nav ul { justify-content: center; }
  .hero-text h1 { font-size: 2rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}