/* aesthetic.css - 심미 임플란트 페이지 */

/* ============================================
   Aesthetic Implant Page Styles
   ============================================ */

#aesthetic_implant_main {
    padding-top: 0;
}

.aesthetic-section {
    padding: 90px 0;
}

.aesthetic-section-gray {
    background-color: #f7f7f7;
}

.aesthetic-section-dark {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
}

.aesthetic-section .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section 1: Hero Section */
.aesthetic-hero {
    display: flex;
    align-items: center;
    gap: 60px;
}

.aesthetic-hero-image {
    flex: 1;
}

.aesthetic-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.aesthetic-hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: var(--text-md);
    font-weight: var(--font-bold);
    color: #666;
    margin-bottom: 15px;
}

.hero-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Section 2: Features */
.section-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.aesthetic-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.aesthetic-feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffd700;
    border-radius: 50%;
    background-color: #fff;
    padding: 15px;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.feature-text {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Section 3: Split Panels */
.aesthetic-split {
    display: flex;
    gap: 30px;
}

.aesthetic-panel {
    flex: 1;
}

.aesthetic-panel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Section 4: Final Section */
.aesthetic-final {
    display: flex;
    align-items: center;
    gap: 60px;
}

.aesthetic-final-image {
    flex: 1;
    position: relative;
}

.aesthetic-final-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    opacity: 0.9;
}

.aesthetic-final-text {
    flex: 1;
    z-index: 1;
}

.final-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.final-description {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .aesthetic-hero {
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .aesthetic-features {
        gap: 30px;
    }

    .aesthetic-split {
        flex-direction: column;
    }

    .aesthetic-final {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .aesthetic-section {
        padding: 60px 0;
    }

    .aesthetic-hero {
        flex-direction: column;
        gap: 30px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .aesthetic-features {
        flex-direction: column;
        gap: 30px;
    }

    .aesthetic-feature-item {
        min-width: 100%;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
    }

    .feature-text {
        font-size: 16px;
    }


    .final-title {
        font-size: 28px;
    }

    .final-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .aesthetic-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }


    .final-title {
        font-size: 24px;
    }
}

