/* ====== ABOUT ME CAMERA WIDGET (newnewnew) ====== */

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.camera-interactive-container {
    position: relative;
    width: 100%;
    max-width: 550px; 
    margin: 0 auto;
    margin-top: -90px;
}

.camera-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* Precision coordinates for da Canon screen */
.camera-screen-container {
    position: absolute;
    top: 39.8%; 
    left: 14%;
    width: 40.5%;
    height: 30%;
    overflow: hidden;
    background-color: #000; 
}

.camera-screen-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.camera-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the screen perfectly without stretching */
    object-position: center;
    flex-shrink: 0;
}

/* Invisible clickable areas over the D-pad yaurgh */
.cam-btn {
    position: absolute;
    background: transparent; 
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.cam-btn-left {
    top: 51%;
    left: 64%;
    width: 7%;
    height: 7%;
}

.cam-btn-right {
    top: 51%;
    left: 77%;
    width: 7%;
    height: 7%;
}

/* daurgh interactive hint text */
.swipe-hint {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--primary-color);
    text-align: right;
    margin-top: -120px;
    margin-right: -33%; 
}

/*  NEW RIGHT-SIDE LAYOUT (not rlly lol) */
.about-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.social-links-new {
    margin-top: 20px;
    text-align: right; /* Aligns it to the right as seen in your Figma */
}

.social-links-new p {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.social-links-new a {
    font-size: 1.8rem;
    color: #000;
    margin-left: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links-new a:hover {
    color: var(--accent-red);
    transform: translateY(-3px);
}

/* ====== ABOUT PAGE (old one)====== */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 60px;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-img {
    height: 290px; 
}

.social-links {
    margin-top: 5px;
}

.social-links p {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-links a {
    font-size: 1.6rem;
    color: #333;
    margin-right: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-red);
    transform: translateY(-3px);
}

.about-cursive-text {
    position: absolute;
    left: 48%;
    top: 45%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-family: 'Great Vibes', cursive;
    font-size: 8rem;
    color: var(--accent-red); /* Updated to Red */
    z-index: 10;
    pointer-events: none;
}

.about-text {
    flex: 1;
    padding-top: 50px;
    font-size: 0.9rem;
    color: #444;
    padding-left: 30px;
    text-align: justify;
}

.about-text .dash {
    color: var(--accent-red);
    margin-right: 10px;
    font-weight: bold;
}

.about-text .note {
    color: #777;
    font-size: 0.9rem;
}

/* ====== TABLET & MOBILE RESPONSIVE ====== */
@media (max-width: 900px) {
    /* Stack the camera and text vertically */
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .swipe-hint {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--primary-color);
    text-align: right;
    margin-top: -95px;
    margin-right: -22%; 
}

    .about-images {
        width: 100%;
    }

    /* Fix the overlapping cursive text */
    .about-cursive-text {
        position: relative;
        left: 0;
        top: 10px;
        transform: none; /* Removes the 90-degree rotation */
        font-size: 5.5rem; /* Scales it down slightly for smaller screens */
        text-align: center;
        width: 100%;
        margin: 10px 0;
        line-height: 1; 
    }

    /* Reset the text container padding */
    .about-text-container {
        padding-left: 0;
        width: 100%;
    }

    .about-text {
        padding-top: 0;
        margin-right: 35px;
    }

    /* Center the social links on mobile for better balance */
    .social-links-new {
        text-align: left;
        margin-top: 30px;
        margin-left: 26px;
    }

    .fa-brands, .fa-linkedin {
        margin-left: -15px;
        align-content: left;
    }
}