:root {
    --primary-orange: #E8956F;
    --cream-bg: #F5F0EB;
    --light-beige: #F9F7F4;
    --dark-gray: #4A4A4A;
    --medium-gray: #7A7A7A;
    --light-gray: #D4D4D4;
    --accent-orange: #F4A77D;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--cream-bg);
}





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== NAVIGATION ===== */
/* ===== NAVIGATION ===== */

.navbar {
background-color: var(--white);
padding: 1.5rem 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar .container {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1.2rem;
}

.logo {
font-size: 1.1rem;
font-weight: 600;
color: var(--dark-gray);
display: flex;
align-items: center;
gap: 0.5rem;
margin-left: 0.5rem;
}

.logo::before {
content: "♡";
color: var(--primary-orange);
font-size: 1.3rem;
}

.nav-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 0.8rem;
list-style: none;
width: 100%;
}

.nav-links a {
color: var(--dark-gray);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
padding: 0.6rem 1rem;
border-radius: 999px;
background-color: var(--light-beige);
transition: all 0.3s ease;
white-space: nowrap;
}

.nav-links a:hover {
background-color: var(--primary-orange);
color: var(--white);
transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
background: linear-gradient(135deg, rgba(232, 149, 111, 0.08) 0%, rgba(244, 167, 125, 0.08) 100%);
padding: 10rem 0 6rem;
text-align: center;
position: relative;
overflow: hidden;
}



.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="rgba(232,149,111,0.1)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 149, 111, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary-orange);
}

.btn-primary:hover {
    background-color: var(--accent-orange);
}

/* ===== MAIN CONTENT ===== */
main {
    min-height: 60vh;
    padding: 4rem 0;
}

section {
    margin: 4rem 0;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

h2 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===== INTRO/LEAD TEXT ===== */
.intro {
    text-align: center;
    padding: 2rem 0;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.9;
}

.intro-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

/* ===== CARDS GRID ===== */
.sections-overview,
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background-color: var(--light-beige);
    padding: 2.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card h3 {
    color: var(--dark-gray);
    margin-top: 0;
    font-size: 1.3rem;
}

.card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card .btn {
    align-self: flex-start;
}

/* ===== BELIEFS/VALUES ===== */
.core-message {
    background-color: var(--light-beige);
    padding: 4rem 0;
    margin: 4rem 0;
}

.beliefs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.belief, .value {
    text-align: center;
    padding: 2rem;
}

.belief h4, .value h4 {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
}

.belief p, .value p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== SERVICE LIST ===== */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.service h3 {
    color: var(--dark-gray);
    margin-top: 0;
}

/* ===== RESOURCE CATEGORIES ===== */
.resource-category {
    background-color: var(--light-beige);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-orange);
}

.resource-category h3 {
    color: var(--dark-gray);
    margin-top: 0;
}

/* ===== COMMUNITY CHANNELS ===== */

/* ===== COMMUNITY CHANNELS ===== */

.community-channels {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.8rem;
margin-top: 4rem;
align-items: stretch;
}

.channel {
background: rgba(255,255,255,0.82);
border-radius: 22px;
padding: 2rem;


box-shadow:
    0 8px 24px rgba(0,0,0,0.04),
    0 2px 8px rgba(232,149,111,0.06);

transition: all 0.3s ease;

display: flex;
flex-direction: column;
justify-content: space-between;

min-height: 250px;


}

.channel:hover {
transform: translateY(-4px);


box-shadow:
    0 14px 34px rgba(0,0,0,0.07),
    0 4px 14px rgba(232,149,111,0.10);


}

.channel h3 {
color: var(--dark-gray);
margin-top: 0;
font-size: 1.2rem;
}

.channel p {
margin-bottom: 1.5rem;
line-height: 1.8;
flex-grow: 1;
}

.channel .btn {
width: 100%;
text-align: center;
border-radius: 999px;
}

@media (max-width: 768px) {
.community-channels {
grid-template-columns: 1fr;
}
}



/* ===== SPECIAL SECTION - ORANGE CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    margin: 3rem 0;
}

.cta-section h3 {
    color: var(--white);
    margin-top: 0;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-orange);
    margin-top: 1rem;
}

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-method h3 {
    margin-top: 0;
}

.contact-method a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* ===== FORMS ===== */
.contact-form {
    background-color: var(--light-beige);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 149, 111, 0.1);
}

/* ===== NOTES & PLACEHOLDERS ===== */
.note {
    background-color: #FEF3E8;
    border-left: 4px solid var(--primary-orange);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.directory-placeholder {
    background-color: var(--light-beige);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 5px solid var(--primary-orange);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--cream-bg);
    color: var(--dark-gray);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--light-gray);
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

footer p {
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
}

footer h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

footer a {
    color: var(--primary-orange);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer ul {
    list-style: none;
    margin: 0;
}

footer li {
    margin-bottom: 0.6rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .cards,
    .beliefs,
    .service-list,
    .community-channels,
    .contact-methods,
    .sections-overview {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

/* ===== CONTACT PAGE MODERN LAYOUT ===== */

.contact-layout {
display: grid;
grid-template-columns: 1.2fr 0.9fr;
gap: 4rem;
margin-top: 4rem;
align-items: start;
}

.contact-form-column h2 {
text-align: left;
margin-bottom: 1.5rem;
}

.contact-form-column p {
margin-bottom: 2rem;
}

.contact-form {
background: rgba(255,255,255,0.75);
padding: 2.5rem;
border-radius: 24px;


box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

backdrop-filter: blur(10px);


}

.contact-form .btn {
width: 100%;
border-radius: 999px;
}

.contact-info-column {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.info-card {
background: rgba(255,255,255,0.78);
padding: 2rem;
border-radius: 22px;


box-shadow:
    0 8px 24px rgba(0,0,0,0.04);

transition: all 0.3s ease;


}

.info-card:hover {
transform: translateY(-4px);
}

.info-card h3 {
margin-top: 0;
margin-bottom: 1rem;
}

.emergency-note {
background: rgba(255, 235, 235, 0.75);
border: 1px solid rgba(255, 120, 120, 0.15);


padding: 1.8rem;
border-radius: 18px;


}

.emergency-note strong {
display: block;
margin-bottom: 1rem;
color: #D15A5A;
}

@media (max-width: 768px) {


.contact-layout {
    grid-template-columns: 1fr;
}

}
/* ===== ABOUT PAGE MODERN ===== */

.about-modern {
padding-top: 2rem;
}

.about-intro {
max-width: 850px;
margin: 0 auto 6rem;
}

.about-intro h2,
.mission-section h2 {
text-align: left;
margin-bottom: 2rem;
}

.about-intro p,
.mission-section p {
font-size: 1.05rem;
line-height: 2;
margin-bottom: 2rem;
}

/* FEATURE BLOCK */

.philosophy-highlight {
background: rgba(255,255,255,0.68);


padding: 4rem;
border-radius: 32px;

max-width: 900px;
margin: 0 auto 7rem;

box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

backdrop-filter: blur(10px);


}

.philosophy-highlight h2 {
text-align: left;
margin-bottom: 2rem;
}

.philosophy-highlight p {
line-height: 2;
margin-bottom: 1.8rem;
}

/* MISSION */

.mission-section {
max-width: 900px;
margin-bottom: 7rem;
}

.mission-list {
margin-top: 2rem;
padding-left: 1.2rem;
}

.mission-list li {
margin-bottom: 1.5rem;
line-height: 1.9;
}

/* PHILOSOPHIES */

.section-heading {
text-align: center;
margin-bottom: 5rem;
}

.section-heading p {
max-width: 700px;
margin: 0 auto;
}

.philosophy-grid {
display: flex;
flex-direction: column;
gap: 3rem;
}

.philosophy-item {
display: flex;
gap: 2.5rem;
align-items: flex-start;
}

.philosophy-number {
font-size: 4rem;
font-weight: 700;
color: rgba(232,149,111,0.18);
line-height: 1;
min-width: 90px;
}

.philosophy-content h3 {
margin-top: 0;
margin-bottom: 1rem;
}

.philosophy-content p {
line-height: 1.9;
}

@media (max-width: 768px) {


.philosophy-item {
    flex-direction: column;
    gap: 1rem;
}

.philosophy-highlight {
    padding: 2rem;
}
    }
/* ===== FOUNDER SECTION ===== */

.founder-section {
margin-top: 7rem;
margin-bottom: 2rem;
}

.founder-card {
display: grid;
grid-template-columns: 180px 1fr;
gap: 2.5rem;


align-items: center;

background: rgba(255,255,255,0.75);

padding: 2.5rem;
border-radius: 28px;

box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

backdrop-filter: blur(10px);


}

.founder-card img {
width: 180px;
height: 180px;


object-fit: cover;

border-radius: 20px;

display: block;


}

.founder-label {
display: inline-block;


font-size: 0.8rem;
letter-spacing: 1px;
text-transform: uppercase;

color: var(--primary-orange);

margin-bottom: 1rem;


}

.founder-content h3 {
margin-top: 0;
margin-bottom: 1rem;


font-size: 1.8rem;


}

.founder-content p {
line-height: 1.9;
margin-bottom: 1.2rem;
}

@media (max-width: 768px) {


.founder-card {
    grid-template-columns: 1fr;
}

.founder-card img {
    width: 160px;
    height: 160px;

    margin: 0 auto;
}


}


/* ===== MODERN HOMEPAGE ===== */

.section-heading {
text-align: center;
margin-bottom: 4rem;
}

.section-heading p {
max-width: 720px;
margin: 0 auto;
line-height: 1.9;
}

/* MISSION */

.homepage-mission {
padding: 7rem 0;
}

.mission-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 2rem;
}

.mission-card {
background: rgba(255,255,255,0.76);


border-radius: 28px;

padding: 3rem;

box-shadow:
    0 10px 30px rgba(0,0,0,0.04);

backdrop-filter: blur(10px);


}

.large-card {
min-height: 260px;
}

.small-card {
background: #EFE9E1;
}

.community-banner {
grid-column: span 2;


background: #E9964B;

border-radius: 28px;

padding: 3rem;

display: flex;
justify-content: space-between;
align-items: center;

gap: 2rem;

color: white;


}

.banner-content {
max-width: 700px;
}

.btn-light {
background: white;
color: #222;
}

.btn-light:hover {
background: #F7F7F7;
}

.card-icon {
width: 54px;
height: 54px;


border-radius: 16px;

background: rgba(255,255,255,0.45);

display: flex;
align-items: center;
justify-content: center;

margin-bottom: 1.5rem;

font-size: 1.4rem;


}

/* WHY */

.why-modern {
padding: 7rem 0;
}

.why-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.why-block {
padding: 1rem;
}

.featured-block {
background: rgba(255,255,255,0.7);


border-radius: 28px;

padding: 3rem;

box-shadow:
    0 10px 30px rgba(0,0,0,0.04);


}

.text-link {
display: inline-block;
margin-top: 1.5rem;


color: #222;
font-weight: 600;

text-decoration: none;


}

/* JOURNEY */

.journey-modern {
background: #E8E2D9;
padding: 7rem 0;
}

.journey-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.journey-card {
background: rgba(255,255,255,0.75);


border-radius: 24px;

padding: 2.5rem;

text-decoration: none;
color: inherit;

transition: all 0.3s ease;

box-shadow:
    0 8px 24px rgba(0,0,0,0.04);


}

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

.journey-card span {
display: inline-block;
margin-top: 1.5rem;


color: #E9964B;
font-weight: 600;


}

@media (max-width: 768px) {


.mission-layout,
.why-grid,
.journey-grid {
    grid-template-columns: 1fr;
}

.community-banner {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
}


}
