/* 메인 콘텐츠 스타일 */
.main-content {
    margin-top: 70px; /* 헤더 높이만큼 여백 */
}

/* 히어로 섹션 - hero-new.css에서 처리하므로 여기서는 제거 */

/* 서비스 섹션 */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white-text);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wealth-gold), var(--bright-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--wealth-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--wealth-gold), var(--bright-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-bg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-bg);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 스타일 섹션 */
.styles-section {
    padding: 100px 0;
    background: var(--white-text);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.style-card {
    background: var(--white-text);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--wealth-gold);
}

.style-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.style-card:hover img {
    transform: scale(1.05);
}

.style-content {
    padding: 25px;
}

.style-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy-bg);
}

.style-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.style-link {
    color: var(--wealth-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.style-link:hover {
    color: var(--bright-gold);
}

/* 리뷰 섹션 */
.reviews-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: var(--white-text);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--light-gray);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: var(--wealth-gold);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--wealth-gold);
}

.review-stars {
    color: var(--bright-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-stars i {
    margin-right: 2px;
}

.review-text {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 600;
    color: var(--navy-bg);
    font-size: 0.95rem;
}

/* ===== 반응형 미디어 쿼리 ===== */

/* 태블릿 (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid,
    .styles-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .service-card,
    .style-card,
    .review-card {
        padding: 30px 25px;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    .main-content {
        margin-top: 60px;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-section,
    .styles-section,
    .reviews-section {
        padding: 60px 0;
    }
    
    .services-grid,
    .styles-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card,
    .style-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .style-content {
        padding: 20px;
    }
    
    .style-card img {
        height: 180px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .services-section,
    .styles-section,
    .reviews-section {
        padding: 40px 0;
    }
    
    .service-card,
    .style-card,
    .review-card {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .style-content {
        padding: 15px;
    }
    
    .style-card img {
        height: 150px;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: 15px;
        left: 20px;
    }
}

/* 매우 작은 모바일 (320px 이하) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-card h3,
    .style-content h3 {
        font-size: 1.2rem;
    }
    
    .service-card p,
    .style-content p,
    .review-text {
        font-size: 0.9rem;
    }
}

/* 가로 모드 (landscape) 대응 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-section,
    .styles-section,
    .reviews-section {
        padding: 40px 0;
    }
}

/* 고해상도 디스플레이 대응 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-card,
    .style-card,
    .review-card {
        box-shadow: 0 5px 15px rgba(15, 23, 42, 0.08);
    }
}

/* 접근성 개선 */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-image,
    .service-card,
    .style-card,
    .review-card {
        animation: none;
        transition: none;
    }
} 