/* 타투가이드 페이지 전용 CSS */

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #404040 100%);
    color: var(--white-text);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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="rgba(255,255,255,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;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wealth-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 메인 콘텐츠 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 헤더 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wealth-gold);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--wealth-gold), var(--bright-gold));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 시술과정 단계들 */
.process-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--wealth-gold), var(--bright-gold));
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--wealth-gold);
    min-width: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--wealth-gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.step-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.step-description {
    margin-bottom: 20px;
}

.step-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 1rem;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 꿀팁 박스 스타일 */
.tip-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--wealth-gold);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.tip-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--wealth-gold), var(--bright-gold));
}

.tip-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wealth-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* 서브섹션 제목 스타일 */
.subsection-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--wealth-gold);
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bright-gold);
}

/* 추가 정보 섹션 */
.additional-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wealth-gold);
    margin-bottom: 15px;
}

.info-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* 연결 링크 */
.related-links {
    text-align: center;
    padding: 40px 0;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.links-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wealth-gold);
    margin-bottom: 30px;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--wealth-gold), var(--bright-gold));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    color: white;
    text-decoration: none;
}

.link-btn i {
    font-size: 1.1rem;
}

/* 관리요령 페이지 전용 스타일 */
.aftercare-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.care-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.care-period {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-period:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.period-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--wealth-gold), var(--bright-gold));
    color: white;
}

.period-number {
    font-size: 2.5rem;
    font-weight: 900;
    min-width: 60px;
    text-align: center;
}

.period-info {
    flex: 1;
}

.period-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.period-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    color: white;
}

.period-content {
    padding: 40px;
}

.care-description {
    margin-bottom: 30px;
}

.care-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.care-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.care-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.care-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.instruction-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--wealth-gold);
}

.instruction-category .category-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.instruction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instruction-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

.do-list li {
    color: #333;
}

.do-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.dont-list li {
    color: #ff6b6b;
}

.dont-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1rem;
}

.caution-list li {
    color: #ff6b6b;
}

.caution-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--wealth-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 팁 섹션 */
.tips-section {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.tips-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wealth-gold);
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wealth-gold), var(--bright-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tip-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 2.5rem;
        min-width: auto;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-img {
        height: 300px;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .links-container {
        flex-direction: column;
        align-items: center;
    }
    
    .link-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* 관리요령 모바일 스타일 */
    .period-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .period-number {
        font-size: 2rem;
        min-width: auto;
    }
    
    .period-content {
        padding: 25px 20px;
    }
    
    .care-instructions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instruction-category {
        padding: 20px 15px;
    }
    
    .tips-section {
        padding: 30px 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-card {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding-top: 40px;
    }
    
    .process-section {
        padding: 40px 0;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .step-img {
        height: 250px;
    }
}
