/* Main Hero Section Styles */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    padding-top: 7%;
}

.profile-pic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

.greeting {
    margin: 1rem 0;
    font-size: 2rem;
    font-weight: 400;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.wave {
    margin-left: 0.5rem;
    display: inline-block;
    animation: waving 2.5s ease-in-out 0.5s 2;
    transform-origin: 70% 70%;
}

@keyframes waving {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.tagline {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.tagline-light {
    color: #ffffff;
}

.tagline-light2 {
    color: #ffffff;
}

.tagline-medium {
    color: #b0b0b0;
}

.tagline-dark {
    color: #707070;
}

/* Tagline fade-in animation */
.tagline span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
}

.tagline-medium {
    animation: fadeIn 0.6s ease forwards 0.3s;
}

.tagline-light {
    animation: fadeIn 0.6s ease forwards 0.6s;
}

.tagline-dark {
    animation: fadeIn 0.6s ease forwards 0.9s;
}

.tagline-light2 {
    animation: fadeIn 0.6s ease forwards 1.2s;
}

.location {
    animation: fadeIn 0.6s ease forwards 1.5s;
}

.location-icon {
    animation: fadeIn 0.6s ease forwards 1.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    margin-top: 2rem;
    background-color: oklch(0.514 0.222 16.935);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button:hover {
    background-color: oklch(0.41 0.159 10.272);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.cta-button:hover .arrow {
    animation: arrow-animation 1s infinite;
}

.cta-button .arrow {
    margin-left: 0.5rem;
}

@keyframes arrow-animation {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Social sidebar */
.social-sidebar {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 200;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(50, 50, 50, 0.5);
    color: #FFF;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-sidebar a:hover {
    background-color: oklch(0.514 0.222 16.935);
    transform: scale(1.1);
}

/* Location styles to add to your hero-section.css file */
.location {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    opacity: 0;
}

.location-icon {
    color: oklch(0.514 0.222 16.935);
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .location {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location {
        font-size: 0.9rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }

    .social-sidebar {
        position: fixed;
        bottom: 1rem;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        background-color: rgba(18, 18, 18, 0.8);
        padding: 0.5rem 0;
        border-radius: 30px;
        width: 180px;
        margin: 0 auto;
    }

    .main-content {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .profile-pic {
        width: 200px;
        height: 200px;
    }

    .greeting {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding-top: 100px;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }

    .greeting {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .social-sidebar {
        left: 0.5rem;
    }

    .social-sidebar a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Touch device enhancements */
@media (hover: none) {

    .cta-button:active,
    .social-sidebar a:active {
        opacity: 0.7;
    }
}