/* 카메라 페이지 전용 스타일 */

/* 카메라 페이지 네비게이션 스타일 */
.camera-page {
    background: #1a1a1a;
    color: white;
    min-height: 100vh;
}

.camera-page .navbar {
    background: #1a1a1a;
    backdrop-filter: blur(10px);
}

.camera-page .nav-logo a {
    color: #4CAF50;
}

.camera-page .nav-logo a:hover {
    color: #4CAF50;
}

.camera-page .nav-link {
    color: white;
}

.camera-page .nav-link:hover {
    color: #4CAF50;
}

.camera-page .main-content {
    padding-top: 80px;
}

/* Hero 섹션 */
.camera-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-text {
    color: white;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 주요 기능 스펙 섹션 */
.specs-section {
    background: #1a1a1a;
    padding: 5rem 0;
}

.specs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spec-title {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spec-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

/* 기능 강조 사진 영역 */
.feature-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-image .image-placeholder {
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 설치 설명 섹션 */
.installation-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 5rem 0;
}

.installation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.installation-text {
    text-align: center;
    margin-bottom: 3rem;
}

.installation-description {
    color: #cccccc;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.installation-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.install-image .image-placeholder {
    height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 공통 이미지 플레이스홀더 스타일 */
.image-placeholder {
    position: relative;
}

.placeholder-text {
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 15%;
}
.eqm_img3{
    margin-top: 15%;
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 15%;
}

/* 섹션 제목 스타일 */
.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.5rem;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image .image-placeholder {
        height: 300px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .installation-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spec-item {
        padding: 1.5rem;
    }

    .spec-icon {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .installation-description {
        font-size: 1.1rem;
    }

    /* 이미지 반응형 처리 */
    .image-placeholder img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .feature-image .image-placeholder {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .spec-item {
        padding: 1rem;
    }

    .spec-icon {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .installation-description {
        font-size: 1rem;
    }

    .hero-content,
    .specs-container,
    .installation-container {
        padding: 0 1rem;
    }

    /* 작은 화면에서의 이미지 최적화 */
    .hero-image .image-placeholder {
        height: 250px;
    }

    .feature-image .image-placeholder {
        height: 300px;
    }

    .image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} 