﻿/* Mobile Styles */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column-reverse;
        padding: 1rem;
        text-align: center;
        min-height: 100svh;
        margin-top: 0px !important;
    }

    .text-content {
        padding: 1rem;
    }

    .parallax-wrapper {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }

    .scroll-button {
        display: none !important;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-container {
        padding: 1.5rem;
    }

    .parallax-wrapper {
        width: 350px;
        height: 350px;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .main-container {
        flex-direction: row;
        padding: 1rem;
    }

    .parallax-wrapper {
        width: min(250px, 40vh);
        height: min(250px, 40vh);
    }
}

section {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.scroll-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #528cdf;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: globalPulse 2s ease-in-out infinite;
    animation-play-state: running;
}

    .scroll-button:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(-50%) translateY(-5px);
        animation: none;
        border-color: #ff9900;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 50px rgba(255, 166, 0, 0.4);
    }

    .scroll-button i {
        color: #bf893e;
        font-size: 20px;
    }

.social-icons-mobile {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
}

.social-icon-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #528cdf;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .social-icon-mobile:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(82, 140, 223, 0.5);
    }

    .social-icon-mobile img {
        width: 100%;
        height: 100%;
        padding: 8px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .social-icon-mobile:hover img {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .profile-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .parallax-wrapper {
        margin: 0 auto;
    }

    .social-icons-mobile {
        display: flex;
        margin-top: 20px;
    }

    .background-img {
        pointer-events: none;
    }
}
