/* =========================================
   1. GLOBAL STYLES & RESET
   ========================================= */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1a2a3a;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #c5a059; /* Gold accent */
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(rgba(26, 42, 58, 0.8), rgba(26, 42, 58, 0.8)), 
                url('https://images.unsplash.com/photo-1490367532201-b9bc1dc483f6?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   4. BUTTONS
   ========================================= */
.btn-primary {
    display: inline-block;
    background: #c5a059;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #a8874a;
    transform: translateY(-2px);
}

/* =========================================
   5. FEATURE PILLARS & MISSION
   ========================================= */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features, .mission-section {
    padding: 80px 0;
}

.mission-section {
    background-color: #ffffff;
}

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.split-image, .split-text {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 #c5a059;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* =========================================
   6. BLOG / JOURNAL SECTION
   ========================================= */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.category {
    color: #c5a059;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #1a2a3a;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #c5a059;
}

/* =========================================
   7. TESTIMONIALS
   ========================================= */
.testimonials {
    padding: 80px 0;
    background: #1a2a3a;
    color: white;
    text-align: center;
}

.testimonials .section-title {
    color: white;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.testimonial-item {
    max-width: 450px;
    font-style: italic;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
}

.author {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: #c5a059;
    font-style: normal;
}

/* =========================================
   8. FAQ SECTION (ACCORDION)
   ========================================= */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #1a2a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    color: #c5a059;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #666;
    display: none; /* Controlled by JS */
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question:after {
    content: '-';
}

/* =========================================
   9. TEXT PAGES (PRIVACY, TERMS, POSTS)
   ========================================= */
.text-page {
    padding: 100px 0;
    line-height: 1.8;
    color: #444;
    background: white;
}

.post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

blockquote {
    border-left: 4px solid #c5a059;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    background: #fdfdfd;
}

/* =========================================
   10. CONTACT FORM
   ========================================= */
.contact-form {
    max-width: 600px;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

/* =========================================
   11. FOOTER
   ========================================= */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fff;
    color: #888;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: #1a2a3a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-links a:hover {
    color: #c5a059;
}

/* =========================================
   12. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { height: 60vh; }
    .split-wrapper { flex-direction: column; text-align: center; }
    .split-image { order: 2; }
    .split-image img { box-shadow: 10px 10px 0 #c5a059; }
    .blog-grid { grid-template-columns: 1fr; }
}