| ... |
... |
@@ -1,201 +1,113 @@ |
| 1 |
1 |
/* ============================ |
| 2 |
|
- Agnease Theme (scoped) |
|
2 |
+ Agnease – UI polish pack |
|
3 |
+ (scoped to #contentcontainer) |
| 3 |
3 |
============================ */ |
| 4 |
|
-#contentcontainer { |
| 5 |
|
- --brand: #00937D; /* Primary UI color (accessible vs white) */ |
| 6 |
|
- --brand-strong: #007B6A; /* Hover/active */ |
| 7 |
|
- --text: #2D3A34; /* Body text */ |
| 8 |
|
- --muted: #5B6B64; /* Secondary text */ |
| 9 |
|
- --panel: #F7F9F8; /* Light panels / chips */ |
| 10 |
|
- --line: #E4ECE9; /* Subtle borders */ |
| 11 |
|
- --success: #4CAF50; |
| 12 |
|
- --warning: #F9A825; |
| 13 |
|
- --danger: #E53935; |
| 14 |
|
- --info: #0277BD; |
| 15 |
|
- --radius: 14px; |
| 16 |
|
- --radius-sm: 10px; |
| 17 |
|
- --shadow: 0 8px 24px rgba(0,0,0,.06); |
|
5 |
+#contentcontainer{ |
|
6 |
+ --brand:#00937D; |
|
7 |
+ --brand-strong:#007B6A; |
|
8 |
+ --text:#2D3A34; |
|
9 |
+ --muted:#5B6B64; |
|
10 |
+ --panel:#F7F9F8; |
|
11 |
+ --line:#E4ECE9; |
|
12 |
+ --radius:14px; |
|
13 |
+ --radius-sm:10px; |
|
14 |
+ --shadow-sm:0 4px 16px rgba(0,0,0,.05); |
|
15 |
+ --shadow:0 10px 32px rgba(0,0,0,.08); |
| 18 |
18 |
} |
| 19 |
19 |
|
| 20 |
|
-/* Base text & links */ |
| 21 |
|
-#contentcontainer { |
| 22 |
|
- color: var(--text); |
| 23 |
|
-} |
| 24 |
|
-#contentcontainer a { |
| 25 |
|
- color: var(--brand); |
| 26 |
|
- text-decoration: none; |
| 27 |
|
-} |
| 28 |
|
-#contentcontainer a:hover { |
| 29 |
|
- color: var(--brand-strong); |
| 30 |
|
- text-decoration: underline; |
| 31 |
|
-} |
|
18 |
+/* 1) Typographic rhythm */ |
|
19 |
+#contentcontainer h1{font-size:clamp(1.6rem,2.2vw + .8rem,2.4rem);line-height:1.15;margin:.3rem 0 .4rem} |
|
20 |
+#contentcontainer h2{font-size:clamp(1.3rem,1.2vw + .8rem,1.8rem);line-height:1.2;margin:.2rem 0 .35rem} |
|
21 |
+#contentcontainer h3{font-size:1.08rem;margin:.2rem 0 .2rem} |
|
22 |
+#contentcontainer p{margin:.35rem 0 .9rem;color:var(--text)} |
|
23 |
+#contentcontainer .lead{color:var(--muted);max-width:72ch} |
| 32 |
32 |
|
| 33 |
|
-/* Headings & helpers */ |
| 34 |
|
-#contentcontainer .eyebrow { |
| 35 |
|
- display: inline-block; |
| 36 |
|
- font-size: 0.8rem; |
| 37 |
|
- font-weight: 700; |
| 38 |
|
- text-transform: uppercase; |
| 39 |
|
- letter-spacing: 0.14em; |
| 40 |
|
- color: var(--brand); |
| 41 |
|
- margin: 0 0 .4rem; |
| 42 |
|
-} |
| 43 |
|
-#contentcontainer h1, |
| 44 |
|
-#contentcontainer h2, |
| 45 |
|
-#contentcontainer h3 { |
| 46 |
|
- margin: .25rem 0 .5rem; |
| 47 |
|
- line-height: 1.2; |
| 48 |
|
-} |
| 49 |
|
-#contentcontainer .lead { |
| 50 |
|
- color: var(--muted); |
| 51 |
|
- max-width: 72ch; |
| 52 |
|
-} |
|
25 |
+/* 2) Section spacing + subtle separators */ |
|
26 |
+#contentcontainer section{padding:2.2rem 0;border-top:1px solid var(--line)} |
|
27 |
+#contentcontainer section:first-child{border-top:none;padding-top:1.6rem} |
| 53 |
53 |
|
| 54 |
|
-/* Layout utilities */ |
| 55 |
|
-#contentcontainer section { |
| 56 |
|
- padding: 2.5rem 0; |
| 57 |
|
- border-top: 1px solid var(--line); |
|
29 |
+/* 3) Eyebrow + links */ |
|
30 |
+#contentcontainer .eyebrow{ |
|
31 |
+ display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.14em; |
|
32 |
+ text-transform:uppercase;color:var(--brand);margin:0 0 .35rem |
| 58 |
58 |
} |
| 59 |
|
-#contentcontainer .cards, |
|
34 |
+#contentcontainer a{color:var(--brand);text-decoration:none} |
|
35 |
+#contentcontainer a:hover{color:var(--brand-strong);text-decoration:underline} |
|
36 |
+ |
|
37 |
+/* 4) Grids */ |
| 60 |
60 |
#contentcontainer .pillars, |
| 61 |
61 |
#contentcontainer .services-grid, |
| 62 |
|
-#contentcontainer .process-steps, |
| 63 |
|
-#contentcontainer .highlights { |
| 64 |
|
- display: grid; |
| 65 |
|
- gap: 1rem; |
|
40 |
+#contentcontainer .cards, |
|
41 |
+#contentcontainer .process-steps{display:grid;gap:1rem} |
|
42 |
+#contentcontainer .pillars{grid-template-columns:1fr} |
|
43 |
+#contentcontainer .services-grid{grid-template-columns:1fr} |
|
44 |
+@media (min-width:780px){ |
|
45 |
+ #contentcontainer .pillars{grid-template-columns:repeat(3,1fr)} |
|
46 |
+ #contentcontainer .services-grid{grid-template-columns:repeat(3,1fr)} |
| 66 |
66 |
} |
| 67 |
|
-#contentcontainer .cards-3, |
| 68 |
|
-#contentcontainer .services-grid { grid-template-columns: 1fr; } |
| 69 |
|
-#contentcontainer .pillars { grid-template-columns: 1fr; } |
| 70 |
|
-#contentcontainer .process-steps { counter-reset: step; list-style: none; padding: 0; } |
| 71 |
71 |
|
| 72 |
|
-@media (min-width: 740px) { |
| 73 |
|
- #contentcontainer .pillars { grid-template-columns: repeat(3, 1fr); } |
| 74 |
|
- #contentcontainer .cards-3, |
| 75 |
|
- #contentcontainer .services-grid { grid-template-columns: repeat(3, 1fr); } |
| 76 |
|
-} |
| 77 |
|
- |
| 78 |
|
-/* Cards & articles */ |
| 79 |
|
-#contentcontainer .card, |
|
49 |
+/* 5) Cards / articles */ |
|
50 |
+#contentcontainer .pillars > article, |
| 80 |
80 |
#contentcontainer .services-grid > article, |
| 81 |
|
-#contentcontainer .pillars > article { |
| 82 |
|
- background: #fff; |
| 83 |
|
- border: 1px solid var(--line); |
| 84 |
|
- border-radius: var(--radius); |
| 85 |
|
- padding: 1rem 1.1rem; |
| 86 |
|
- box-shadow: var(--shadow); |
|
52 |
+#contentcontainer .card{ |
|
53 |
+ background:#fff;border:1px solid var(--line);border-radius:var(--radius); |
|
54 |
+ padding:1rem 1.1rem;box-shadow:var(--shadow-sm);transition:transform .18s ease, box-shadow .18s ease |
| 87 |
87 |
} |
| 88 |
|
-#contentcontainer .card h3, |
| 89 |
|
-#contentcontainer .services-grid h3, |
| 90 |
|
-#contentcontainer .pillars h3 { |
| 91 |
|
- margin: .25rem 0 .35rem; |
| 92 |
|
- font-size: 1.05rem; |
|
56 |
+#contentcontainer .services-grid > article:hover, |
|
57 |
+#contentcontainer .pillars > article:hover{ |
|
58 |
+ transform:translateY(-2px);box-shadow:var(--shadow) |
| 93 |
93 |
} |
| 94 |
|
-#contentcontainer .card p, |
|
60 |
+#contentcontainer .services-grid h3, |
|
61 |
+#contentcontainer .pillars h3{font-weight:700} |
| 95 |
95 |
#contentcontainer .services-grid p, |
| 96 |
|
-#contentcontainer .pillars p { |
| 97 |
|
- margin: 0; |
| 98 |
|
- color: var(--muted); |
| 99 |
|
-} |
| 100 |
|
-#contentcontainer .card ul, |
| 101 |
|
-#contentcontainer .services-grid ul { |
| 102 |
|
- margin: .6rem 0 0; |
| 103 |
|
- padding-left: 1.1rem; |
| 104 |
|
- color: var(--muted); |
| 105 |
|
-} |
|
63 |
+#contentcontainer .pillars p{color:var(--muted);margin:0} |
| 106 |
106 |
|
| 107 |
|
-/* Process steps */ |
| 108 |
|
-#contentcontainer .process-steps > li { |
| 109 |
|
- background: #fff; |
| 110 |
|
- border: 1px solid var(--line); |
| 111 |
|
- border-radius: var(--radius); |
| 112 |
|
- padding: 1rem 1.1rem; |
| 113 |
|
- box-shadow: var(--shadow); |
|
65 |
+/* 6) Lists inside cards */ |
|
66 |
+#contentcontainer .services-grid ul{margin:.6rem 0 0;padding-left:1.15rem;color:var(--muted)} |
|
67 |
+#contentcontainer .services-grid li{margin:.15rem 0} |
|
68 |
+#contentcontainer .benefits, |
|
69 |
+#contentcontainer .highlights{display:flex;flex-wrap:wrap;gap:.55rem 1rem;padding-left:0;list-style:none;color:var(--muted)} |
|
70 |
+#contentcontainer .highlights li{ |
|
71 |
+ background:var(--panel);border:1px solid var(--line);border-radius:var(--radius-sm);padding:.55rem .8rem |
| 114 |
114 |
} |
| 115 |
|
-#contentcontainer .process-steps > li h3 { |
| 116 |
|
- margin: 0 0 .25rem; |
| 117 |
|
-} |
| 118 |
118 |
|
| 119 |
|
-/* Highlights list */ |
| 120 |
|
-#contentcontainer .highlights { |
| 121 |
|
- grid-template-columns: 1fr; |
|
74 |
+/* 7) CTA buttons (if used inside this container) */ |
|
75 |
+#contentcontainer .btn{ |
|
76 |
+ display:inline-flex;align-items:center;gap:.55rem; |
|
77 |
+ padding:.78rem 1rem;border-radius:12px;font-weight:650;letter-spacing:.2px; |
|
78 |
+ border:2px solid transparent;box-shadow:var(--shadow-sm);cursor:pointer |
| 122 |
122 |
} |
| 123 |
|
-@media (min-width: 740px) { |
| 124 |
|
- #contentcontainer .highlights { |
| 125 |
|
- grid-template-columns: repeat(2, 1fr); |
| 126 |
|
- } |
| 127 |
|
-} |
| 128 |
|
-#contentcontainer .highlights li { |
| 129 |
|
- background: var(--panel); |
| 130 |
|
- border: 1px solid var(--line); |
| 131 |
|
- border-radius: var(--radius-sm); |
| 132 |
|
- padding: .7rem .9rem; |
| 133 |
|
-} |
|
80 |
+#contentcontainer .btn-primary{background:var(--brand);color:#fff} |
|
81 |
+#contentcontainer .btn-primary:hover{background:var(--brand-strong)} |
|
82 |
+#contentcontainer .btn-ghost{background:#fff;color:var(--brand);border-color:var(--brand)} |
|
83 |
+#contentcontainer .btn-ghost:hover{color:var(--brand-strong);border-color:var(--brand-strong)} |
|
84 |
+#contentcontainer .btn:focus-visible{outline:3px solid var(--brand);outline-offset:2px} |
| 134 |
134 |
|
| 135 |
|
-/* Buttons */ |
| 136 |
|
-#contentcontainer .btn { |
| 137 |
|
- display: inline-flex; |
| 138 |
|
- align-items: center; |
| 139 |
|
- gap: .55rem; |
| 140 |
|
- padding: .78rem 1rem; |
| 141 |
|
- border-radius: 12px; |
| 142 |
|
- font-weight: 650; |
| 143 |
|
- letter-spacing: .2px; |
| 144 |
|
- cursor: pointer; |
| 145 |
|
- border: 2px solid transparent; |
| 146 |
|
- box-shadow: var(--shadow); |
|
86 |
+/* 8) Process steps */ |
|
87 |
+#contentcontainer .process-steps{list-style:none;padding:0;grid-template-columns:1fr} |
|
88 |
+@media (min-width:780px){#contentcontainer .process-steps{grid-template-columns:repeat(3,1fr)}} |
|
89 |
+#contentcontainer .process-steps > li{ |
|
90 |
+ background:#fff;border:1px solid var(--line);border-radius:var(--radius); |
|
91 |
+ padding:1rem 1.1rem;box-shadow:var(--shadow-sm) |
| 147 |
147 |
} |
| 148 |
|
-#contentcontainer .btn-primary { |
| 149 |
|
- background: var(--brand); |
| 150 |
|
- color: #fff; |
| 151 |
|
-} |
| 152 |
|
-#contentcontainer .btn-primary:hover { |
| 153 |
|
- background: var(--brand-strong); |
| 154 |
|
-} |
| 155 |
|
-#contentcontainer .btn-ghost { |
| 156 |
|
- background: #fff; |
| 157 |
|
- color: var(--brand); |
| 158 |
|
- border-color: var(--brand); |
| 159 |
|
-} |
| 160 |
|
-#contentcontainer .btn-ghost:hover { |
| 161 |
|
- color: var(--brand-strong); |
| 162 |
|
- border-color: var(--brand-strong); |
| 163 |
|
-} |
| 164 |
164 |
|
| 165 |
|
-/* Forms */ |
| 166 |
|
-#contentcontainer .contact-form .form-row { |
| 167 |
|
- display: grid; |
| 168 |
|
- gap: .4rem; |
| 169 |
|
- margin-bottom: .9rem; |
| 170 |
|
-} |
| 171 |
|
-#contentcontainer .contact-form label { |
| 172 |
|
- font-weight: 600; |
| 173 |
|
-} |
|
94 |
+/* 9) Details/FAQ */ |
|
95 |
+#contentcontainer details{border:1px solid var(--line);border-radius:var(--radius-sm);padding:.75rem .9rem;background:#fff;margin:.6rem 0} |
|
96 |
+#contentcontainer details summary{cursor:pointer;font-weight:650} |
|
97 |
+#contentcontainer details[open]{box-shadow:var(--shadow-sm)} |
|
98 |
+ |
|
99 |
+/* 10) Forms (contact) */ |
|
100 |
+#contentcontainer .contact-form .form-row{display:grid;gap:.4rem;margin-bottom:.9rem} |
|
101 |
+#contentcontainer .contact-form label{font-weight:600} |
| 174 |
174 |
#contentcontainer .contact-form input, |
| 175 |
|
-#contentcontainer .contact-form textarea { |
| 176 |
|
- width: 100%; |
| 177 |
|
- padding: .75rem .9rem; |
| 178 |
|
- border: 1px solid var(--line); |
| 179 |
|
- border-radius: var(--radius-sm); |
| 180 |
|
- color: var(--text); |
| 181 |
|
- background: #fff; |
| 182 |
|
- font: inherit; |
|
103 |
+#contentcontainer .contact-form textarea{ |
|
104 |
+ width:100%;padding:.75rem .9rem;border:1px solid var(--line);border-radius:var(--radius-sm); |
|
105 |
+ color:var(--text);background:#fff;font:inherit |
| 183 |
183 |
} |
| 184 |
184 |
#contentcontainer .contact-form input:focus, |
| 185 |
|
-#contentcontainer .contact-form textarea:focus, |
| 186 |
|
-#contentcontainer a:focus { |
| 187 |
|
- outline: 3px solid var(--brand); |
| 188 |
|
- outline-offset: 2px; |
| 189 |
|
-} |
|
108 |
+#contentcontainer .contact-form textarea:focus{outline:3px solid var(--brand);outline-offset:2px} |
| 190 |
190 |
|
| 191 |
|
-/* Small helpers */ |
| 192 |
|
-#contentcontainer .benefits { |
| 193 |
|
- display: flex; |
| 194 |
|
- flex-wrap: wrap; |
| 195 |
|
- gap: .6rem 1rem; |
| 196 |
|
- padding-left: 0; |
| 197 |
|
- list-style: none; |
| 198 |
|
- color: var(--muted); |
| 199 |
|
-} |
| 200 |
|
-#contentcontainer .cta-line { margin-top: .8rem; } |
|
110 |
+/* 11) Small niceties */ |
|
111 |
+#contentcontainer .cta-line{margin-top:.8rem} |
|
112 |
+#contentcontainer .service-summary{padding-left:1.1rem;color:var(--muted)} |
| 201 |
201 |
|