/* Header Section */
header {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    animation: fadeInDown 1s ease;
}

.photo-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5px;
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
    object-fit: cover; /* For images: ensures proper cropping */
}

/* Support for both div placeholder and img tag */
img.photo-placeholder {
    background: none;
    font-size: inherit;
}

.photo-container:hover .photo-placeholder {
    transform: scale(1.1);
}

h1 {
    font-size: 3.5em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3em;
    color: #a5b4fc;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}
