/* File: css/main.css */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
}

.tagline {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 500;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: #ecf0f1;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .name-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }
}
.contact-links {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-icon {
    position: relative;
    color: #2c3e50;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect with floating animation */
.contact-icon:hover {
    color: #e74c3c;
    animation: float 0.8s ease-in-out infinite;
}

/* Individual timing for each icon to create a wave effect */
.contact-icon:nth-child(1) { animation-delay: 0s; }
.contact-icon:nth-child(2) { animation-delay: 0.1s; }
.contact-icon:nth-child(3) { animation-delay: 0.2s; }

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Interactive tooltip */
.contact-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #2c3e50;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Show tooltip on hover */
.contact-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-links {
        gap: 1.5rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-links {
        gap: 1.2rem;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
}