142 lines
2.4 KiB
CSS
142 lines
2.4 KiB
CSS
.contact {
|
|
padding-top: 80px;
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
padding: var(--space-3xl) 0;
|
|
text-align: center;
|
|
background: linear-gradient(
|
|
180deg,
|
|
var(--md-sys-color-surface-container-lowest) 0%,
|
|
var(--md-sys-color-background) 100%
|
|
);
|
|
}
|
|
|
|
.title {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 700;
|
|
margin-bottom: var(--space-md);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.25rem;
|
|
color: var(--md-sys-color-primary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Content */
|
|
.content {
|
|
padding: var(--space-3xl) 0;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-3xl);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.grid {
|
|
grid-template-columns: 1.5fr 1fr;
|
|
}
|
|
}
|
|
|
|
/* Form Section */
|
|
.formSection {
|
|
max-width: 600px;
|
|
}
|
|
|
|
.intro {
|
|
font-size: 1.125rem;
|
|
line-height: 1.7;
|
|
margin-bottom: var(--space-2xl);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-lg);
|
|
}
|
|
|
|
.success {
|
|
padding: var(--space-md);
|
|
background-color: rgba(127, 217, 152, 0.1);
|
|
border: 1px solid var(--md-sys-color-primary);
|
|
border-radius: var(--radius-md);
|
|
color: var(--md-sys-color-primary);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.error {
|
|
padding: var(--space-md);
|
|
background-color: rgba(255, 180, 171, 0.1);
|
|
border: 1px solid var(--md-sys-color-error);
|
|
border-radius: var(--radius-md);
|
|
color: var(--md-sys-color-error);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
/* Info Section */
|
|
.infoSection {
|
|
padding: var(--space-xl);
|
|
background-color: var(--md-sys-color-surface-container);
|
|
border: 1px solid var(--md-sys-color-outline-variant);
|
|
border-radius: var(--radius-lg);
|
|
height: fit-content;
|
|
}
|
|
|
|
.infoTitle {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-bottom: var(--space-xl);
|
|
}
|
|
|
|
.infoList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-xl);
|
|
}
|
|
|
|
.infoItem {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.infoIcon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 44px;
|
|
height: 44px;
|
|
background-color: var(--md-sys-color-primary-container);
|
|
border-radius: var(--radius-md);
|
|
color: var(--md-sys-color-on-primary-container);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.infoIcon svg {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
|
|
.infoItem h3 {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: var(--md-sys-color-on-surface);
|
|
opacity: 0.7;
|
|
margin-bottom: var(--space-xs);
|
|
}
|
|
|
|
.infoItem a {
|
|
font-size: 1rem;
|
|
color: var(--md-sys-color-primary);
|
|
word-break: break-all;
|
|
}
|
|
|
|
.infoItem a:hover {
|
|
text-decoration: underline;
|
|
}
|