/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.profile-pic-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem auto;
    perspective: 1000px;
}

.profile-pic-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.profile-pic-card.flipped {
    transform: rotateY(180deg);
}

.profile-pic {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color, #38bdf8);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    margin-bottom: 0 !important;
}

.profile-pic.front {
    z-index: 2;
    transform: rotateY(0deg);
}

.profile-pic.back {
    transform: rotateY(180deg);
}

.hero h1 {
    font-family: 'Google Sans Code', monospace;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: #38bdf8;
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: #818cf8;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}