/* WORD123.ORG MASTER STYLESHEET */
* 
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
overflow: hidden;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
background-color: #F2F2F2;
display: flex;
flex-direction: column;
}

.sticky-menu {
position: sticky;
top: 0;
height: 80px;
background-color: #B303C3;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-white {
height: 50px;
width: auto;
transition: filter 0.25s ease, transform 0.2s ease;
cursor: pointer;
}

.logo-white:hover {
filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
transform: scale(1.02);
}

.prayer-btn {
background-color: white;
border: 3px solid #C41E3A;
border-radius: 60px;
padding: 10px 24px;
font-size: 1rem;
font-weight: bold;
color: #C41E3A;
cursor: pointer;
transition: all 0.25s ease;
font-family: inherit;
display: flex;
align-items: center;
gap: 8px;
}

.prayer-btn:hover {
background-color: #C41E3A;
color: white;
transform: scale(1.05);
border-color: #C41E3A;
}

.prayer-btn svg {
width: 20px;
height: 20px;
stroke: #C41E3A;
stroke-width: 1.8;
fill: none;
}

.prayer-btn:hover svg {
stroke: white;
}

.main-content {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: auto;
overflow-x: hidden;
}

.container {
max-width: 1300px;
margin: 0 auto;
padding: 15px 40px;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

.new-header-section {
text-align: right;
margin: 20px 0 10px 0;
padding-right: 20px;
}

.bible-study-main-title {
font-size: 2.8rem;
font-weight: 900;
color: #000;
letter-spacing: -0.01em;
}

.bible-study-sub {
font-size: 1rem;
color: #000;
font-weight: 500;
margin-top: 2px;
}

.moved-title {
text-align: center;
font-size: 2.5rem;
font-weight: 900;
font-variant: small-caps;
letter-spacing: -0.01em;
margin-top: 30px;
margin-bottom: 20px;
color: #000;
cursor: pointer;
display: inline-block;
width: auto;
margin-left: auto;
margin-right: auto;
padding: 8px 24px;
border-radius: 60px;
transition: all 0.25s ease;
text-decoration: none;
}

.moved-title:hover {
background-color: #B303C3;
color: white;
transform: scale(1.02);
}

.hero-split {
display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
margin-bottom: 10px;
}

.hero-left {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}

.hero-right {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
}

.vertical-logo {
width: 360px;
max-width: 85%;
cursor: pointer;
transition: transform 0.2s ease, filter 0.2s;
display: block;
}

.vertical-logo:hover {
transform: scale(1.02);
filter: drop-shadow(0 0 6px rgba(179,3,195,0.5));
}

.segmented-btn {
display: flex;
align-items: center;
width: 100%;
max-width: 320px;
border: 2px solid #B303C3;
border-radius: 60px;
background-color: transparent;
cursor: pointer;
overflow: visible;
transition: transform 0.25s ease;
text-decoration: none;
font-family: inherit;
position: relative;
}

.segmented-btn:hover {
transform: scale(1.02);
}

.segmented-btn:hover .segmented-btn-right {
background-color: black;
color: white;
}

.segmented-btn:hover .segmented-btn-right .arrow {
color: white;
}

.segmented-btn-left {
width: 77px;
height: 77px;
flex-shrink: 0;
background-color: #B303C3;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin-left: -6px;
position: relative;
z-index: 2;
transition: none;
}

.segmented-btn-left svg {
width: 65px;
height: 65px;
color: white;
fill: white;
}

.segmented-btn-right {
flex: 1;
background-color: transparent;
padding: 8px 18px;
text-align: center;
font-weight: 600;
font-size: 1rem;
color: #B303C3;
transition: all 0.25s ease;
border-radius: 0 60px 60px 0;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 1;
margin-left: -8px;
}

.segmented-btn-right span:first-child {
flex: 1;
text-align: center;
}

.segmented-btn-right .arrow {
margin-left: 12px;
font-size: 1.1rem;
}

.prefooter {
background-color: #B303C3;
padding: 24px 20px;
margin-top: 10px;
}

.social-icons {
display: flex;
justify-content: center;
gap: 28px;
flex-wrap: wrap;
}

.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 50%;
border: 2px solid white;
background-color: transparent;
font-size: 1.8rem;
font-weight: bold;
text-decoration: none;
color: white;
transition: all 0.25s ease;
cursor: pointer;
}

.social-icon span {
font-size: 1.9rem;
font-weight: 800;
}

.social-icon:hover {
background-color: white;
border-color: white;
color: #B303C3;
transform: scale(1.1);
}

.footer {
background-color: #B303C3;
padding: 20px 40px;
display: flex;
justify-content: space-between;
gap: 30px;
flex-wrap: wrap;
border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-col {
flex: 1;
text-align: center;
}

.disclaimer-links {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: nowrap;
}

.disclaimer-link {
background: none;
border: none;
color: white;
text-decoration: underline;
cursor: pointer;
font-size: 0.85rem;
transition: all 0.25s ease;
padding: 6px 14px;
border-radius: 60px;
}

.disclaimer-link:hover {
background-color: black;
color: white;
transform: scale(1.02);
text-decoration: none;
}

.footer-home-link {
background: none;
border: none;
color: white;
font-weight: 500;
cursor: pointer;
padding: 6px 12px;
border-radius: 60px;
transition: all 0.2s ease;
font-size: 0.9rem;
text-decoration: none;
}

.footer-home-link:hover {
background-color: black;
color: white;
transform: scale(1.02);
}

.copyright-plain {
font-size: 0.9rem;
color: white;
}

.bible-study-footer-btn {
background-color: transparent;
border: 3px solid white;
border-radius: 60px;
padding: 8px 20px;
font-weight: bold;
color: white;
cursor: pointer;
transition: all 0.2s ease;
font-size: 0.9rem;
}

.bible-study-footer-btn:hover {
background-color: white;
color: #B303C3;
transform: scale(1.02);
}

.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
align-items: center;
justify-content: center;
z-index: 2000;
}

.modal-content {
background-color: black;
width: 650px;
max-width: 90%;
border-radius: 28px;
overflow: hidden;
box-shadow: 0 25px 40px rgba(0,0,0,0.6);
animation: slideUpOpen 0.75s ease forwards;
}

.modal.closing .modal-content {
animation: fallAwayClose 0.75s ease forwards;
}

.modal-header {
background-color: #B303C3;
padding: 16px 24px;
display: flex;
justify-content: space-between;
align-items: center;
}

.modal-header h3 {
color: white;
font-size: 1.5rem;
}

.close-modal {
background: none;
border: none;
font-size: 1.8rem;
cursor: pointer;
color: white;
font-weight: bold;
transition: 0.2s;
}

.close-modal:hover {
transform: scale(1.2);
}

.modal-body {
padding: 30px 28px;
color: white;
line-height: 1.5;
background-color: black;
}

.modal-body p {
margin-bottom: 18px;
}

.modal-footer {
background-color: black;
padding: 20px;
border-top: 1px solid #333;
text-align: center;
}

.modal-footer img {
height: 45px;
width: auto;
display: inline-block;
cursor: pointer;
transition: opacity 0.2s;
}

.modal-footer img:hover {
opacity: 0.8;
}

.two-column-layout {
display: flex;
gap: 30px;
align-items: flex-start;
}

.left-col {
flex: 1;
text-align: center;
}

.left-col img {
width: 100%;
max-width: 200px;
border-radius: 16px;
background-color: #333;
}

.right-col {
flex: 1;
display: flex;
flex-direction: column;
gap: 16px;
}

.modal-pill-btn {
background-color: #B303C3;
border: none;
border-radius: 60px;
padding: 12px 16px;
font-size: 1rem;
font-weight: 600;
color: white;
text-align: center;
cursor: pointer;
transition: all 0.25s ease;
width: 100%;
}

.modal-pill-btn:hover {
background-color: black;
transform: scale(1.02);
}

.email-modal-btn {
background-color: transparent;
border: 2px solid #B303C3;
border-radius: 60px;
padding: 12px 16px;
font-size: 1rem;
font-weight: 600;
color: #B303C3;
text-align: center;
cursor: pointer;
transition: all 0.25s ease;
width: 100%;
text-decoration: none;
display: inline-block;
}

.email-modal-btn:hover {
background-color: #B303C3;
color: white;
transform: scale(1.02);
}

.bio-action-buttons {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 25px;
flex-wrap: wrap;
}

.bio-action-btn {
background-color: #B303C3;
border: none;
border-radius: 60px;
padding: 10px 24px;
font-size: 1rem;
font-weight: 600;
color: white;
cursor: pointer;
transition: all 0.25s ease;
text-decoration: none;
display: inline-block;
}

.bio-action-btn:hover {
background-color: black;
transform: scale(1.02);
}

.email-study-btn {
display: inline-block;
background-color: transparent;
border: 2px solid white;
border-radius: 60px;
padding: 12px 24px;
margin: 10px 0 20px;
font-size: 1.1rem;
font-weight: bold;
color: white;
text-decoration: none;
transition: all 0.25s ease;
}

.email-study-btn:hover {
background-color: #B303C3;
border-color: #B303C3;
color: white;
transform: scale(1.03);
}

.address-block {
margin-top: 20px;
margin-bottom: 10px;
font-size: 0.95rem;
line-height: 1.6;
border-top: 1px solid #333;
padding-top: 18px;
}

@keyframes slideUpOpen {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fallAwayClose {
from {
opacity: 1;
transform: translateY(0) rotate(0deg);
}
to {
opacity: 0;
transform: translateY(40px) rotate(2deg);
}
}

@media (max-width: 800px) {
.hero-split {
flex-direction: column;
gap: 30px;
}
.sticky-menu {
padding: 0 20px;
}
.container {
padding: 15px 20px;
}
.moved-title {
font-size: 1.8rem;
margin-top: 30px;
}
.bible-study-main-title {
font-size: 2rem;
}
.vertical-logo {
width: 280px;
}
.two-column-layout {
flex-direction: column;
align-items: center;
}
.right-col {
width: 100%;
}
.segmented-btn {
max-width: 100%;
}
.segmented-btn-left {
width: 70px;
height: 70px;
}
.segmented-btn-left svg {
width: 58px;
height: 58px;
}
.disclaimer-links {
flex-wrap: wrap;
gap: 12px;
}
.footer {
flex-direction: column;
text-align: center;
gap: 20px;
}
body {
overflow: hidden;
}
.main-content {
overflow-y: auto;
}
}