/* Homepage Specific Styles - Creative & Aesthetic Design */

/* Navigation Updates */
.btn-lets-talk {
    background: #000000;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-lets-talk::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-lets-talk:hover::before {
    left: 100%;
}

.btn-lets-talk:hover {
    background: #333333;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section with Creative Animations */
.hero-home {
    min-height: 85vh;
    background: linear-gradient(135deg, #FEF2DB 0%, #F7E5C3 100%);
    padding: 5rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 196, 132, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-intro {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-style: normal;
    letter-spacing: -0.5px;
}

.highlight-name {
    color: #E7C484;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E7C484, #FCD8CC);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-style: normal;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Flip Card */
.hero-flip-card {
    width: 480px;
    height: 480px;
    perspective: 1000px;
    cursor: pointer;
}

.hero-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.hero-flip-card.flipped .hero-flip-card-inner {
    transform: rotateY(180deg);
}

.hero-flip-card-front,
.hero-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-flip-card-front {
    background: #FFFFFF;
}

.hero-flip-card-back {
    background: linear-gradient(135deg, #E7C484 0%, #F0D7A9 100%);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    box-sizing: border-box;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flip-card-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.flip-card-content::-webkit-scrollbar {
    display: none;
}

.flip-card-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.flip-card-text-border {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCE3DA 0%, #FCD8CC 50%, #FCE3DA 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-placeholder-icon {
    font-size: 6rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Curated Collections Section with Enhanced Cards */
.curated-collections-section {
    background: linear-gradient(180deg, #FEF2DB 0%, #F7E5C3 100%);
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
}

.section-description {
    text-align: center;
    color: #666666;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.collection-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E5E5E5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.4s ease;
    transform-origin: left;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

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

.card-career::before {
    background: linear-gradient(90deg, #E7C484 0%, #F0D7A9 100%);
    transform: scaleX(0);
}

.card-thoughts::before {
    background: linear-gradient(90deg, #FCD8CC 0%, #FCE3DA 100%);
    transform: scaleX(0);
}

.card-travel::before {
    background: linear-gradient(90deg, #F0D7A9 0%, #E7C484 100%);
    transform: scaleX(0);
}

.card-safe-space::before {
    background: linear-gradient(90deg, #FCE3DA 0%, #FCD8CC 100%);
    transform: scaleX(0);
}

.collection-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-icon {
    transform: scale(1.15) rotate(5deg);
}

.collection-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.collection-text {
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.collection-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.collection-link:hover {
    color: #E7C484;
    gap: 0.75rem;
}

/* Emotions Section with Creative Buttons */
.emotions-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.emotions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.emotion-btn {
    padding: 1rem 2.25rem;
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.emotion-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #D97757;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.emotion-btn:hover::before {
    width: 300px;
    height: 300px;
}

.emotion-btn:hover {
    background: #E7C484;
    border-color: #E7C484;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 196, 132, 0.3);
}

/* Career Timeline Section - Exact Match to Design */
.career-section {
    background: #FEF2DB;
    padding: 5rem 0;
    position: relative;
}

.career-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'Moon Dance', cursive;
    color: #000000;
    margin-bottom: 3rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.career-icon {
    font-size: 1.5rem;
    color: #E7C484;
    display: inline-block;
}

.career-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Vertical timeline line on the left */
.career-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E0E0E0;
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    margin-bottom: 3rem;
    padding-left: 1rem;
    opacity: 0;
    animation: fadeInSlide 0.8s ease-out forwards;
}

/* Date Wrapper - Left Side */
.timeline-date-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0.25rem;
    text-align: right;
}

.timeline-date {
    background: #000000;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    display: inline-block;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:last-child .marker-line {
    display: none;
}

/* Content Card - Right Side */
.timeline-content {
    background: #FFFFFF;
    padding: 1.75rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    flex: 1;
}

.timeline-badge {
    display: inline-block;
    background: #E7C484;
    color: #FFFFFF;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.timeline-date-heading {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: white;
    margin-bottom: 0.75rem;
    background: black;
    width: fit-content;
    border-radius: 10px;
    padding: 10px;
}

.timeline-role {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.timeline-company {
    font-size: 0.95rem;
    color: #E7C484;
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.timeline-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Timeline Marker - Left Side */
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 20px;
}

.marker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E7C484;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 3;
    margin-left: -5px;
}

.marker-line {
    width: 1px;
    height: calc(100% + 3rem);
    background: transparent;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}


/* Travel Diaries Section with Enhanced Cards */
.travel-diaries-section {
    background: #F7E5C3;
    padding: 6rem 0;
}

.travel-diaries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.view-all-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: #E7C484;
    gap: 0.75rem;
}

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

.travel-diary-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.travel-diary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 196, 132, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.travel-diary-card:hover::before {
    opacity: 1;
}

.travel-diary-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.diary-image,
.diary-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.travel-diary-card:hover .diary-image {
    transform: scale(1.1);
}

.diary-image-placeholder {
    background: linear-gradient(135deg, #E5E5E5 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diary-icon {
    font-size: 3rem;
    opacity: 0.3;
}

.diary-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 2.5rem 1.5rem 1.5rem;
    color: #FFFFFF;
    z-index: 2;
    transition: padding 0.3s ease;
}

.travel-diary-card:hover .diary-overlay {
    padding: 3rem 1.5rem 1.5rem;
}

.diary-location {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.9;
}

.diary-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Footer with Enhanced Design */
.footer {
    background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
    color: #FFFFFF;
    padding: 5rem 0 2.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E7C484, transparent);
}

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

.footer-quote-text {
    font-size: 2.2rem;
    font-weight: 400;
    color: #E7C484;
    font-style: italic;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-icon {
    font-size: 1.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.15);
    background: rgba(231, 196, 132, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E7C484;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-flip-card {
        width: 350px;
        height: 350px;
    }
    
    .hero-flip-card-back {
        padding: 2rem;
    }
    
    .flip-card-text {
        font-size: 0.8rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-diaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .career-section-title {
        font-size: 2rem;
    }
    
    .career-timeline {
        padding: 1.5rem 0;
    }
    
    .career-timeline::before {
        left: 0;
    }
    
    .timeline-item {
        gap: 2rem;
        padding-left: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem 1.75rem;
    }
    
    .timeline-date-heading {
        font-size: 1.1rem;
    }
    
    .timeline-role {
        font-size: 1.05rem;
    }
    
    .timeline-company {
        font-size: 0.9rem;
    }
    
    .timeline-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-intro {
        font-size: 2.2rem;
    }
    
    .hero-flip-card {
        width: 300px;
        height: 300px;
    }
    
    .hero-flip-card-back {
        padding: 1.5rem;
    }
    
    .flip-card-text {
        font-size: 0.75rem;
    }
    
    .travel-diaries-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-diaries-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .career-section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .career-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .timeline-date-wrapper {
        grid-column: 1;
        grid-row: 1;
        align-items: flex-start;
        text-align: left;
    }
    
    .timeline-marker {
        grid-column: 1;
        grid-row: 1;
    }
    
    .timeline-content {
        grid-column: 2;
        padding: 1.5rem 1.75rem;
    }
    
    .timeline-date-heading {
        font-size: 1.25rem;
    }
    
    .timeline-role {
        font-size: 1.15rem;
    }
    
    .timeline-company {
        font-size: 0.9rem;
    }
    
    .timeline-description {
        font-size: 0.85rem;
    }
    
    .timeline-date,
    .timeline-date-end {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
    
    .marker-dot {
        width: 14px;
        height: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-intro {
        font-size: 1.9rem;
    }
    
    .hero-flip-card {
        width: 280px;
        height: 280px;
    }
    
    .hero-flip-card-back {
        padding: 1.25rem;
    }
    
    .flip-card-text {
        font-size: 0.7rem;
        line-height: 1.6;
    }
    
    .collection-card {
        padding: 2rem;
    }
    
    .emotions-buttons {
        flex-direction: column;
    }
    
    .emotion-btn {
        width: 100%;
    }
    
    .footer-quote-text {
        font-size: 1.75rem;
    }
}
