|
|
@@ -38,9 +38,9 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- Description Section -->
|
|
|
- <div class="description-container mt-8">
|
|
|
+ <div class="description-container mt-10">
|
|
|
<h2>{{ $t('welcome_heading') }}</h2>
|
|
|
- <v-card class="pa-4">
|
|
|
+ <v-card class="pa-5 rounded-lg elevation-2">
|
|
|
<p class="text-body-1">
|
|
|
{{ $t('welcome_description') }}
|
|
|
</p>
|
|
|
@@ -48,11 +48,11 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- Features Summary Section -->
|
|
|
- <div class="features-container mt-8">
|
|
|
+ <div class="features-container mt-10">
|
|
|
<h2>{{ $t('features_heading') }}</h2>
|
|
|
<v-row>
|
|
|
<v-col cols="12" md="6">
|
|
|
- <v-card class="pa-4 h-100">
|
|
|
+ <v-card class="pa-5 h-100 rounded-lg elevation-2">
|
|
|
<h3 class="text-h6 mb-4">{{ $t('general_info_heading') }}</h3>
|
|
|
<ul class="feature-list">
|
|
|
<li>{{ $t('general_info_item_1') }}</li>
|
|
|
@@ -60,11 +60,12 @@
|
|
|
<li>{{ $t('general_info_item_3') }}</li>
|
|
|
<li>{{ $t('general_info_item_4') }}</li>
|
|
|
<li>{{ $t('general_info_item_5') }}</li>
|
|
|
+ <li>{{ $t('general_info_item_8') }}</li>
|
|
|
</ul>
|
|
|
</v-card>
|
|
|
</v-col>
|
|
|
<v-col cols="12" md="6">
|
|
|
- <v-card class="pa-4 h-100">
|
|
|
+ <v-card class="pa-5 h-100 rounded-lg elevation-2">
|
|
|
<h3 class="text-h6 mb-4">{{ $t('equipment_heading') }}</h3>
|
|
|
<ul class="feature-list">
|
|
|
<li>{{ $t('equipment_item_1') }}</li>
|
|
|
@@ -80,9 +81,9 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- Location Section -->
|
|
|
- <div class="location-container mt-8">
|
|
|
+ <div class="location-container mt-10">
|
|
|
<h2>{{ $t('location_heading') }}</h2>
|
|
|
- <v-card class="pa-4">
|
|
|
+ <v-card class="pa-5 rounded-lg elevation-2">
|
|
|
<ul class="feature-list">
|
|
|
<li>{{ $t('location_item_1') }}</li>
|
|
|
<li>{{ $t('location_item_2') }}</li>
|
|
|
@@ -93,24 +94,22 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- Conditions Section -->
|
|
|
- <div class="conditions-container mt-8">
|
|
|
+ <div class="conditions-container mt-10">
|
|
|
<h2>{{ $t('conditions_heading') }}</h2>
|
|
|
- <v-card class="pa-4">
|
|
|
+ <v-card class="pa-5 rounded-lg elevation-2">
|
|
|
<ul class="feature-list">
|
|
|
<li>{{ $t('conditions_item_1') }}</li>
|
|
|
<li>{{ $t('conditions_item_2') }}</li>
|
|
|
<li>{{ $t('conditions_item_3') }}</li>
|
|
|
<li>{{ $t('conditions_item_4') }}</li>
|
|
|
- <li>{{ $t('conditions_item_5') }}</li>
|
|
|
- <li>{{ $t('conditions_item_6') }}</li>
|
|
|
</ul>
|
|
|
</v-card>
|
|
|
</div>
|
|
|
|
|
|
<!-- Contact Section -->
|
|
|
- <div id="contact" class="contact-container mt-8">
|
|
|
+ <div id="contact" class="contact-container mt-10">
|
|
|
<h2>{{ $t('contact_heading') }}</h2>
|
|
|
- <v-card class="pa-4">
|
|
|
+ <v-card class="pa-5 rounded-lg elevation-2">
|
|
|
<Contact />
|
|
|
</v-card>
|
|
|
</div>
|
|
|
@@ -180,6 +179,12 @@ const selectImage = (src: string) => {
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
|
|
|
+.text-body-1 {
|
|
|
+ line-height: 1.7;
|
|
|
+ margin-bottom: 1rem;
|
|
|
+ font-size: 1.05rem;
|
|
|
+}
|
|
|
+
|
|
|
.main-image {
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
|
transition: transform 0.3s ease;
|
|
|
@@ -202,28 +207,46 @@ const selectImage = (src: string) => {
|
|
|
.feature-list {
|
|
|
list-style-type: none;
|
|
|
padding-left: 0;
|
|
|
+ margin: 0.5rem 0;
|
|
|
|
|
|
li {
|
|
|
- padding: 8px 0;
|
|
|
+ padding: 10px 0;
|
|
|
position: relative;
|
|
|
- padding-left: 24px;
|
|
|
+ padding-left: 28px;
|
|
|
+ margin-bottom: 4px;
|
|
|
+ line-height: 1.5;
|
|
|
|
|
|
&:before {
|
|
|
content: "•";
|
|
|
color: rgb(var(--v-theme-primary));
|
|
|
position: absolute;
|
|
|
- left: 0;
|
|
|
+ left: 8px;
|
|
|
+ font-size: 18px;
|
|
|
+ top: 8px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-bottom: 0;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
h2 {
|
|
|
color: rgb(var(--v-theme-primary));
|
|
|
- font-weight: 600;
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ margin: 2rem 0 1.5rem 0;
|
|
|
+ padding-bottom: 0.5rem;
|
|
|
+ border-bottom: 2px solid rgba(var(--v-theme-primary), 0.3);
|
|
|
+ letter-spacing: 0.02em;
|
|
|
}
|
|
|
|
|
|
h3 {
|
|
|
color: rgb(var(--v-theme-primary));
|
|
|
+ font-weight: 600;
|
|
|
+ font-size: 1.4rem;
|
|
|
+ margin: 1.5rem 0 1rem 0;
|
|
|
+ letter-spacing: 0.01em;
|
|
|
}
|
|
|
|
|
|
.enlarged-image {
|