/* Premium, elegant CSS */
:root {
    --logo-navy: #153C5D;
    --logo-teal: #329BB0;
    --logo-sand: #F8D18C;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

.main-header { background-color: var(--white); padding: 30px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.logo { max-width: 250px; height: auto; }

.hero-split { display: flex; flex-wrap: wrap; min-height: 70vh; background-color: var(--white); }
.hero-content { flex: 1 1 500px; padding: 8% 5%; display: flex; flex-direction: column; justify-content: center; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--logo-navy); line-height: 1.1; margin-bottom: 25px; }
.hero-title span { color: var(--logo-teal); font-style: italic; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 450px; }
.btn-primary { display: inline-block; background-color: var(--logo-navy); color: var(--white); padding: 15px 35px; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 600; border: 1px solid var(--logo-navy); transition: all 0.3s ease; align-self: flex-start; }
.btn-primary:hover { background-color: var(--white); color: var(--logo-navy); }
.hero-image-placeholder { flex: 1 1 500px; background: url('/photos/article-4/main.jpg') center/cover no-repeat, linear-gradient(135deg, var(--logo-teal) 0%, var(--logo-navy) 100%); display: flex; align-items: center; justify-content: center; min-height: 400px; }
.overlay-text { font-family: 'Playfair Display', serif; color: var(--white); font-size: 2.5rem; font-style: italic; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

.blog-section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--logo-navy); margin-bottom: 15px; }
.divider { width: 60px; height: 3px; background-color: var(--logo-sand); margin: 0 auto; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.card-link { text-decoration: none; color: inherit; display: block; transition: transform 0.3s ease; }
.card-link:hover .blog-card { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.blog-card { background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.04); display: flex; flex-direction: column; height: 100%; transition: all 0.3s ease; }
.card-image { height: 220px; background-color: #f0f0f0; position: relative; border-bottom: 3px solid var(--logo-teal); }

.bg-img-1 { background: url('/photos/article-1/main.jpg') center/cover no-repeat, linear-gradient(to right, #e0e0e0, #d0d0d0); }
.bg-img-2 { background: url('/photos/article-2/main.jpg') center/cover no-repeat, linear-gradient(to right, #e0e0e0, #d0d0d0); }
.bg-img-3 { background: url('/photos/article-3/main.jpg') center/cover no-repeat, linear-gradient(to right, #e0e0e0, #d0d0d0); }
.bg-img-4 { background: url('/photos/article-4/main.jpg') center/cover no-repeat, linear-gradient(to right, #e0e0e0, #d0d0d0); }

.card-content { padding: 35px 30px; flex-grow: 1; }
.tag { display: block; color: var(--logo-teal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--logo-navy); margin-bottom: 15px; line-height: 1.3; }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.article-hero { padding: 80px 0 40px; background-color: var(--bg-light); }
.article-title { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--logo-navy); margin-top: 15px; line-height: 1.2; }
.article-main-image { height: 450px; width: 100%; background-color: #f0f0f0; margin-bottom: 40px; border-bottom: 5px solid var(--logo-teal); background-attachment: fixed; }
.article-content { padding: 20px 0 60px; }
.text-container { max-width: 800px; margin: 0 auto; font-size: 1.15rem; line-height: 1.8; color: var(--text-main); }
.text-container p { margin-bottom: 25px; }

.gallery-section { padding-bottom: 100px; }
.gallery-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--logo-navy); text-align: center; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease; cursor: pointer; }
.gallery-img:hover { transform: scale(1.03); }

.lightbox { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-img { max-width: 90%; max-height: 90vh; box-shadow: 0 0 25px rgba(0,0,0,0.8); border: 4px solid var(--white); border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 50px; font-weight: 300; cursor: pointer; transition: color 0.3s; user-select: none; }
.lightbox-close:hover { color: var(--logo-sand); }

.main-footer { background-color: var(--logo-navy); padding: 60px 0; color: var(--white); border-top: 5px solid var(--logo-sand); }
.footer-logo { max-width: 150px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.8; }
.main-footer p { font-size: 0.85rem; letter-spacing: 1px; opacity: 0.7; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-content { padding: 15% 5%; }
    .article-title { font-size: 2.2rem; }
    .article-main-image { height: 250px; background-attachment: scroll; }
    .overlay-text { font-size: 1.8rem; }
}
