Initale Einrichtung
This commit is contained in:
@@ -0,0 +1,698 @@
|
||||
:root {
|
||||
--bg: #f4efe7;
|
||||
--bg-panel: rgba(255, 255, 255, 0.72);
|
||||
--card: #fdf9f2;
|
||||
--surface: #ffffff;
|
||||
--line: rgba(55, 35, 18, 0.12);
|
||||
--text: #1f160f;
|
||||
--muted: #6d5a4d;
|
||||
--accent: #bd5f2d;
|
||||
--accent-deep: #7a3412;
|
||||
--accent-soft: #f1d1ba;
|
||||
--success: #1f6c46;
|
||||
--error: #8a2630;
|
||||
--shadow: 0 24px 60px rgba(57, 35, 18, 0.14);
|
||||
--radius-lg: 28px;
|
||||
--radius-md: 18px;
|
||||
--radius-sm: 12px;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
font-family: "Avenir Next", "Segoe UI", sans-serif;
|
||||
color: var(--text);
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(203, 135, 77, 0.25), transparent 28%),
|
||||
radial-gradient(circle at 85% 15%, rgba(122, 52, 18, 0.12), transparent 22%),
|
||||
linear-gradient(180deg, #faf4eb 0%, var(--bg) 100%);
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.page-shell {
|
||||
width: min(1240px, calc(100% - 32px));
|
||||
margin: 0 auto;
|
||||
padding: 24px 0 72px;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 24px;
|
||||
padding: 18px 22px;
|
||||
position: sticky;
|
||||
top: 18px;
|
||||
z-index: 20;
|
||||
margin-bottom: 32px;
|
||||
background: rgba(252, 248, 241, 0.82);
|
||||
border: 1px solid rgba(255, 255, 255, 0.7);
|
||||
border-radius: 999px;
|
||||
backdrop-filter: blur(16px);
|
||||
box-shadow: 0 12px 30px rgba(58, 39, 24, 0.08);
|
||||
}
|
||||
|
||||
.brand {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
}
|
||||
|
||||
.brand strong,
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.brand small {
|
||||
display: block;
|
||||
color: var(--muted);
|
||||
font-size: 0.8rem;
|
||||
font-family: "Avenir Next", "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
.brand-mark {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
|
||||
color: white;
|
||||
font-weight: 700;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
|
||||
}
|
||||
|
||||
.site-nav {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.site-nav form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.primary-link,
|
||||
.button-primary,
|
||||
.button-secondary,
|
||||
.ghost-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
border-radius: 999px;
|
||||
padding: 14px 22px;
|
||||
border: 0;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
|
||||
}
|
||||
|
||||
.primary-link,
|
||||
.button-primary {
|
||||
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
|
||||
color: #fff;
|
||||
box-shadow: 0 18px 40px rgba(137, 63, 27, 0.24);
|
||||
}
|
||||
|
||||
.button-secondary {
|
||||
background: rgba(255, 255, 255, 0.72);
|
||||
color: var(--text);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.ghost-button {
|
||||
background: transparent;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.button-block {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.primary-link:hover,
|
||||
.button-primary:hover,
|
||||
.button-secondary:hover,
|
||||
.ghost-button:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
main {
|
||||
display: grid;
|
||||
gap: 28px;
|
||||
}
|
||||
|
||||
.hero-section,
|
||||
.feature-strip,
|
||||
.content-grid,
|
||||
.pricing-panel,
|
||||
.availability-section,
|
||||
.booking-section,
|
||||
.faq-section,
|
||||
.admin-section,
|
||||
.admin-login-section {
|
||||
background: var(--bg-panel);
|
||||
border: 1px solid rgba(255, 255, 255, 0.7);
|
||||
box-shadow: var(--shadow);
|
||||
border-radius: var(--radius-lg);
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
display: grid;
|
||||
grid-template-columns: 1.2fr 0.9fr;
|
||||
gap: 28px;
|
||||
padding: 42px;
|
||||
}
|
||||
|
||||
.eyebrow {
|
||||
margin: 0 0 12px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.18em;
|
||||
font-size: 0.78rem;
|
||||
color: var(--accent-deep);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero-copy h1,
|
||||
.admin-login-card h1,
|
||||
.section-header h1 {
|
||||
margin: 0;
|
||||
font-size: clamp(2.6rem, 5vw, 4.8rem);
|
||||
line-height: 0.96;
|
||||
}
|
||||
|
||||
.hero-text,
|
||||
.pricing-panel p,
|
||||
.booking-copy p,
|
||||
.admin-login-card p {
|
||||
color: var(--muted);
|
||||
font-size: 1.05rem;
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 14px;
|
||||
margin: 28px 0 26px;
|
||||
}
|
||||
|
||||
.hero-points,
|
||||
.check-list,
|
||||
.compact-list {
|
||||
margin: 0;
|
||||
padding-left: 20px;
|
||||
color: var(--muted);
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.hero-card {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
padding: 18px;
|
||||
background:
|
||||
linear-gradient(145deg, rgba(255, 244, 232, 0.92), rgba(246, 225, 209, 0.85)),
|
||||
var(--card);
|
||||
border-radius: 24px;
|
||||
min-height: 520px;
|
||||
}
|
||||
|
||||
.hero-card-panel {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
padding: 16px 18px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255, 255, 255, 0.55);
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.hero-card-panel strong {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.hero-card-visual {
|
||||
position: relative;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
overflow: hidden;
|
||||
border-radius: 24px;
|
||||
min-height: 320px;
|
||||
background: linear-gradient(180deg, rgba(118, 59, 31, 0.15), rgba(33, 18, 11, 0.24));
|
||||
}
|
||||
|
||||
.camera-glow {
|
||||
position: absolute;
|
||||
width: 240px;
|
||||
height: 240px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle, rgba(255, 228, 195, 0.9) 0%, rgba(241, 179, 119, 0.15) 58%, transparent 72%);
|
||||
}
|
||||
|
||||
.camera-body {
|
||||
position: relative;
|
||||
width: 280px;
|
||||
height: 200px;
|
||||
border-radius: 30px;
|
||||
background: linear-gradient(180deg, #2a2320 0%, #13100f 100%);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 42px rgba(0, 0, 0, 0.35);
|
||||
}
|
||||
|
||||
.camera-body::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: -22px 40px auto auto;
|
||||
width: 90px;
|
||||
height: 70px;
|
||||
border-radius: 24px 24px 8px 8px;
|
||||
background: linear-gradient(180deg, #28211e 0%, #141111 100%);
|
||||
}
|
||||
|
||||
.camera-lens {
|
||||
position: absolute;
|
||||
inset: 34px auto auto 78px;
|
||||
width: 124px;
|
||||
height: 124px;
|
||||
border-radius: 50%;
|
||||
background:
|
||||
radial-gradient(circle at 42% 42%, rgba(95, 170, 221, 0.95) 0%, rgba(41, 86, 111, 0.9) 22%, rgba(4, 7, 10, 0.95) 58%, #050607 100%);
|
||||
border: 12px solid #4a403a;
|
||||
}
|
||||
|
||||
.camera-screen {
|
||||
position: absolute;
|
||||
inset: 48px 28px auto auto;
|
||||
width: 56px;
|
||||
height: 92px;
|
||||
border-radius: 16px;
|
||||
background: linear-gradient(180deg, rgba(255, 188, 125, 0.85), rgba(255, 240, 224, 0.22));
|
||||
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.feature-strip {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 18px;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.feature-strip article,
|
||||
.content-block,
|
||||
.pricing-aside,
|
||||
.booking-form-card,
|
||||
.table-card,
|
||||
.admin-login-card,
|
||||
.booking-info-card,
|
||||
.availability-card {
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius-md);
|
||||
}
|
||||
|
||||
.feature-strip article {
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.feature-strip h2,
|
||||
.content-block h2,
|
||||
.pricing-panel h2,
|
||||
.booking-copy h2,
|
||||
.faq-section h2,
|
||||
.table-card h2 {
|
||||
margin: 0 0 12px;
|
||||
font-size: clamp(1.6rem, 3vw, 2.3rem);
|
||||
}
|
||||
|
||||
.feature-strip p,
|
||||
.content-block span,
|
||||
.content-block p,
|
||||
.pricing-aside span,
|
||||
.availability-card span,
|
||||
.availability-card small,
|
||||
.faq-list p,
|
||||
.table-card p,
|
||||
.detail-list dd,
|
||||
.stack-form span,
|
||||
.stack-form label,
|
||||
.booking-form span,
|
||||
.form-note {
|
||||
color: var(--muted);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.content-grid,
|
||||
.booking-section,
|
||||
.detail-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 22px;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.content-block,
|
||||
.table-card,
|
||||
.admin-login-card {
|
||||
padding: 28px;
|
||||
}
|
||||
|
||||
.step-list {
|
||||
display: grid;
|
||||
gap: 18px;
|
||||
margin: 24px 0 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.step-list li {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
padding: 16px 18px;
|
||||
border-radius: var(--radius-sm);
|
||||
background: rgba(246, 232, 221, 0.72);
|
||||
}
|
||||
|
||||
.pricing-panel,
|
||||
.availability-section,
|
||||
.faq-section {
|
||||
padding: 28px;
|
||||
}
|
||||
|
||||
.pricing-panel {
|
||||
display: grid;
|
||||
grid-template-columns: 1.15fr 0.85fr;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.pricing-aside {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.pricing-aside strong,
|
||||
.price-summary strong,
|
||||
.stat-card strong {
|
||||
font-size: 1.45rem;
|
||||
}
|
||||
|
||||
.availability-list,
|
||||
.faq-list,
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.availability-list {
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.availability-card {
|
||||
padding: 20px;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.availability-card-empty {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.booking-section {
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.booking-info-card {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.booking-form-card {
|
||||
padding: 28px;
|
||||
}
|
||||
|
||||
.form-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.booking-form,
|
||||
.stack-form {
|
||||
display: grid;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
label {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
font-size: 0.96rem;
|
||||
}
|
||||
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
width: 100%;
|
||||
border-radius: 14px;
|
||||
border: 1px solid rgba(69, 42, 26, 0.16);
|
||||
background: rgba(255, 255, 255, 0.92);
|
||||
color: var(--text);
|
||||
padding: 14px 16px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.price-summary {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
padding: 18px;
|
||||
border-radius: 18px;
|
||||
background: rgba(245, 223, 202, 0.55);
|
||||
}
|
||||
|
||||
.flash {
|
||||
margin-bottom: 18px;
|
||||
padding: 14px 16px;
|
||||
border-radius: 16px;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.flash-success {
|
||||
background: rgba(31, 108, 70, 0.12);
|
||||
border-color: rgba(31, 108, 70, 0.2);
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
.flash-error {
|
||||
background: rgba(138, 38, 48, 0.1);
|
||||
border-color: rgba(138, 38, 48, 0.18);
|
||||
color: var(--error);
|
||||
}
|
||||
|
||||
.faq-list {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
margin-top: 18px;
|
||||
}
|
||||
|
||||
.faq-list article {
|
||||
padding: 20px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255, 255, 255, 0.58);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.admin-login-section {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 56px 24px;
|
||||
}
|
||||
|
||||
.admin-login-card {
|
||||
width: min(520px, 100%);
|
||||
}
|
||||
|
||||
.admin-section {
|
||||
padding: 28px;
|
||||
}
|
||||
|
||||
.narrow-section {
|
||||
max-width: 1100px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(6, minmax(0, 1fr));
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
padding: 20px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255, 255, 255, 0.72);
|
||||
border: 1px solid var(--line);
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.admin-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1.3fr 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.table-card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.table-wrap {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
padding: 14px 12px;
|
||||
border-bottom: 1px solid rgba(61, 41, 26, 0.1);
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
th {
|
||||
color: var(--muted);
|
||||
font-size: 0.82rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.detail-list {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.detail-list div {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.detail-list dt {
|
||||
color: var(--muted);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.detail-list dd {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 1080px) {
|
||||
.hero-section,
|
||||
.content-grid,
|
||||
.booking-section,
|
||||
.pricing-panel,
|
||||
.admin-grid,
|
||||
.detail-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 780px) {
|
||||
.page-shell {
|
||||
width: min(100% - 24px, 1240px);
|
||||
padding-top: 16px;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
border-radius: 28px;
|
||||
padding: 18px;
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
position: static;
|
||||
}
|
||||
|
||||
.feature-strip,
|
||||
.faq-list,
|
||||
.form-grid,
|
||||
.price-summary {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
|
||||
.hero-section,
|
||||
.feature-strip,
|
||||
.content-grid,
|
||||
.pricing-panel,
|
||||
.availability-section,
|
||||
.booking-section,
|
||||
.faq-section,
|
||||
.admin-section {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.hero-copy h1,
|
||||
.admin-login-card h1,
|
||||
.section-header h1 {
|
||||
font-size: 2.35rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 520px) {
|
||||
.stats-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.hero-actions,
|
||||
.section-header {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user