| ... |
... |
@@ -1,0 +1,201 @@ |
|
1 |
+/* ============================ |
|
2 |
+ Agnease Theme (scoped) |
|
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); |
|
18 |
+} |
|
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 |
+} |
|
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 |
+} |
|
53 |
+ |
|
54 |
+/* Layout utilities */ |
|
55 |
+#contentcontainer section { |
|
56 |
+ padding: 2.5rem 0; |
|
57 |
+ border-top: 1px solid var(--line); |
|
58 |
+} |
|
59 |
+#contentcontainer .cards, |
|
60 |
+#contentcontainer .pillars, |
|
61 |
+#contentcontainer .services-grid, |
|
62 |
+#contentcontainer .process-steps, |
|
63 |
+#contentcontainer .highlights { |
|
64 |
+ display: grid; |
|
65 |
+ gap: 1rem; |
|
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 |
+ |
|
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, |
|
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); |
|
87 |
+} |
|
88 |
+#contentcontainer .card h3, |
|
89 |
+#contentcontainer .services-grid h3, |
|
90 |
+#contentcontainer .pillars h3 { |
|
91 |
+ margin: .25rem 0 .35rem; |
|
92 |
+ font-size: 1.05rem; |
|
93 |
+} |
|
94 |
+#contentcontainer .card p, |
|
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 |
+} |
|
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); |
|
114 |
+} |
|
115 |
+#contentcontainer .process-steps > li h3 { |
|
116 |
+ margin: 0 0 .25rem; |
|
117 |
+} |
|
118 |
+ |
|
119 |
+/* Highlights list */ |
|
120 |
+#contentcontainer .highlights { |
|
121 |
+ grid-template-columns: 1fr; |
|
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 |
+} |
|
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); |
|
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 |
+ |
|
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 |
+} |
|
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; |
|
183 |
+} |
|
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 |
+} |
|
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; } |
|
201 |
+ |