908 lines
16 KiB
CSS
908 lines
16 KiB
CSS
:root {
|
|
--bg: #f4f0e8;
|
|
--bg-panel: rgba(255, 252, 247, 0.84);
|
|
--card: #fffdf8;
|
|
--surface: #ffffff;
|
|
--line: rgba(30, 24, 19, 0.1);
|
|
--text: #171412;
|
|
--muted: #5a5048;
|
|
--accent: #b56a38;
|
|
--accent-deep: #6e3413;
|
|
--accent-soft: #edd8c9;
|
|
--trust: #2f5a4d;
|
|
--success: #1f6c46;
|
|
--error: #8a2630;
|
|
--shadow: 0 24px 60px rgba(33, 24, 17, 0.1);
|
|
--radius-lg: 32px;
|
|
--radius-md: 20px;
|
|
--radius-sm: 12px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family: "Trebuchet MS", "Gill Sans", sans-serif;
|
|
color: var(--text);
|
|
background:
|
|
radial-gradient(circle at top left, rgba(214, 171, 135, 0.2), transparent 28%),
|
|
radial-gradient(circle at 90% 12%, rgba(59, 95, 82, 0.08), transparent 26%),
|
|
linear-gradient(180deg, #fbf8f2 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.88);
|
|
border: 1px solid rgba(255, 255, 255, 0.75);
|
|
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: "Baskerville", "Iowan Old Style", Georgia, serif;
|
|
}
|
|
|
|
.brand strong,
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
font-family: "Baskerville", "Iowan Old Style", Georgia, serif;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.brand small {
|
|
display: block;
|
|
color: var(--muted);
|
|
font-size: 0.8rem;
|
|
font-family: "Trebuchet MS", "Gill Sans", 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.78);
|
|
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,
|
|
.trust-bar,
|
|
.feature-strip,
|
|
.content-grid,
|
|
.occasion-section,
|
|
.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.08fr 0.92fr;
|
|
gap: 34px;
|
|
padding: 48px;
|
|
}
|
|
|
|
.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.8rem, 5vw, 5rem);
|
|
line-height: 0.94;
|
|
}
|
|
|
|
.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-highlight-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.hero-highlight-card,
|
|
.feature-strip article,
|
|
.content-block,
|
|
.pricing-aside,
|
|
.booking-form-card,
|
|
.table-card,
|
|
.admin-login-card,
|
|
.booking-info-card,
|
|
.availability-card,
|
|
.trust-bar article,
|
|
.occasion-grid article,
|
|
.form-section {
|
|
background: rgba(255, 255, 255, 0.76);
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.hero-highlight-card {
|
|
padding: 16px 18px;
|
|
}
|
|
|
|
.hero-highlight-card span {
|
|
display: block;
|
|
color: var(--trust);
|
|
font-size: 0.76rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.12em;
|
|
margin-bottom: 8px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-highlight-card strong {
|
|
display: block;
|
|
font-size: 1rem;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.hero-card {
|
|
display: grid;
|
|
gap: 16px;
|
|
padding: 22px;
|
|
background:
|
|
linear-gradient(145deg, rgba(255, 251, 246, 0.95), rgba(246, 233, 220, 0.9)),
|
|
var(--card);
|
|
border-radius: 24px;
|
|
min-height: 520px;
|
|
border: 1px solid rgba(104, 65, 39, 0.12);
|
|
}
|
|
|
|
.hero-card-panel {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding: 16px 18px;
|
|
border-radius: 18px;
|
|
background: rgba(255, 255, 255, 0.58);
|
|
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: 340px;
|
|
background:
|
|
radial-gradient(circle at 50% 12%, rgba(255, 243, 229, 0.95), transparent 28%),
|
|
linear-gradient(180deg, rgba(212, 189, 170, 0.42), rgba(57, 43, 35, 0.08));
|
|
}
|
|
|
|
.device-plinth {
|
|
position: absolute;
|
|
bottom: 32px;
|
|
width: 220px;
|
|
height: 24px;
|
|
border-radius: 999px;
|
|
background: rgba(52, 38, 30, 0.12);
|
|
filter: blur(6px);
|
|
}
|
|
|
|
.camera-tower {
|
|
position: relative;
|
|
display: grid;
|
|
justify-items: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.camera-head {
|
|
position: relative;
|
|
width: 210px;
|
|
height: 230px;
|
|
border-radius: 30px;
|
|
background: linear-gradient(180deg, #25201c 0%, #12100e 100%);
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 42px rgba(0, 0, 0, 0.35);
|
|
}
|
|
|
|
.camera-head::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 18px 18px auto auto;
|
|
width: 58px;
|
|
height: 90px;
|
|
border-radius: 18px;
|
|
background: linear-gradient(180deg, rgba(239, 179, 137, 0.9), rgba(255, 252, 248, 0.18));
|
|
}
|
|
|
|
.camera-head::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: -20px auto auto 34px;
|
|
width: 72px;
|
|
height: 52px;
|
|
border-radius: 18px 18px 8px 8px;
|
|
background: linear-gradient(180deg, #28211e 0%, #141111 100%);
|
|
}
|
|
|
|
.camera-lens {
|
|
position: absolute;
|
|
inset: 54px auto auto 38px;
|
|
width: 132px;
|
|
height: 132px;
|
|
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-flash {
|
|
position: absolute;
|
|
inset: 32px 28px auto auto;
|
|
width: 26px;
|
|
height: 26px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, rgba(255, 251, 245, 1) 0%, rgba(246, 197, 151, 0.78) 58%, rgba(255, 255, 255, 0.15) 100%);
|
|
}
|
|
|
|
.camera-stand {
|
|
width: 18px;
|
|
height: 108px;
|
|
background: linear-gradient(180deg, #161311 0%, #3c342f 100%);
|
|
}
|
|
|
|
.camera-base {
|
|
width: 160px;
|
|
height: 14px;
|
|
border-radius: 999px;
|
|
background: #241d18;
|
|
}
|
|
|
|
.photo-strip {
|
|
position: absolute;
|
|
top: 46px;
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 14px 10px;
|
|
border-radius: 18px;
|
|
background: rgba(255, 255, 255, 0.78);
|
|
border: 1px solid rgba(31, 21, 14, 0.08);
|
|
color: var(--trust);
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
font-size: 0.76rem;
|
|
}
|
|
|
|
.photo-strip-left {
|
|
left: 28px;
|
|
transform: rotate(-8deg);
|
|
}
|
|
|
|
.photo-strip-right {
|
|
right: 28px;
|
|
top: 80px;
|
|
transform: rotate(7deg);
|
|
}
|
|
|
|
.trust-bar {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 14px;
|
|
padding: 18px;
|
|
}
|
|
|
|
.trust-bar article {
|
|
padding: 18px 20px;
|
|
}
|
|
|
|
.trust-bar span {
|
|
display: block;
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.12em;
|
|
color: var(--trust);
|
|
margin-bottom: 10px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.trust-bar strong {
|
|
display: block;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.feature-strip {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 18px;
|
|
padding: 24px;
|
|
}
|
|
|
|
.feature-strip article,
|
|
.content-block,
|
|
.table-card,
|
|
.admin-login-card {
|
|
padding: 28px;
|
|
}
|
|
|
|
.feature-strip h2,
|
|
.content-block h2,
|
|
.pricing-panel h2,
|
|
.booking-copy h2,
|
|
.faq-section h2,
|
|
.table-card h2,
|
|
.section-heading 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,
|
|
.occasion-grid span {
|
|
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;
|
|
}
|
|
|
|
.step-list {
|
|
display: grid;
|
|
gap: 18px;
|
|
margin: 24px 0 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.step-list li {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 18px 20px;
|
|
border-radius: 18px;
|
|
background: rgba(246, 238, 229, 0.72);
|
|
border-left: 4px solid var(--accent);
|
|
}
|
|
|
|
.step-list strong {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.step-number {
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
background: var(--text);
|
|
color: #fff;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.check-list,
|
|
.compact-list {
|
|
margin: 0;
|
|
padding-left: 20px;
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.pricing-panel,
|
|
.availability-section,
|
|
.faq-section,
|
|
.occasion-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;
|
|
}
|
|
|
|
.section-heading {
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.occasion-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.occasion-grid article {
|
|
padding: 22px;
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.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 small {
|
|
color: var(--trust);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.booking-form,
|
|
.stack-form {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.form-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.form-grid-two {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.form-section {
|
|
padding: 18px;
|
|
}
|
|
|
|
.form-section-header {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.form-section-header h3 {
|
|
margin: 6px 0 0;
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.form-step {
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.12em;
|
|
color: var(--trust);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.field-full {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
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(3, minmax(0, 1fr));
|
|
gap: 16px;
|
|
padding: 18px;
|
|
border-radius: 18px;
|
|
background: linear-gradient(135deg, rgba(244, 230, 217, 0.78), rgba(220, 234, 228, 0.72));
|
|
}
|
|
|
|
.price-summary-total {
|
|
border-left: 1px solid rgba(31, 21, 14, 0.12);
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.theme-admin .site-header {
|
|
background: rgba(250, 248, 244, 0.92);
|
|
}
|
|
|
|
@media (max-width: 1080px) {
|
|
.hero-section,
|
|
.content-grid,
|
|
.booking-section,
|
|
.pricing-panel,
|
|
.admin-grid,
|
|
.detail-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.trust-bar,
|
|
.occasion-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 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,
|
|
.hero-highlight-grid,
|
|
.trust-bar,
|
|
.occasion-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,
|
|
.occasion-section {
|
|
padding: 20px;
|
|
}
|
|
|
|
.hero-copy h1,
|
|
.admin-login-card h1,
|
|
.section-header h1 {
|
|
font-size: 2.35rem;
|
|
}
|
|
|
|
.price-summary-total {
|
|
border-left: 0;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 520px) {
|
|
.stats-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.hero-actions,
|
|
.section-header {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
}
|