/* SERAPHIM INC. - STYLE SHEET V2.1 */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.logo-image {
    max-height: 40px;
    width: auto;
}

.main-nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #0277BD;
}

.hero-section {
    background-size: cover;
    background-position: center;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.2em;
    margin: 0.5em auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.small-x {
    font-size: 0.6em;
    font-weight: bold;
    vertical-align: middle;
}

.doctrine-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: left;
}

.doctrine-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.doctrine-section ul {
    padding-left: 20px;
}

.doctrine-section li {
    margin-bottom: 1em;
}

.mission-section {
    padding: 60px 20px;
    background-color: #f4f6ff; /* Light lavender */
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5em;
    margin-top: 0;
}

.cta-section {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.cta-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 40px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8em;
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0277BD;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #01579b;
}

.form-mode-selector {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}

.form-mode-btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0 8px;
    cursor: pointer;
    background: #eef;
    color: #0277BD;
    border: 2px solid #0277BD;
    box-shadow: 0 2px 8px #0277bd22;
    font-family: 'Playfair Display', serif;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.form-mode-btn.selected {
    background: #0277BD;
    color: #fff;
    border-color: #015a8c;
    box-shadow: 0 4px 16px #0277bd44;
}


.form-mode-btn.btn-black {
    background: #0277BD;
    color: #fff;
    border-color: #015a8c;
    box-shadow: 0 4px 16px #0277bd44;
