* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #f7f5ef;
}

header {
    min-height: 90px;
    padding: 0 8%;
    background: white;

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

header h1 {
    margin: 0;
    color: #b89645;
    letter-spacing: 3px;
    font-size: 28px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #172033;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #b89645;
}

#home {
    min-height: 520px;
    padding: 120px 8%;

    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 43, 0.82),
            rgba(8, 25, 43, 0.30)
        ),
        url("../images/Komplex.jpg");
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

#home h2 {
    max-width: 700px;
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
}

#home p {
    max-width: 620px;
    margin-bottom: 36px;
    font-size: 20px;
    line-height: 1.6;
}

#home > a {
    display: inline-block;
    padding: 14px 24px;

    background: #b89645;
    color: white;

    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

#goals {
    padding: 80px 8%;
    background: #f7f5ef;
}

#goals > h2 {
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
    font-size: 38px;
}

#goals h3 {
    color: #b89645;
    font-size: 23px;
}

#goals p {
    max-width: 750px;
    margin-bottom: 40px;
    line-height: 1.7;
}

#contact {
    padding: 70px 8%;
    background: white;
}

#contact h2 {
    font-size: 34px;
}

footer {
    padding: 25px 8%;
    background: #172033;
    color: white;
    text-align: center;
}.goal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-card {
    padding: 32px 26px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(23, 32, 51, 0.08);
}

.goal-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;

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

    border-radius: 50%;
    background: #efe7d3;
    color: #9b7b32;

    font-size: 24px;
    font-weight: bold;
}

.goal-card h3 {
    margin-top: 0;
}

.goal-card p {
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    .goal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .goal-grid {
        grid-template-columns: 1fr;
    }
}.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 15px;
}

.language-switcher button {
    padding: 6px 8px;
    border: 1px solid #d8d1c0;
    background: transparent;
    color: #172033;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.language-switcher button:hover {
    background: #b89645;
    border-color: #b89645;
    color: white;
}.language-switcher button.active {
    background: #b89645;
    border-color: #b89645;
    color: white;
}#development {
    padding: 45px 8%;
    background: white;
}

.development-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 35px 40px;
    border-left: 4px solid #b89645;
    background: #f7f5ef;
    border-radius: 8px;
}

.development-label {
    color: #9b7b32;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.development-box h2 {
    margin: 12px 0;
    font-size: 30px;
}

.development-box p {
    margin-bottom: 0;
    max-width: 800px;
    line-height: 1.7;
}.community-page {
    min-height: 100vh;
    background: #f7f5ef;
    color: #172033;
}


/* ---------- Header ---------- */

.community-header {
    padding: 70px 8% 55px;
    background: #172033;
    color: white;
}

.community-header > a {
    color: #d5b45a;
    text-decoration: none;
    font-weight: 600;
}

.community-header > p:first-of-type {
    margin-top: 35px;
    margin-bottom: 8px;
    color: #d5b45a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.community-header h1 {
    max-width: 850px;
    margin: 12px 0 18px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
}

.community-header p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.9;
}


/* ---------- Sections ---------- */

.community-section {
    padding: 65px 8%;
}

.community-section > h2 {
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 34px;
}


/* ---------- Three overview cards ---------- */

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.community-card {
    padding: 34px 30px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
}

.community-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;

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

    border-radius: 50%;
    background: #efe7d3;
    color: #9b7b32;

    font-weight: 700;
    font-size: 21px;
}

.community-card h3 {
    margin-top: 0;
    font-size: 23px;
}

.community-card p {
    line-height: 1.65;
}

.community-card a {
    display: inline-block;
    margin-top: 12px;

    color: #9b7b32;
    text-decoration: none;
    font-weight: 700;
}

.community-card a:hover {
    text-decoration: underline;
}


/* ---------- Detail sections ---------- */

.community-detail {
    max-width: 1100px;
    margin: 0 auto;
}

.community-post {
    padding: 28px 30px;
    background: white;
    border-left: 4px solid #b89645;
    border-radius: 8px;
}

.community-date {
    color: #7d8490;
    font-size: 14px;
}


/* ---------- Photo strip ---------- */

.community-gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 12px;

    padding: 20px 8% 70px;
}

.community-photo {
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
}

.community-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------- Mobile ---------- */

@media (max-width: 900px) {

    .community-header {
        padding: 55px 6% 45px;
    }

    .community-section {
        padding: 50px 6%;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .community-gallery {
        grid-template-columns: 1fr;
        padding: 10px 6% 55px;
    }

    .community-photo {
        height: 240px;
    }
}.project-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    gap: 38px;
    margin-top: 35px;
    padding: 32px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
}

.project-feature-image {
    min-height: 420px;
    overflow: hidden;
    border-radius: 10px;
}

.project-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-feature-content h3 {
    margin: 10px 0 18px;
    font-size: 30px;
}

.project-feature-content > p {
    line-height: 1.7;
}

.project-process {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.project-process > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ece7dc;
}

.project-process strong {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #efe7d3;
    color: #9b7b32;
}

.project-process p {
    margin: 0;
}

.project-note {
    padding: 18px 20px;
    background: #f7f5ef;
    border-left: 4px solid #b89645;
    border-radius: 6px;
}

.project-legal {
    margin-top: 16px;
    color: #687080;
    font-size: 14px;
}

@media (max-width: 850px) {
    .project-feature {
        grid-template-columns: 1fr;
    }

    .project-feature-image {
        min-height: 300px;
    }
}.project-financing {
    margin: 30px 0;
}

.project-financing h4 {
    margin: 0 0 20px;
    font-size: 20px;
}

.finance-steps {
    max-width: 650px;
}

.finance-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    align-items: start;

    padding: 16px 18px;
    background: #f7f5ef;
    border-radius: 9px;
}

.finance-step > span {
    width: 34px;
    height: 34px;

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

    border-radius: 50%;
    background: #b89645;
    color: white;
    font-weight: bold;
}

.finance-step strong {
    display: block;
    margin-bottom: 5px;
}

.finance-step p {
    margin: 0;
    line-height: 1.55;
}

.finance-arrow {
    padding: 3px 0 3px 15px;
    color: #b89645;
    font-size: 22px;
}

.finance-repeat {
    border: 1px dashed #b89645;
}

.finance-final {
    background: #172033;
    color: white;
}

.finance-final > span {
    background: #d5b45a;
    color: #172033;
}