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


/* =====================================================
   PAGE BACKGROUND
   ===================================================== */
body {
    font-family: Georgia, "Times New Roman", serif;
    color: #f5f1e6;
    line-height: 1.6;

    background:
        linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
        url("/assets/images/bg-canvas.webp") center 120px / cover no-repeat,
        #0e221e;

    overflow-x: hidden;
}


/* =====================================================
   CONTENT PANEL
   ===================================================== */
.content-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-panel section {
    margin-bottom: 42px;
}


/* =====================================================
   TYPOGRAPHY — PROFESSIONAL REFINEMENT
   ===================================================== */

/* Section headings (About, Meetings, News, Contact) */
h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #d2b48c;

    /* subtle engraved look like model */
    letter-spacing: 0.5px;
    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 3px 6px rgba(0,0,0,0.6);
}

/* Paragraph text */
.content-panel p {
    font-size: 17px;
    line-height: 1.75;        /* calmer reading rhythm */
    color: #e7e2d6;

    /* soft depth like model */
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);

    margin-bottom: 14px;
}

/* Strong text emphasis (like meeting day/time) */
.content-panel strong {
    color: #ffffff;
    font-weight: 600;
}

/* News titles */
.news-card h3 {
    font-size: 22px;
    margin: 6px 0 8px;
    color: #f1eadb;

    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 3px 6px rgba(0,0,0,0.7);
}

/* News dates */
.news-date {
    font-size: 15px;
    color: #cdbb8a;
    letter-spacing: 0.3px;
}


/* =====================================================
   MEETINGS BOX
   ===================================================== */
.meetings-box {
    border: 1px solid rgba(210,180,140,0.35);
    border-radius: 14px;
    padding: 18px 20px;
    background: rgba(0,0,0,0.25);
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}


/* =====================================================
   MEMBERSHIP BUTTON — TRUE EDGE FIX (ZOOM CROP)
   ===================================================== */
.apply-btn {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 12px auto 0;

    padding: 16px 22px;
    text-align: center;
    text-decoration: none;

    font-size: 22px;
    color: #f0e6d2;

    border-radius: 14px;
    border: 1px solid rgba(210,180,140,0.35);

    background-image: url("/assets/images/bg-wood.webp");

    /* 🔧 REAL FIX */
    background-size: 110% auto;
    background-position: center;

    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.55),
        0 8px 18px rgba(0,0,0,0.45);

    transition: all 0.25s ease;
}

.apply-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.55),
        0 10px 22px rgba(0,0,0,0.55);
}


/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 768px) {

    .content-panel {
        margin: 0 auto;
        padding: 0 16px;
    }

    h2 {
        font-size: 24px;
    }

    .meetings-box {
        box-shadow: none;
    }
}

/* =====================================================
   NEWS CARD DESIGN SYSTEM
   ===================================================== */

.news-card {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(210, 180, 140, 0.28);
    border-radius: 14px;

    padding: 18px 20px;
    margin-bottom: 22px;

    /* soft depth like model */
    box-shadow:
        inset 0 0 18px rgba(0,0,0,0.35),
        0 6px 18px rgba(0,0,0,0.25);

    transition: transform 0.18s ease, box-shadow 0.18s ease;
}


/* subtle hover lift (very gentle, professional) */
.news-card:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.38),
        0 10px 24px rgba(0,0,0,0.32);
}


/* =====================================================
   NEWS TYPOGRAPHY REFINEMENT
   ===================================================== */

.news-date {
    font-size: 14px;
    color: #cdbb8a;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.news-card h3 {
    font-size: 22px;
    color: #f1eadb;
    margin-bottom: 8px;

    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 3px 6px rgba(0,0,0,0.7);
}

.news-card p {
    font-size: 16.5px;
    line-height: 1.7;
    color: #e6e0d2;
}


/* =====================================================
   MOBILE TUNING
   ===================================================== */

@media (max-width: 768px) {

    .news-card {
        padding: 16px 16px;
        margin-bottom: 18px;
    }

    .news-card h3 {
        font-size: 20px;
    }

    .news-card p {
        font-size: 15.5px;
    }
}
