bunch o stuff

This commit is contained in:
2026-04-25 13:14:08 -05:00
parent fc7db1fedd
commit a1fddb3513
18 changed files with 1037 additions and 190 deletions

View File

@@ -93,7 +93,61 @@
transition: all 0.3s ease;
}
/* Match your mobile responsiveness */
.complete-container {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
}
.complete-content {
max-width: 800px;
}
.complete-heading {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}
.complete-subheading {
font-size: 1.2rem;
color: #555;
line-height: 1.5;
}
::deep .btn-home {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: background-color 0.2s ease, transform 0.1s ease;
border: none;
cursor: pointer;
}
::deep .btn-home:hover {
background-color: #0056b3;
color: white;
text-decoration: none;
}
::deep .btn-home:active {
transform: scale(0.98);
}
.home-icon {
margin-right: 8px;
}
@media (max-width: 768px) {
.form-grid {
grid-template-columns: 1fr;
@@ -102,4 +156,12 @@
.booking-form-wrapper {
padding: 20px;
}
.complete-heading {
font-size: 1.8rem; /* Slightly smaller for small screens */
}
.complete-subheading {
font-size: 1rem;
}
}