/* HERO IMAGE */
.hero-image-wrap {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(60,120,80,0.13);
    margin-bottom: 32px;
}
.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-content {
    text-align: center;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #e6ffb2;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #3e4c3a44;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #e6ffb2;
    font-weight: 400;
    margin-bottom: 18px;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 8px;
}
.hero-btn {
    background: #e6ffb2;
    color: #3e4c3a;
    padding: 12px 32px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(60,120,80,0.10);
    transition: background 0.2s, color 0.2s;
}
.hero-btn.alt {
    background: #3e4c3a;
    color: #e6ffb2;
}
.hero-btn:hover {
    background: #c5e1a5;
    color: #2e3c2a;
}

/* SERVICES PREVIEW */
.services-preview {
    width: 100%;
    margin-bottom: 32px;
}
.service-preview-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.service-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(60,120,80,0.08);
    overflow: hidden;
    width: 240px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.service-preview img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}
.service-preview-title {
    font-size: 1.1rem;
    color: #388e3c;
    font-weight: 600;
    padding: 12px 0;
}

/* INTRO SECTION */
.intro-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
}
.intro-text {
    flex: 1;
    min-width: 220px;
}
.intro-img {
    flex: 1;
    min-width: 220px;
}
.intro-landscape {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(60,120,80,0.10);
}
.about-link {
    display: inline-block;
    margin-top: 12px;
    color: #388e3c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.about-link:hover {
    color: #43a047;
    text-decoration: underline;
}

/* STATS SECTION */
.stats {
    width: 100%;
    background: #f7fff7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(60,120,80,0.04);
    margin-bottom: 32px;
    padding: 32px 0;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}
.stat {
    text-align: center;
    font-size: 1.2rem;
    color: #388e3c;
}
.stat span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #43a047;
    margin-bottom: 8px;
}

/* PROCESS SECTION (DARK) */
.process.dark {
    background: #1b2b1b;
    color: #e6ffb2;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(60,120,80,0.13);
}
.process.dark h2 {
    color: #e6ffb2;
}
.process.dark .step {
    background: #263a26;
    color: #e6ffb2;
    box-shadow: 0 2px 12px rgba(60,120,80,0.13);
}
.process.dark .step h3 {
    color: #e6ffb2;
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.process.dark .step p span {
    color: #c5e1a5;
    font-size: 0.95rem;
}
.process-btn-wrap {
    text-align: center;
    margin-top: 24px;
}
.process-btn {
    background: #e6ffb2;
    color: #263a26;
    padding: 12px 32px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(60,120,80,0.10);
    transition: background 0.2s, color 0.2s;
}
.process-btn:hover {
    background: #c5e1a5;
    color: #2e3c2a;
}

/* Gartenhouse - Cafe Wellness Space Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background: linear-gradient(135deg, #e8f5e9 0%, #fffde4 100%);
    min-height: 100vh;
    color: #3e4c3a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(255,255,255,0.95);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(60,120,80,0.10);
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    padding: 48px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    margin-bottom: 32px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #4caf50;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #7e9e7e;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

section {
    width: 100%;
    margin: 0 auto 32px auto;
    background: rgba(245,255,245,0.7);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(60,120,80,0.04);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    color: #388e3c;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

p {
    font-size: 1.15rem;
    color: #4e5d4e;
    text-align: center;
    max-width: 700px;
    margin-bottom: 10px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
}
.step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(60,120,80,0.07);
    padding: 18px 16px;
    min-width: 140px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.step:hover {
    box-shadow: 0 6px 18px rgba(60,120,80,0.13);
    background: #e8f5e9;
}
.step h3 {
    color: #43a047;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.step p {
    font-size: 1rem;
    color: #5d6d5d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
    width: 100%;
}
.service {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(60,120,80,0.07);
    padding: 18px 16px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.service:hover {
    box-shadow: 0 6px 18px rgba(60,120,80,0.13);
    background: #f1f8e9;
}
.service h3 {
    color: #388e3c;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.service p {
    font-size: 1rem;
    color: #5d6d5d;
}

.tagline {
    font-size: 1.5rem;
    color: #43a047;
    font-weight: 400;
    margin-bottom: 8px;
    font-style: italic;
    text-align: center;
}
.sub-tagline {
    font-size: 1rem;
    color: #7e9e7e;
    text-align: center;
    letter-spacing: 1px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 18px;
    width: 100%;
}
.contact-item {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 1rem;
    color: #4e5d4e;
    box-shadow: 0 1px 4px rgba(60,120,80,0.05);
}
.contact-item a {
    color: #388e3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: #43a047;
    text-decoration: underline;
}

.navigation {
    margin-top: 24px;
    text-align: center;
}
.nav-link {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #a5d6a7, #fffde4);
    color: #388e3c;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(60,120,80,0.08);
    transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
    background: linear-gradient(135deg, #43a047, #fffde4);
    color: #fff;
}

@media (max-width: 900px) {
    .container {
        max-width: 98vw;
        padding: 24px 8px;
    }
    section {
        padding: 18px 8px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 8px 2px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
}