/* Profile Page Specific Styles */

.profile-main {
    margin-top: 80px;
    padding: 60px 0 80px;
    background: #ffffff;
    min-height: calc(100vh - 80px);
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: var(--border-radius);
}

.profile-name-jp {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s ease;
}

.profile-name-en {
    font-size: 1.8rem;
    color: var(--text-light);
    font-style: italic;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Handwritten Font Styles */
.handwritten-jp {
    font-family: 'Klee One', cursive;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.handwritten-en {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    font-style: normal;
}

.handwritten-title {
    font-family: 'Klee One', cursive;
    font-weight: 600;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
}

.handwritten-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.6;
}

/* Profile Content */
.profile-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Intro Section */
.profile-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.profile-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.follower-info {
    font-size: 1rem;
    color: var(--text-light);
    padding: 1rem 2rem;
    background: #f8f8f8;
    border-left: 4px solid var(--accent-color);
    display: inline-block;
    border-radius: 4px;
}

/* Profile Details Section */
.profile-details-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
    align-items: center;
}

.profile-image-section {
    display: flex;
    justify-content: center;
}

.profile-main-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

/* Info Table */
.profile-info-table {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    text-align: left;
    padding: 1.2rem 1rem;
    font-weight: 600;
    color: var(--dark-color);
    width: 35%;
    font-size: 1.1rem;
}

.info-table td {
    padding: 1.2rem 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Timeline Section */
.timeline-section {
    margin-bottom: 60px;
}

.timeline-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    text-align: right;
    padding-right: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -3.4rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -3.4rem;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}


/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.social-buttons-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-btn-large.youtube {
    background: #FF0000;
}

.social-btn-large.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-btn-large.twitter {
    background: #1DA1F2;
}

.social-btn-large i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-name-jp {
        font-size: 3rem;
    }

    .profile-name-en {
        font-size: 1.4rem;
    }

    .profile-details-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-main-image {
        max-width: 250px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 40px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }

    .timeline-date {
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 1rem;
    }

    .timeline-item:nth-child(even) .timeline-date {
        text-align: left !important;
        padding: 0 !important;
    }

    .timeline-content::before {
        left: -28px !important;
        right: auto !important;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        left: -28px !important;
    }

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

    .message-box {
        padding: 2rem 1.5rem;
    }

    .social-buttons-large {
        flex-direction: column;
        align-items: center;
    }

    .social-btn-large {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-name-jp {
        font-size: 2.5rem;
    }

    .profile-intro h2 {
        font-size: 1.8rem;
    }

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

    .info-table th,
    .info-table td {
        padding: 0.8rem 0.5rem;
        font-size: 1rem;
    }
}