:root {
    --gold: #D4AF37;
    --bg-light: #F4F1EA;
    --text-main: #222222;
    --text-white: #FFFFFF;
    --border-soft: rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 400; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; background: #fff;
    border-bottom: 1px solid var(--border-soft); z-index: 1000; padding: 1rem 0;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.nav-links { display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-main); margin-left: 1.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

.lang-btn {
    background: none; border: 1px solid var(--gold); color: var(--gold);
    padding: 4px 8px; margin-left: 1.5rem; cursor: pointer; font-size: 0.75rem;
}

/* Hero Section */
.hero {
    position: relative; height: 85vh; min-height: 550px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-white); overflow: hidden;
}
.hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%; z-index: -1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.58) 100%);
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); font-weight: 300; }

/* Buttons */
.btn-outline {
    display: inline-block; padding: 0.8rem 2rem; border: 1px solid var(--gold);
    color: var(--gold); text-decoration: none; text-transform: uppercase;
    letter-spacing: 2px; font-size: 0.8rem; transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* Sections */
.section { padding: 6rem 0; }
.bg-light { background-color: var(--bg-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; }
.grid-2-rev { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.image-box img { width: 100%; height: auto; border: 1px solid var(--border-soft); }
h2 { font-size: 2.2rem; margin-bottom: 2rem; }
.lead { font-size: 1.2rem; font-weight: 500; margin-bottom: 1.5rem; }

/* Resource Cards */
.resource-card { background: #fff; padding: 2.5rem; border: 1px solid var(--border-soft); text-align: center; }
.resource-card h2 { font-size: 1.8rem; margin-bottom: 1rem; }

/* Priest/Schedule */
.gold-text { color: var(--gold); margin-bottom: 0.5rem; }
.date-subtext { font-size: 0.9rem; font-style: italic; color: #666; margin-bottom: 1rem; }
.schedule-box { background: #fff; padding: 3rem; border: 1px solid var(--border-soft); }
.schedule-box hr { margin: 2rem 0; border: 0; border-top: 1px solid var(--border-soft); }
.text-center { text-align: center; }
.narrow-container { max-width: 700px; margin: 0 auto; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.gallery-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; margin-bottom: 0.5rem; border: 1px solid var(--border-soft); }
.gallery-item p { font-size: 0.8rem; text-align: center; color: #555; }

/* Footer */
.footer { padding: 3rem 0; border-top: 1px solid var(--border-soft); text-align: center; font-size: 0.8rem; color: #888; }

@media (max-width: 768px) {
    .grid-2, .grid-2-rev { grid-template-columns: 1fr; gap: 2rem; }
    .grid-2-rev .image-box { grid-row: 1; }
    .hero { height: 70vh; min-height: 420px; }
    .nav-links a:not(.lang-btn) { display: none; }
    .section { padding: 4rem 0; }
}.section p {
  max-width: 600px;
  margin: 10px auto 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  text-decoration: none;
  font-size: 0.9rem;
}