body {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: var(--bg-primary);
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.portfolio-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 100px 60px 10px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 60px;
}

.portfolio-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-wrapper {
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

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

.portfolio-header {
    text-align: left;
    margin-bottom: 40px;
}

.portfolio-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Social Media Section */
.social-media-section {
    margin-top: 50px;
    margin-bottom: 40px;
}

.social-media-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-media-images {
    display: flex;
    gap: 15px;
    width: 100%;
}

.social-media-image {
    flex: 1;
    width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1;
    cursor: pointer;
}

.social-media-image:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.social-media-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 4 / 3;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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


/* Right Section - Animation */
.portfolio-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lottie-container {
    width: 100%;
    max-width: 500px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lottie-container svg {
    width: 100% !important;
    height: 100% !important;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-primary);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.8);
    border: 2px solid var(--border-color);
}

.lightbox-close:hover {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 40px;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: all;
    background: rgba(18, 18, 18, 0.8);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.1);
}

/* Call to Action Section */
.cta-section {
    padding: 40px 40px 50px;
    text-align: center;
    background: var(--bg-primary);
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.cta-subtext {
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0;
    margin-bottom: 20px;
}

.cta-content-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
    position: relative;
    margin-top: 10px;
}

.cta-heart-container {
    width: 100px;
    height: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    margin-top: -40px;
}


.heart-animation {
    width: 100%;
    height: 100%;
}

.heart-animation svg {
    width: 100% !important;
    height: 100% !important;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    padding: 14px 32px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cta-button-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-container {
        flex-direction: column;
        gap: 40px;
        padding: 100px 40px 10px;
    }

    .portfolio-left {
        width: 100%;
    }

    .portfolio-wrapper {
        max-width: 100%;
    }

    .portfolio-right {
        width: 100%;
        min-height: 400px;
    }

    .lottie-container {
        max-width: 500px;
        height: 400px;
        width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

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

    .social-media-title {
        font-size: 28px;
    }

    .social-media-images {
        gap: 12px;
    }

    .social-media-image {
        max-height: 180px;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        padding: 90px 30px 10px;
        gap: 35px;
    }

    .portfolio-header {
        margin-bottom: 30px;
    }

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

    .portfolio-subtitle {
        font-size: 15px;
    }

    .social-media-section {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .social-media-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .social-media-images {
        gap: 10px;
    }

    .social-media-image {
        max-height: 150px;
    }

    .social-media-note {
        font-size: 12px;
        margin-top: 10px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .portfolio-right {
        min-height: 300px;
    }

    .lottie-container {
        max-width: 100%;
        height: 300px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .lightbox-nav {
        padding: 0 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cta-section {
        padding: 35px 30px 45px;
        margin-top: 10px;
    }

    .cta-container {
        gap: 12px;
    }

    .cta-text {
        font-size: 24px;
    }

    .cta-subtext {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .cta-content-wrapper {
        gap: 0;
    }

    .cta-heart-container {
        width: 90px;
        height: 90px;
        margin-top: -35px;
    }

    .cta-button {
        padding: 12px 28px;
    }

    .cta-button-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-container {
        padding: 80px 20px 10px;
        gap: 30px;
    }

    .portfolio-header {
        margin-bottom: 25px;
    }

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

    .portfolio-subtitle {
        font-size: 14px;
    }

    .social-media-section {
        margin-top: 35px;
        margin-bottom: 25px;
    }

    .social-media-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .social-media-images {
        flex-direction: column;
        gap: 12px;
    }

    .social-media-image {
        aspect-ratio: 16 / 9;
        max-height: 180px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-right {
        min-height: 250px;
    }

    .lottie-container {
        height: 250px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 25px;
    }

    .lightbox-nav {
        padding: 0 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .cta-section {
        padding: 30px 20px 40px;
        margin-top: 10px;
    }

    .cta-container {
        gap: 10px;
    }

    .cta-text {
        font-size: 22px;
    }

    .cta-subtext {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .cta-content-wrapper {
        gap: 0;
    }

    .cta-heart-container {
        width: 80px;
        height: 80px;
        margin-top: -30px;
    }

    .cta-button {
        padding: 12px 24px;
        border-radius: 10px;
    }

    .cta-button-text {
        font-size: 15px;
    }
}

