{
font-family: ‚Segoe UI‘, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(–text-dark);
background-color: var(–light-gold);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header & Navigation */
header {
background-color: var(–light-gold);
border-bottom: 3px solid var(–primary);
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo {
font-size: 28px;
font-weight: bold;
color: var(–primary);
text-decoration: none;
}
nav {
display: flex;
gap: 30px;
align-items: center;
}
nav a {
color: var(–text-dark);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: var(–primary);
}
.cta-button {
background-color: var(–primary);
color: white;
padding: 10px 25px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: var(–dark-violet);
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, rgba(147, 18, 113, 0.1), rgba(123, 25, 97, 0.1)),
url(‚data:image/svg+xml,‚);
background-size: cover;
background-position: center;
color: white;
padding: 120px 20px;
text-align: center;
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.hero p {
font-size: 20px;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn-primary {
background-color: var(–primary);
color: white;
padding: 15px 40px;
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary:hover {
background-color: var(–dark-violet);
}
.btn-secondary {
background-color: transparent;
color: white;
padding: 15px 40px;
border: 2px solid white;
border-radius: 30px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-secondary:hover {
background-color: white;
color: var(–primary);
}
/* KGS Method Section */
.kgs-method {
padding: 80px 20px;
background-color: white;
}
.section-title {
text-align: center;
font-size: 36px;
color: var(–primary);
margin-bottom: 50px;
}
.kgs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}
.kgs-card {
text-align: center;
padding: 30px;
background-color: var(–light-gold);
border-radius: 15px;
border-left: 5px solid var(–primary);
transition: transform 0.3s, box-shadow 0.3s;
}
.kgs-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(147, 18, 113, 0.2);
}
.kgs-card h3 {
color: var(–primary);
font-size: 24px;
margin-bottom: 15px;
}
.kgs-card p {
color: var(–text-light);
line-height: 1.8;
}
/* Services Section */
.services {
padding: 80px 20px;
background-color: var(–light-gold);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.service-card {
background-color: white;
padding: 30px;
border-radius: 10px;
border-top: 4px solid var(–primary);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: box-shadow 0.3s;
}
.service-card:hover {
box-shadow: 0 10px 25px rgba(147, 18, 113, 0.15);
}
.service-card h4 {
color: var(–primary);
margin-bottom: 15px;
font-size: 20px;
}
.service-card p {
color: var(–text-light);
font-size: 14px;
line-height: 1.7;
}
/* Seminars Section */
.seminars {
padding: 80px 20px;
background-color: white;
}
.seminars-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.seminar-card {
background: linear-gradient(135deg, var(–light-gold), var(–highlight-gold));
padding: 30px;
border-radius: 10px;
border-left: 5px solid var(–primary);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.seminar-card h4 {
color: var(–primary);
margin-bottom: 10px;
font-size: 20px;
}
.seminar-info {
font-size: 13px;
color: var(–text-light);
margin-bottom: 15px;
}
.seminar-card p {
color: var(–text-dark);
line-height: 1.7;
margin-bottom: 15px;
}
/* Shop Section */
.shop {
padding: 80px 20px;
background-color: var(–light-gold);
}
.shop-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.shop-card {
background-color: white;
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.shop-card:hover {
transform: translateY(-5px);
}
.shop-card h4 {
color: var(–primary);
margin-bottom: 15px;
font-size: 22px;
}
.shop-card p {
color: var(–text-light);
margin-bottom: 20px;
line-height: 1.7;
}
.shop-link {
display: inline-block;
background-color: var(–primary);
color: white;
padding: 10px 25px;
border-radius: 20px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s;
}
.shop-link:hover {
background-color: var(–dark-violet);
}
/* Contact Section */
.contact {
padding: 80px 20px;
background-color: white;
}
.contact-content {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
color: var(–primary);
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid var(–light-gold);
border-radius: 5px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(–primary);
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.form-submit {
width: 100%;
background-color: var(–primary);
color: white;
padding: 15px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
}
.form-submit:hover {
background-color: var(–dark-violet);
}
/* Testimonials Section */
.testimonials {
padding: 80px 20px;
background-color: var(–light-gold);
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.testimonial-card {
background-color: white;
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(–primary);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-text {
color: var(–text-light);
margin-bottom: 15px;
font-style: italic;
line-height: 1.8;
}
.testimonial-author {
color: var(–primary);
font-weight: bold;
}
/* Footer */
footer {
background-color: var(–primary);
color: white;
padding: 40px 20px;
text-align: center;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
text-align: left;
}
.footer-section h4 {
margin-bottom: 15px;
color: var(–highlight-gold);
}
.footer-section p,
.footer-section a {
color: rgba(255,255,255,0.9);
text-decoration: none;
font-size: 14px;
line-height: 1.8;
}
.footer-section a:hover {
color: var(–highlight-gold);
}
.social-links {
display: flex;
gap: 15px;
margin-top: 10px;
}
.social-links a {
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(255,255,255,0.2);
border-radius: 50%;
line-height: 40px;
text-align: center;
transition: background-color 0.3s;
}
.social-links a:hover {
background-color: var(–highlight-gold);
color: var(–primary);
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 20px;
font-size: 13px;
}
/* Responsive */
@media (max-width: 768px) {
nav {
display: none;
}
.hero h1 {
font-size: 32px;
}
.hero p {
font-size: 16px;
}
.section-title {
font-size: 28px;
}
.kgs-grid,
.services-grid,
.seminars-grid,
.shop-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-section p,
.footer-section a {
text-align: center;
}
.social-links {
justify-content: center;
}
}
Heilung für Körper, Geist & Seele
Entdecke die transformative Kraft der ganzheitlichen Heilung. Mit der KGS-Methode verbinde ich 5000 Jahre altes Wissen mit modernem spirituellem Verständnis.
Die KGS-Methode
🌿 Körper
Ethno Health Produkte mit 5000 Jahren altem Wissen aus aller Welt, besonders aus China. Natürliche Heilmittel für physische Gesundheit und Vitalität.
🧠 Geist
Hypnose wirkt tief im Unterbewusstsein. Ich begleite dich zu neuen Zielen für Heilung und Transformation auf mentaler Ebene.
✨ Seele
Engel und aufgestiegene Meister unterstützen dich mit Lichtkristallen und Lichtdiamanten. Blockaden lösen, höhere Frequenzen erreichen, in Fülle fließen.
Über mich
Ich bin eine zertifizierte Heilerin, Christuslichtpriesterin, Hypnosetherapeutin und Ethno Health Coach. Meine Reise begann mit eigenen Herausforderungen, die mich zur Heilung führten.
Mit der KGS-Methode verbinde ich drei Dimensionen der Heilung: den physischen Körper durch Ethno Health, den Geist durch Hypnose und die Seele durch spirituelle Lichtarbeit.
Ich begleite auch Klienten, die mit Krebs kämpfen, durch ihren Heilungsprozess – egal ob schulmedizinisch, alternativ oder beides.
Zertifizierungen:
- ✓ Gabriel Palacios Hypnose
- ✓ Schweizerischer Hypnose Verband (VSH)
- ✓ National Guild of Hypnotists (NGH)
- ✓ Ethno Health Coach
- ✓ Christuslichtpriestwrin
Meine Leistungen
Aura-Reinigung
Reinige deine Energiefeld von Blockaden und negativen Einflüssen. Deine Aura strahlt wieder in voller Kraft und Schönheit.
Licht-Operationen
Energetische Heilungsarbeit auf höchster Ebene. Mit Lichtkristallen und Lichtdiamanten transformiere ich deine Blockaden.
Geistige Wirbelsäulenaufrichtung
Richte deine Wirbelsäule energetisch auf. Schmerzen lösen sich, Energie fließt frei, Heilung wird möglich.
Blockadenlösung
Identifiziere und löse Blockaden in allen Lebensbereichen. Liebe, Beruf, Gesundheit, Finanzen – alles kann heilen.
Krebs-Begleitung
Ich begleite dich durch deinen Heilungsprozess. Mit Verständnis, Kraft und spiritueller Unterstützung auf deinem Weg.
Hypnose-Sessions
Einzelne Hypnose-Sessions für tiefe Transformation. Dein Unterbewusstsein wird neu programmiert für Heilung und Erfolg.
Seminare
Pendeln mit Engeln
Lerne, mit Engeln und aufgestiegenen Meistern zu kommunizieren. Erhalte Führung, Klarheit und spirituelle Weisheit direkt von höheren Ebenen.
Das Vereinigte Herzchakra
Öffne und heile dein Herzchakra. Verbinde dich mit Liebe, Mitgefühl und höheren Frequenzen. Emotionale Heilung auf tiefster Ebene.
GWA (Geistige Wirbelsäulenaufrichtung Advanced)
Erweiterte Ausbildung in geistiger Wirbelsäulenaufrichtung. Meistere diese kraftvolle Heilmethode und heile dich und andere.
Quantensprung
Erlebe einen transformativen Bewusstseinssprung. Mit Quantenenergien ermögliche dir eine neue Realität und höhere Frequenzen.
Shop
Litios Lichtkristalle
Hochwertige Lichtkristalle und Lichtdiamanten für spirituelle Heilung und Energiearbeit. Jeder Kristall trägt seine eigene Frequenz und Kraft.
Ethno Health Produkte
5000 Jahre altes Wissen aus aller Welt, besonders aus China. Natürliche Produkte für Körpergesundheit und Vitalität.
Hypnose-Ausbildung
Lerne Hypnose von Gabriel Palacios. Zertifizierte Ausbildung für professionelle Hypnotherapie. Mehr Infos auf palacios-relations.ch
Erfahrungsberichte
„Mein Leben hat sich komplett verändert. Die Arbeit mit der KGS-Methode hat mir geholfen, meine Blockaden zu lösen und in Fülle zu fließen.“
„Die Hypnose-Sessions haben mir bei meinen Ängsten geholfen. Ich fühle mich befreiter und lebendiger als je zuvor.“
„Während meiner Krebsbehandlung war die Unterstützung unbezahlbar. Ich habe mich nie allein gefühlt und bin jetzt gesund.“
„Das Seminar ‚Vereinigtes Herzchakra‘ hat mein Verständnis für Liebe und Mitgefühl völlig transformiert.“
Kontakt & Kennenlern-Gespräch
Interessiert? Buche ein kostenloses Kennenlern-Gespräch mit mir. Ich beantworte alle deine Fragen und wir schauen gemeinsam, wie ich dir helfen kann.
Mit dem Absenden akzeptierst du unsere Datenschutzerklärung.