121 lines
2.3 KiB
CSS
121 lines
2.3 KiB
CSS
/* Trend01 Layout Style - Minimal & Clean */
|
|
|
|
/* 💡 [추가] 고정 헤더로 인한 겹침 방지 */
|
|
body {
|
|
padding-top: 80px; /* 헤더 높이만큼 여백 추가 */
|
|
}
|
|
|
|
/* 1. 메인 비주얼 섹션 */
|
|
.main-visual-section {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
color: #fff;
|
|
margin-bottom: 80px; /* 콘텐츠와의 간격 */
|
|
}
|
|
|
|
.main-visual-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url('https://images.unsplash.com/photo-1588854337236-6889d631f3e7?q=80&w=2070&auto=format&fit=crop');
|
|
background-size: cover;
|
|
background-position: center;
|
|
filter: brightness(0.5);
|
|
z-index: 1;
|
|
}
|
|
|
|
.main-visual-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
padding: 20px;
|
|
}
|
|
|
|
.main-visual-title {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin: 0 0 10px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.main-visual-subtitle {
|
|
font-size: 1.2rem;
|
|
margin: 0 0 30px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.main-visual-button {
|
|
display: inline-block;
|
|
padding: 12px 30px;
|
|
background-color: #111; /* 포인트 색상 (블랙) */
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
border-radius: 4px;
|
|
transition: all 0.3s ease;
|
|
border: 2px solid #111;
|
|
}
|
|
|
|
.main-visual-button:hover {
|
|
background-color: #fff;
|
|
color: #111;
|
|
}
|
|
|
|
/* 2. 메인 콘텐츠 영역 */
|
|
.main-content-wrapper {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.product-section {
|
|
margin-bottom: 80px;
|
|
text-align: center;
|
|
}
|
|
|
|
.product-section-title {
|
|
font-size: 2.2rem;
|
|
font-weight: 600;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.product-section-desc {
|
|
font-size: 1rem;
|
|
color: #777;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.guide-box {
|
|
padding: 40px;
|
|
background-color: #f9f9f9;
|
|
border: 1px dashed #ddd;
|
|
color: #888;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* 모바일 반응형 */
|
|
@media (max-width: 768px) {
|
|
.main-visual-section {
|
|
height: 400px;
|
|
margin-bottom: 60px;
|
|
}
|
|
.main-visual-title {
|
|
font-size: 2.2rem;
|
|
}
|
|
.main-visual-subtitle {
|
|
font-size: 1rem;
|
|
}
|
|
.product-section {
|
|
margin-bottom: 60px;
|
|
}
|
|
.product-section-title {
|
|
font-size: 1.8rem;
|
|
}
|
|
}
|