1425 lines
29 KiB
CSS
1425 lines
29 KiB
CSS
/* ==========================================================================
|
|
Tino Andri - SelbstHeilungsTechnik & QuantenHeilung
|
|
Modern, calming design for a healing practice
|
|
========================================================================== */
|
|
|
|
/* --------------------------------------------------------------------------
|
|
CSS Variables - Design Tokens
|
|
-------------------------------------------------------------------------- */
|
|
:root {
|
|
/* Colors - Earthy, calming palette */
|
|
--color-primary: #5a7d6c; /* Sage green */
|
|
--color-primary-dark: #456459;
|
|
--color-primary-light: #7a9d8c;
|
|
--color-secondary: #c4a77d; /* Warm sand */
|
|
--color-secondary-light: #ddc9a8;
|
|
|
|
--color-text: #2d3436;
|
|
--color-text-light: #636e72;
|
|
--color-text-muted: #95a5a6;
|
|
|
|
--color-bg: #faf9f7; /* Warm white */
|
|
--color-bg-alt: #f0eeea;
|
|
--color-white: #ffffff;
|
|
|
|
/* Typography */
|
|
--font-heading: 'Cormorant Garamond', Georgia, serif;
|
|
--font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
|
|
/* Spacing */
|
|
--spacing-xs: 0.5rem;
|
|
--spacing-sm: 1rem;
|
|
--spacing-md: 2rem;
|
|
--spacing-lg: 4rem;
|
|
--spacing-xl: 6rem;
|
|
|
|
/* Transitions */
|
|
--transition-fast: 0.2s ease;
|
|
--transition-base: 0.3s ease;
|
|
--transition-slow: 0.5s ease;
|
|
|
|
/* Border radius */
|
|
--radius-sm: 4px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 16px;
|
|
|
|
/* Shadows */
|
|
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Reset & Base
|
|
-------------------------------------------------------------------------- */
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-body);
|
|
font-size: 16px;
|
|
line-height: 1.7;
|
|
color: var(--color-text);
|
|
background-color: var(--color-bg);
|
|
overflow-x: hidden;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-primary);
|
|
text-decoration: none;
|
|
transition: color var(--transition-fast);
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--color-primary-dark);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Typography
|
|
-------------------------------------------------------------------------- */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-heading);
|
|
font-weight: 500;
|
|
line-height: 1.3;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
|
|
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
|
|
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
|
|
|
|
p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Layout
|
|
-------------------------------------------------------------------------- */
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 var(--spacing-md);
|
|
}
|
|
|
|
.section {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.section-title {
|
|
margin-bottom: var(--spacing-md);
|
|
position: relative;
|
|
}
|
|
|
|
.section-title::after {
|
|
content: '';
|
|
display: block;
|
|
width: 60px;
|
|
height: 2px;
|
|
background: var(--color-secondary);
|
|
margin-top: var(--spacing-sm);
|
|
}
|
|
|
|
.section-title-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.section-title-center::after {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.section-intro {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
color: var(--color-text-light);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Buttons
|
|
-------------------------------------------------------------------------- */
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 0.875rem 2rem;
|
|
font-family: var(--font-body);
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.5px;
|
|
text-transform: uppercase;
|
|
border: none;
|
|
border-radius: var(--radius-sm);
|
|
cursor: pointer;
|
|
transition: all var(--transition-base);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--color-primary);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: var(--color-primary-dark);
|
|
color: var(--color-white);
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: transparent;
|
|
color: var(--color-primary);
|
|
border: 2px solid var(--color-primary);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: var(--color-primary);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.btn-full {
|
|
width: 100%;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Navigation
|
|
-------------------------------------------------------------------------- */
|
|
.nav {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
background: rgba(250, 249, 247, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.nav-logo {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.5rem;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.nav-menu a {
|
|
color: var(--color-text);
|
|
font-size: 0.85rem;
|
|
font-weight: 400;
|
|
padding: 0.5rem 0;
|
|
position: relative;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.nav-menu a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--color-primary);
|
|
transition: width var(--transition-base);
|
|
}
|
|
|
|
.nav-menu a:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-toggle {
|
|
display: none;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 5px;
|
|
}
|
|
|
|
.nav-toggle span {
|
|
display: block;
|
|
width: 25px;
|
|
height: 2px;
|
|
background: var(--color-text);
|
|
transition: var(--transition-fast);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Hero Section
|
|
-------------------------------------------------------------------------- */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
align-items: center;
|
|
gap: var(--spacing-lg);
|
|
padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-content {
|
|
padding-right: var(--spacing-md);
|
|
}
|
|
|
|
.hero-subtitle {
|
|
color: var(--color-primary);
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: clamp(3rem, 6vw, 5rem);
|
|
font-weight: 400;
|
|
margin-bottom: var(--spacing-sm);
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.hero-tagline {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.5rem;
|
|
font-style: italic;
|
|
color: var(--color-text-light);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.hero-image {
|
|
position: relative;
|
|
height: 100%;
|
|
min-height: 500px;
|
|
}
|
|
|
|
.hero-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Placeholder Images
|
|
-------------------------------------------------------------------------- */
|
|
.placeholder-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 300px;
|
|
background: linear-gradient(135deg, var(--color-bg-alt) 0%, #e8e6e2 100%);
|
|
border-radius: var(--radius-md);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.placeholder-image::before {
|
|
content: attr(data-text);
|
|
color: var(--color-text-muted);
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.placeholder-image::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border: 2px dashed var(--color-text-muted);
|
|
border-radius: var(--radius-md);
|
|
opacity: 0.3;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.placeholder-portrait {
|
|
aspect-ratio: 3/4;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.placeholder-wide {
|
|
aspect-ratio: 16/9;
|
|
min-height: 250px;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
About Section
|
|
-------------------------------------------------------------------------- */
|
|
.about {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.about-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.5fr;
|
|
gap: var(--spacing-lg);
|
|
align-items: center;
|
|
}
|
|
|
|
.about-text p {
|
|
color: var(--color-text-light);
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.about-text p:first-child::first-letter {
|
|
font-family: var(--font-heading);
|
|
font-size: 3.5rem;
|
|
float: left;
|
|
line-height: 1;
|
|
margin-right: 0.5rem;
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.about-img {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
height: auto;
|
|
aspect-ratio: 1/1;
|
|
object-fit: cover;
|
|
border-radius: var(--radius-md);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
/* Mentors */
|
|
.mentors {
|
|
margin-top: var(--spacing-md);
|
|
padding-top: var(--spacing-md);
|
|
border-top: 1px solid var(--color-bg-alt);
|
|
}
|
|
|
|
.mentors h3 {
|
|
font-size: 1.1rem;
|
|
color: var(--color-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.mentor-list {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.mentor-list li {
|
|
color: var(--color-text-light);
|
|
font-size: 0.95rem;
|
|
padding-left: 1rem;
|
|
position: relative;
|
|
}
|
|
|
|
.mentor-list li::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0.6em;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--color-secondary);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Angebot Section
|
|
-------------------------------------------------------------------------- */
|
|
.angebot-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.angebot-questions {
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.angebot-question {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.2rem;
|
|
font-style: italic;
|
|
color: var(--color-primary-dark);
|
|
padding-left: 1.5rem;
|
|
border-left: 3px solid var(--color-secondary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.angebot-text p {
|
|
color: var(--color-text-light);
|
|
font-size: 1.05rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.angebot-cta {
|
|
font-weight: 600;
|
|
color: var(--color-primary) !important;
|
|
font-size: 1.1rem !important;
|
|
margin-top: var(--spacing-sm);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Behandlung Section
|
|
-------------------------------------------------------------------------- */
|
|
.behandlung {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.behandlung-steps {
|
|
max-width: 800px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.behandlung-step {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.step-number {
|
|
flex-shrink: 0;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
background: var(--color-primary);
|
|
color: var(--color-white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: var(--font-heading);
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.step-content h3 {
|
|
margin-bottom: 0.5rem;
|
|
color: var(--color-primary-dark);
|
|
}
|
|
|
|
.step-content p {
|
|
color: var(--color-text-light);
|
|
}
|
|
|
|
/* Alltagstools */
|
|
.alltagstools {
|
|
max-width: 800px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
background: var(--color-bg);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.alltagstools h3 {
|
|
color: var(--color-primary-dark);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.alltagstools p {
|
|
color: var(--color-text-light);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.tools-list {
|
|
list-style: none;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 0.5rem;
|
|
margin: var(--spacing-sm) 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.tools-list li {
|
|
color: var(--color-text);
|
|
font-size: 0.95rem;
|
|
padding: 0.5rem 0.75rem;
|
|
background: var(--color-white);
|
|
border-radius: var(--radius-sm);
|
|
border-left: 3px solid var(--color-secondary);
|
|
}
|
|
|
|
/* Pricing */
|
|
.pricing-card {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
background: var(--color-bg);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.pricing-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-sm);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.pricing-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.75rem;
|
|
font-size: 1.05rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.pricing-item svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
min-width: 24px;
|
|
color: var(--color-primary);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.pricing-note {
|
|
color: var(--color-text-light);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.pricing-note-heart {
|
|
font-style: italic;
|
|
color: var(--color-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Coaching Section
|
|
-------------------------------------------------------------------------- */
|
|
.coaching {
|
|
background: var(--color-bg-alt);
|
|
}
|
|
|
|
.coaching-content {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.coaching-content p {
|
|
color: var(--color-text-light);
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.coaching-price {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.75rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
color: var(--color-primary-dark);
|
|
margin: var(--spacing-md) 0;
|
|
padding: var(--spacing-sm) 0;
|
|
border-top: 1px solid rgba(0,0,0,0.08);
|
|
border-bottom: 1px solid rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.coaching-price svg {
|
|
width: 28px;
|
|
height: 28px;
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Wissen (Selbstheilung) Section
|
|
-------------------------------------------------------------------------- */
|
|
.wissen {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.wissen-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.wissen-card {
|
|
background: var(--color-bg);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.wissen-card h3 {
|
|
color: var(--color-primary-dark);
|
|
margin-bottom: 0.75rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.wissen-card p {
|
|
color: var(--color-text-light);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.wissen-card-wide {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Quantenheilung Section
|
|
-------------------------------------------------------------------------- */
|
|
.quantenheilung {
|
|
background: var(--color-bg-alt);
|
|
}
|
|
|
|
.quanten-intro {
|
|
max-width: 800px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
text-align: center;
|
|
}
|
|
|
|
.quanten-intro p {
|
|
color: var(--color-text-light);
|
|
font-size: 1.05rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.quanten-block {
|
|
max-width: 800px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
}
|
|
|
|
.quanten-block > h3 {
|
|
text-align: center;
|
|
color: var(--color-primary-dark);
|
|
margin-bottom: var(--spacing-md);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.quanten-block > p {
|
|
color: var(--color-text-light);
|
|
font-size: 1rem;
|
|
line-height: 1.8;
|
|
text-align: center;
|
|
}
|
|
|
|
.quanten-steps {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.quanten-step {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.quanten-step h4 {
|
|
color: var(--color-primary-dark);
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.15rem;
|
|
}
|
|
|
|
.quanten-step p {
|
|
color: var(--color-text-light);
|
|
}
|
|
|
|
/* Vorteile Grid */
|
|
.vorteile-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.vorteil-card {
|
|
background: var(--color-white);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-md);
|
|
text-align: center;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.vorteil-card h4 {
|
|
color: var(--color-primary);
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.vorteil-card p {
|
|
color: var(--color-text-light);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
/* Fazit */
|
|
.quanten-fazit {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
background: var(--color-primary);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-md);
|
|
text-align: center;
|
|
}
|
|
|
|
.quanten-fazit h3 {
|
|
color: var(--color-white);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.quanten-fazit p {
|
|
color: var(--color-secondary-light);
|
|
font-size: 1.05rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Quote Section
|
|
-------------------------------------------------------------------------- */
|
|
.quote-section {
|
|
background: var(--color-primary);
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.quote {
|
|
text-align: center;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.quote p {
|
|
font-family: var(--font-heading);
|
|
font-size: clamp(1.5rem, 3vw, 2rem);
|
|
font-style: italic;
|
|
color: var(--color-white);
|
|
line-height: 1.6;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.quote cite {
|
|
color: var(--color-secondary-light);
|
|
font-style: normal;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Workshop Zielgruppe
|
|
-------------------------------------------------------------------------- */
|
|
.workshop-zielgruppe {
|
|
background: var(--color-bg);
|
|
padding: var(--spacing-sm);
|
|
border-radius: var(--radius-sm);
|
|
margin: var(--spacing-sm) 0;
|
|
}
|
|
|
|
.workshop-zielgruppe h4 {
|
|
color: var(--color-primary);
|
|
margin-bottom: 0.25rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.workshop-zielgruppe p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.workshop-cta-text {
|
|
font-weight: 600;
|
|
color: var(--color-primary-dark) !important;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Workshops Section
|
|
-------------------------------------------------------------------------- */
|
|
.workshop-card {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--spacing-md);
|
|
background: var(--color-white);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.workshop-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 400px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.workshop-content {
|
|
padding: var(--spacing-md);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.workshop-tag {
|
|
display: inline-block;
|
|
background: var(--color-secondary-light);
|
|
color: var(--color-text);
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: var(--spacing-sm);
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.workshop-content h3 {
|
|
font-size: 1.75rem;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.workshop-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-xs);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.workshop-detail {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-xs);
|
|
color: var(--color-text-light);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.workshop-detail svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
color: var(--color-primary);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.workshop-content p {
|
|
color: var(--color-text-light);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.workshop-content .btn {
|
|
align-self: flex-start;
|
|
margin-top: var(--spacing-sm);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Testimonials Section
|
|
-------------------------------------------------------------------------- */
|
|
.testimonials {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.testimonials-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.testimonial-card {
|
|
background: var(--color-bg);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-md);
|
|
border-left: 4px solid var(--color-secondary);
|
|
position: relative;
|
|
}
|
|
|
|
.testimonial-card::before {
|
|
content: '\201E';
|
|
font-family: var(--font-heading);
|
|
font-size: 4rem;
|
|
color: var(--color-secondary-light);
|
|
position: absolute;
|
|
top: 0.25rem;
|
|
left: 1rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.testimonial-card blockquote {
|
|
padding-top: 1.5rem;
|
|
}
|
|
|
|
.testimonial-card blockquote p {
|
|
color: var(--color-text-light);
|
|
font-size: 0.95rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.testimonial-highlight {
|
|
font-weight: 600;
|
|
color: var(--color-primary) !important;
|
|
font-size: 1.1rem !important;
|
|
text-align: center;
|
|
margin: var(--spacing-sm) 0;
|
|
}
|
|
|
|
.testimonial-card cite {
|
|
display: block;
|
|
margin-top: var(--spacing-sm);
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
color: var(--color-primary-dark);
|
|
font-family: var(--font-heading);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.testimonial-card-long {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.testimonial-card-romansh {
|
|
grid-column: 1 / -1;
|
|
border-left-color: var(--color-primary-light);
|
|
}
|
|
|
|
.testimonial-card-romansh blockquote p {
|
|
font-style: italic;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Contact Section
|
|
-------------------------------------------------------------------------- */
|
|
.contact {
|
|
background: var(--color-bg-alt);
|
|
}
|
|
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.5fr;
|
|
gap: var(--spacing-lg);
|
|
align-items: start;
|
|
}
|
|
|
|
.contact-info p {
|
|
color: var(--color-text-light);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.contact-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.contact-item svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
color: var(--color-primary);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.contact-form {
|
|
background: var(--color-white);
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--radius-md);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.25rem;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 0.75rem 1rem;
|
|
font-family: var(--font-body);
|
|
font-size: 1rem;
|
|
border: 1px solid #ddd;
|
|
border-radius: var(--radius-sm);
|
|
transition: border-color var(--transition-fast);
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: var(--color-primary);
|
|
}
|
|
|
|
.form-group textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Footer
|
|
-------------------------------------------------------------------------- */
|
|
.footer {
|
|
background: var(--color-text);
|
|
color: var(--color-white);
|
|
padding: var(--spacing-lg) 0 var(--spacing-md);
|
|
}
|
|
|
|
.footer-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: var(--spacing-md);
|
|
padding-bottom: var(--spacing-md);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.footer-logo {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.footer-brand p {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-size: 0.9rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.footer-links a {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-bottom p {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Responsive Design
|
|
-------------------------------------------------------------------------- */
|
|
|
|
/* Tablet landscape / small desktop — nav + grids collapse */
|
|
@media (max-width: 1024px) {
|
|
.hero {
|
|
grid-template-columns: 1fr;
|
|
min-height: auto;
|
|
padding-top: calc(80px + var(--spacing-md));
|
|
}
|
|
|
|
.hero-content {
|
|
padding-right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-image {
|
|
min-height: 350px;
|
|
order: -1;
|
|
}
|
|
|
|
.about-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.about-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.workshop-card {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.workshop-img {
|
|
min-height: 250px;
|
|
}
|
|
|
|
.contact-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.vorteile-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.testimonials-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.testimonial-card-long,
|
|
.testimonial-card-romansh {
|
|
grid-column: auto;
|
|
}
|
|
}
|
|
|
|
/* Tablet portrait — hamburger nav, single columns */
|
|
@media (max-width: 768px) {
|
|
.nav-menu {
|
|
position: fixed;
|
|
top: 60px;
|
|
left: 0;
|
|
right: 0;
|
|
background: var(--color-bg);
|
|
flex-direction: column;
|
|
padding: var(--spacing-md);
|
|
gap: 0;
|
|
box-shadow: var(--shadow-md);
|
|
transform: translateY(-100%);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all var(--transition-base);
|
|
max-height: calc(100vh - 60px);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.nav-menu.active {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.nav-menu li {
|
|
border-bottom: 1px solid var(--color-bg-alt);
|
|
}
|
|
|
|
.nav-menu li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.nav-menu a {
|
|
display: block;
|
|
padding: 0.75rem 0;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.nav-toggle {
|
|
display: flex;
|
|
}
|
|
|
|
.nav-toggle.active span:nth-child(1) {
|
|
transform: rotate(45deg) translate(5px, 5px);
|
|
}
|
|
|
|
.nav-toggle.active span:nth-child(2) {
|
|
opacity: 0;
|
|
}
|
|
|
|
.nav-toggle.active span:nth-child(3) {
|
|
transform: rotate(-45deg) translate(5px, -5px);
|
|
}
|
|
|
|
.hero-image {
|
|
min-height: 250px;
|
|
}
|
|
|
|
.hero-tagline {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.wissen-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.wissen-card-wide {
|
|
grid-column: auto;
|
|
}
|
|
|
|
.vorteile-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.quanten-block > h3 {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.behandlung-step,
|
|
.quanten-step {
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.step-number {
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.pricing-item {
|
|
font-size: 0.95rem;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.angebot-question {
|
|
font-size: 1.05rem;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.tools-list {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.footer-content {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.footer-links {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
}
|
|
|
|
/* Mobile — tighter spacing, full-width everything */
|
|
@media (max-width: 480px) {
|
|
:root {
|
|
--spacing-md: 1.25rem;
|
|
--spacing-lg: 2.5rem;
|
|
--spacing-xl: 3.5rem;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 var(--spacing-sm);
|
|
}
|
|
|
|
.btn {
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.hero-image {
|
|
min-height: 200px;
|
|
}
|
|
|
|
.about-text p:first-child::first-letter {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.behandlung-step,
|
|
.quanten-step {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.step-content {
|
|
width: 100%;
|
|
}
|
|
|
|
.alltagstools {
|
|
padding: var(--spacing-sm);
|
|
}
|
|
|
|
.tools-list {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.pricing-card {
|
|
padding: var(--spacing-sm);
|
|
}
|
|
|
|
.pricing-item {
|
|
font-size: 0.9rem;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.testimonial-card {
|
|
padding: var(--spacing-sm);
|
|
padding-top: calc(var(--spacing-sm) + 1rem);
|
|
}
|
|
|
|
.testimonial-card::before {
|
|
font-size: 3rem;
|
|
top: 0;
|
|
left: 0.75rem;
|
|
}
|
|
|
|
.quanten-fazit {
|
|
padding: var(--spacing-sm);
|
|
}
|
|
|
|
.contact-form {
|
|
padding: var(--spacing-sm);
|
|
}
|
|
|
|
.workshop-content {
|
|
padding: var(--spacing-sm);
|
|
}
|
|
|
|
.footer-links {
|
|
gap: 0.5rem 1rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Animations
|
|
-------------------------------------------------------------------------- */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.fade-in-up {
|
|
animation: fadeInUp 0.6s ease forwards;
|
|
}
|
|
|
|
/* Reveal on scroll - add via JavaScript */
|
|
.reveal {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
transition: all 0.6s ease;
|
|
}
|
|
|
|
.reveal.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|