/* Lakeview Homepage Styles */
/* ==========================================================
   HOMEPAGE
   ========================================================== */

.homepage-hero{
    background:#f8f6f2;
    padding:30px 0;
}

.homepage-container{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
align-items:start;
}

.hero-logo{
    width:240px;
    max-width:100%;
    margin-bottom:30px;
}

.hero-tagline{
    text-transform:uppercase;
    letter-spacing:4px;
    color:#8d8d8d;
    font-size:11px;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:18px;
    line-height:1.05;
    font-weight:300;
    color:#2f2f2f;
    margin-bottom:30px;
}

.hero-intro{
    font-size:15px;
    line-height:1.5;
    color:#666;
    max-width:520px;
}

.hero-image img{
    width:100%;
    display:block;
    border-radius:260px 260px 0 0;
}

.hero-divider{
    display:flex;
    align-items:center;
    gap:18px;
    margin:25px 0;
}

.hero-divider span:first-child,
.hero-divider span:last-child{
    flex:1;
    height:1px;
    background:#ddd;
}

.hero-divider .heart{
    color:#d9b67b;
    font-size:18px;
}
/* Welcome Section */

.welcome-section{
    background:#f8f6f2;
    padding:80px 0;
}

.welcome-section h2{
    text-align:center;
    font-size:42px;
    color:#555;
    margin-bottom:25px;
}

.welcome-section > .homepage-container > p{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
    font-size:20px;
    line-height:1.7;
    color:#666;
}

.welcome-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:40px;
}

.welcome-grid > div{
    background:white;
    padding:35px;
    border-radius:25px;
    text-align:center;
}

.welcome-grid h3{
    font-size:24px;
    color:#555;
    margin-bottom:15px;
}

.welcome-grid p{
    font-size:17px;
    line-height:1.6;
    color:#666;
}
/* Why families choose Lakeview section */

.strengths-section {
    background:#f8f3eb;
    padding:70px 20px;
}

.strengths-section h2 {
    text-align:center;
    font-size:36px;
    color:#555;
    margin-bottom:20px;
}

.strengths-section > .homepage-container > p {
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
    font-size:20px;
    line-height:1.7;
    color:#666;
}

.strengths-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.strengths-grid > div {
    background:white;
    padding:30px;
    border-radius:25px;
    text-align:center;
}

.strengths-grid h3 {
    font-size:24px;
    color:#555;
    margin-bottom:15px;
}

.strengths-grid p {
    font-size:17px;
    line-height:1.6;
    color:#666;
}