/* ------------------------------
   Ethereally Balanced - Interactive
   Airy & Feminine Theme
--------------------------------*/
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
       background-color: #fdfaf6; color: #3a3a3a; line-height: 1.7; }

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; color: #3a3a3a; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid #f0e5dc; text-align: center; padding: 1.5rem 0; }
.logo { font-size: 2rem; letter-spacing: 1px; display: inline-block; border-bottom: 2px solid #d3b16a; padding-bottom: 6px; }
.logo-accent { color: #e6b7a9; margin-left: 4px; }
.logo-subtitle { font-size: 0.95rem; color: #a57c73; margin-top: 0.25rem; letter-spacing: 0.5px; }

/* Nav */
.nav-list { list-style: none; display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
.nav-list a { text-decoration: none; color: #707070; font-weight: 500; padding: 0.45rem 0.8rem; border-radius: 999px; border: 1px solid #eadad2; background: #fff; transition: all .25s ease; }
.nav-list a:hover, .nav-list a[aria-current="page"] { background: #e6b7a9; color: #fff; border-color: #e6b7a9; }

/* Hero */
.hero { position: relative; text-align: center; padding: 2rem 0; background: #fff; }
.hero-image { width: 100%; max-width: 900px; max-height: 380px; object-fit: cover; border-radius: 16px; display: block; margin: 0 auto; }
.tagline { font-size: 1.2rem; color: #a57c73; margin-top: 1rem; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 3rem 0; }
.card { background: #fff; box-shadow: 0 3px 8px rgba(0,0,0,0.06); border-radius: 16px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.card-img { width: 100%; height: 230px; object-fit: cover; }
.card-body { padding: 1.25rem 1.25rem 1.5rem; }
.card-body h3 { margin-bottom: 0.6rem; }
.btn { display: inline-block; background: #e6b7a9; color: #fff; padding: 0.6rem 1.2rem; border-radius: 25px; text-decoration: none; font-size: 0.92rem; transition: transform .2s ease, background-color .25s ease; }
.btn:hover { background: #d89f93; transform: translateY(-2px); }
.btn-light { background: #fff; color: #3a3a3a; border: 1px solid #eadad2; }
.btn-light:hover { color: #e6b7a9; border-color: #e6b7a9; }

/* Masonry (preview grid) */
.masonry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 3rem 0; }
.m-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 3px 8px rgba(0,0,0,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.m-card:hover { transform: translateY(-4px); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.m-card img { width: 100%; height: 230px; object-fit: cover; }
.m-card-body { padding: 1.1rem 1.2rem 1.3rem; }

/* Post pages */
.post-header { text-align: center; margin: 3rem 0 1.5rem; }
.header-img { width: 100%; max-width: 850px; border-radius: 16px; margin-top: 1rem; object-fit: cover; }
.post-content { font-size: 1.05rem; margin-bottom: 3rem; }
.post-content img { width: 100%; max-width: 400px; border-radius: 12px; float: right; margin: 0.4rem 0 1rem 1rem; object-fit: cover; }
.center { text-align: center; }
.back-btn { margin-bottom: 2rem; }

/* About */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start; margin: 3rem 0; }
.about-photo { width: 100%; max-width: 420px; border-radius: 16px; object-fit: cover; justify-self: end; }
.accent { color: #e6b7a9; }
.ig-link { color: #a57c73; text-decoration: none; }
.ig-link:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid #f0e5dc; text-align: center; padding: 1.5rem 0; color: #777; }

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Utilities */
.rounded { border-radius: 16px; }

/* Responsive */
@media (max-width: 900px) {
  .card-grid, .masonry { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .hero-image { max-height: 320px; }
  .post-content img { float: none; display: block; margin: 1rem auto; }
}
