first commit 2
This commit is contained in:
@@ -0,0 +1,128 @@
|
||||
/* Trend04 Layout Style - Luxury & Elegant */
|
||||
|
||||
/* 💡 [추가] 고정 헤더로 인한 겹침 방지 */
|
||||
body {
|
||||
padding-top: 80px;
|
||||
background-color: #0f0f0f; /* 아주 어두운 배경 */
|
||||
color: #e0e0e0;
|
||||
/* font-family: 'Playfair Display', serif; */ /* 💡 [수정] 관리자 설정 폰트 사용을 위해 주석 처리 */
|
||||
}
|
||||
|
||||
/* 1. 메인 비주얼 섹션 */
|
||||
.main-visual-section-trend04 {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 700px;
|
||||
background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?q=80&w=2000&auto=format&fit=crop');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.main-visual-section-trend04::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.6); /* 어두운 오버레이 */
|
||||
}
|
||||
|
||||
.visual-content {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: #fff;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.visual-title {
|
||||
font-size: 4rem;
|
||||
font-weight: 400;
|
||||
letter-spacing: 2px;
|
||||
margin: 0 0 20px;
|
||||
color: #d4af37; /* 골드 색상 */
|
||||
}
|
||||
|
||||
.visual-subtitle {
|
||||
font-size: 1.3rem;
|
||||
font-weight: 300;
|
||||
margin: 0 0 50px;
|
||||
opacity: 0.8;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.visual-button {
|
||||
display: inline-block;
|
||||
padding: 15px 50px;
|
||||
background-color: transparent;
|
||||
color: #d4af37;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
border: 1px solid #d4af37;
|
||||
transition: all 0.4s ease;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.visual-button:hover {
|
||||
background-color: #d4af37;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/* 2. 메인 콘텐츠 영역 */
|
||||
.main-content-wrapper {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
.product-section {
|
||||
margin-bottom: 120px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
text-align: center;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
margin: 0 0 20px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.title-divider {
|
||||
width: 80px;
|
||||
height: 1px;
|
||||
background-color: #d4af37;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.guide-box {
|
||||
padding: 50px;
|
||||
background-color: #1a1a1a;
|
||||
border: 1px solid #333;
|
||||
color: #888;
|
||||
text-align: center;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/* 모바일 반응형 */
|
||||
@media (max-width: 768px) {
|
||||
.main-visual-section-trend04 {
|
||||
height: 500px;
|
||||
}
|
||||
.visual-title {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
.visual-subtitle {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user