* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #4d4d4d;
    line-height: 1.6;
}





.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.logo {
    filter: drop-shadow(0 4px 8px rgba(255, 77, 0, 0.2));
}

/* Bio Section */
.bio-section {
    margin-bottom: 40px;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4d4d4d;
    margin-bottom: 8px;
}

.title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FF4D00;
    margin-bottom: 4px;
}

.location {
    font-size: 1rem;
    color: #4d4d4d;
    opacity: 0.8;
}

/* Links Section */
.links-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-button {
    display: block;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    margin-bottom: 40px;
}

.contact-toggle {
    background: linear-gradient(135deg, #f94000 0%, #FF4D00 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-toggle:hover::before {
    left: 100%;
}

.contact-toggle:hover {
    background-color: #FF4D00;
    border-color: #FF4D00;
    transform: translateY(-2px);
}

.contact-form {
    margin-top: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 77, 0, 0.1);
    border-radius: 20px;
    text-align: left;
    animation: slideDown 0.3s ease;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF4D00;
}

.submit-btn {
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background-color: #f94000;
    transform: translateY(-1px);
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover svg path {
    fill: #ffffff;
}

.social-icon.email-icon:hover svg path {
    fill: #ffffff;
}

.social-icon.email-icon {
    cursor: pointer;
}

.social-icon.email-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

.social-icon svg {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.1rem;
    }
    
    .link-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .contact-toggle {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
