/* NBC Statement of Faith - Frontend Styles */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

.nbc-sof-container {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    background: #ffffff;
}

.nbc-sof-container * {
    box-sizing: border-box;
}

/* Hero */
.nbc-sof-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.nbc-sof-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='80' cy='40' r='2' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='40' cy='70' r='1' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='90' cy='80' r='1.5' fill='rgba(255,255,255,0.07)'/%3E%3Ccircle cx='10' cy='90' r='1' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.6;
}

.nbc-sof-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a227, #d4af37, #c9a227);
}

.nbc-sof-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.nbc-sof-hero-icon {
    font-size: 56px;
    color: #d4af37;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1;
}

.nbc-sof-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.nbc-sof-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
.nbc-sof-main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nbc-sof-content-area {
    padding: 60px 0 80px;
}

/* Preamble */
.nbc-sof-preamble {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #d4af37;
    padding: 30px 35px;
    margin-bottom: 50px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    font-style: italic;
    color: #555;
    line-height: 1.9;
}

.nbc-sof-preamble p {
    margin-bottom: 15px;
}

.nbc-sof-preamble p:last-child {
    margin-bottom: 0;
}

/* Section Headings */
.nbc-sof-section-heading {
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a3a5c;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #d4af37;
    display: inline-block;
}

.nbc-sof-section-heading:first-of-type {
    margin-top: 0;
}

/* Paragraphs */
.nbc-sof-paragraph {
    margin-bottom: 18px;
    text-align: justify;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

/* Scripture References */
.nbc-sof-scripture {
    display: block;
    margin-top: 12px;
    margin-bottom: 20px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-left: 3px solid #1a3a5c;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.nbc-sof-scripture strong {
    color: #1a3a5c;
    font-style: normal;
}

/* Divider */
.nbc-sof-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 40px 0;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nbc-sof-hero {
        min-height: 240px;
        padding: 40px 20px;
    }
    .nbc-sof-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    .nbc-sof-hero-subtitle {
        font-size: 15px;
    }
    .nbc-sof-hero-icon {
        font-size: 40px;
    }
    .nbc-sof-content-area {
        padding: 40px 0 60px;
    }
    .nbc-sof-section-heading {
        font-size: 16px;
    }
    .nbc-sof-preamble {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .nbc-sof-hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    .nbc-sof-preamble {
        padding: 18px 20px;
        font-size: 14px;
    }
}
