745 lines
13 KiB
CSS
745 lines
13 KiB
CSS
/* 기본 스타일 리셋 */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Noto Sans KR', sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* 네비게이션 */
|
|
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
z-index: 1000;
|
|
padding: 1rem 0;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-logo h2 {
|
|
color: #6366f1;
|
|
font-weight: 700;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav-link {
|
|
text-decoration: none;
|
|
color: #333;
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #6366f1;
|
|
}
|
|
|
|
.nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 2px;
|
|
bottom: -5px;
|
|
left: 0;
|
|
background-color: #6366f1;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.hamburger {
|
|
display: none;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.bar {
|
|
width: 25px;
|
|
height: 3px;
|
|
background-color: #333;
|
|
margin: 3px 0;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
/* 히어로 섹션 */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.hero-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
align-items: center;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
line-height: 1.2;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.9;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn {
|
|
padding: 1rem 2rem;
|
|
border: none;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #6366f1;
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #4f46e5;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: white;
|
|
color: #6366f1;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.hero-graphic {
|
|
position: relative;
|
|
height: 400px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.floating-element {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 50%;
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
.floating-element:nth-child(1) {
|
|
top: 20%;
|
|
left: 20%;
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
.floating-element:nth-child(2) {
|
|
top: 60%;
|
|
right: 20%;
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
.floating-element:nth-child(3) {
|
|
bottom: 20%;
|
|
left: 50%;
|
|
animation-delay: 4s;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0px); }
|
|
50% { transform: translateY(-20px); }
|
|
}
|
|
|
|
/* 섹션 공통 스타일 */
|
|
section {
|
|
padding: 5rem 0;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.section-header h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.section-header p {
|
|
font-size: 1.1rem;
|
|
color: #666;
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* 소개 섹션 */
|
|
.about {
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.about-content {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 4rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.about-text h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.about-text p {
|
|
margin-bottom: 2rem;
|
|
color: #666;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.strengths-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.strengths-list li {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
padding: 1rem;
|
|
background: white;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.strengths-list li:hover {
|
|
transform: translateX(10px);
|
|
}
|
|
|
|
.strengths-list i {
|
|
color: #6366f1;
|
|
margin-right: 1rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.about-stats {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.stat-item {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
background: white;
|
|
border-radius: 15px;
|
|
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.stat-item:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.stat-item h3 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #6366f1;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.stat-item p {
|
|
color: #666;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 서비스 섹션 */
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.service-card {
|
|
background: white;
|
|
padding: 2.5rem;
|
|
border-radius: 15px;
|
|
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
border: 1px solid #f1f5f9;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.service-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 1.5rem;
|
|
}
|
|
|
|
.service-icon i {
|
|
font-size: 2rem;
|
|
color: white;
|
|
}
|
|
|
|
.service-card h3 {
|
|
font-size: 1.3rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.service-card p {
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* 포트폴리오 섹션 */
|
|
.portfolio {
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.portfolio-item {
|
|
position: relative;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.portfolio-item:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.portfolio-image {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.portfolio-image img {
|
|
width: 100%;
|
|
height: 250px;
|
|
object-fit: cover;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.portfolio-item:hover .portfolio-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.portfolio-overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
|
|
color: white;
|
|
padding: 2rem;
|
|
transform: translateY(100%);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.portfolio-item:hover .portfolio-overlay {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.portfolio-overlay h3 {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.portfolio-overlay p {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* 연락처 섹션 */
|
|
.contact-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
}
|
|
|
|
.contact-info h3 {
|
|
font-size: 1.8rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.contact-info p {
|
|
color: #666;
|
|
margin-bottom: 2rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.contact-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.contact-item i {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: #6366f1;
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.contact-item h4 {
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
color: #333;
|
|
}
|
|
|
|
.contact-item p {
|
|
color: #666;
|
|
margin: 0;
|
|
}
|
|
|
|
.contact-form {
|
|
background: white;
|
|
padding: 2.5rem;
|
|
border-radius: 15px;
|
|
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 10px;
|
|
font-size: 1rem;
|
|
transition: border-color 0.3s ease;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: #6366f1;
|
|
}
|
|
|
|
.form-group textarea {
|
|
resize: vertical;
|
|
min-height: 120px;
|
|
}
|
|
|
|
/* 푸터 */
|
|
.footer {
|
|
background: #1e293b;
|
|
color: white;
|
|
padding: 3rem 0 1rem;
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.footer-section h3,
|
|
.footer-section h4 {
|
|
margin-bottom: 1rem;
|
|
color: white;
|
|
}
|
|
|
|
.footer-section p {
|
|
color: #cbd5e1;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.footer-section ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-section ul li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.footer-section ul li a {
|
|
color: #cbd5e1;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-section ul li a:hover {
|
|
color: #6366f1;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.social-links a {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: #6366f1;
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.social-links a:hover {
|
|
background: #4f46e5;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid #334155;
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
/* 갤러리 그리드 */
|
|
.gallery-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 2rem;
|
|
}
|
|
|
|
/* 라이트박스 화살표 버튼 스타일 */
|
|
.lightbox-arrow {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background: rgba(255,255,255,0.85);
|
|
border: none;
|
|
width: 54px;
|
|
height: 54px;
|
|
border-radius: 50%;
|
|
font-size: 2.2rem;
|
|
color: #ff8800;
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.18);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 10001;
|
|
transition: background 0.18s, color 0.18s, box-shadow 0.18s;
|
|
outline: none;
|
|
}
|
|
.lightbox-arrow:hover, .lightbox-arrow:focus {
|
|
background: #ff8800;
|
|
color: #fff;
|
|
box-shadow: 0 8px 32px rgba(255,136,0,0.18);
|
|
}
|
|
.lightbox-prev {
|
|
left: 3vw;
|
|
}
|
|
.lightbox-next {
|
|
right: 3vw;
|
|
}
|
|
|
|
.lightbox-caption {
|
|
margin-top: 1.2rem;
|
|
color: #222;
|
|
background: rgba(255,255,255,0.92);
|
|
border-radius: 10px;
|
|
padding: 0.7rem 1.5rem;
|
|
font-size: 1.13rem;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
max-width: 90vw;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
|
|
position: relative;
|
|
z-index: 10002;
|
|
}
|
|
|
|
.lightbox-img-wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* 반응형 디자인 */
|
|
@media (max-width: 768px) {
|
|
.hamburger {
|
|
display: flex;
|
|
}
|
|
|
|
.nav-menu {
|
|
position: fixed;
|
|
left: -100%;
|
|
top: 70px;
|
|
flex-direction: column;
|
|
background-color: white;
|
|
width: 100%;
|
|
text-align: center;
|
|
transition: 0.3s;
|
|
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
.nav-menu.active {
|
|
left: 0;
|
|
}
|
|
|
|
.hero-container {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.about-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.contact-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.hero-buttons {
|
|
justify-content: center;
|
|
}
|
|
|
|
.services-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.gallery-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.hero-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.section-header h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.btn {
|
|
padding: 0.8rem 1.5rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.gallery-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |