/* Contact Index Page Styles */

.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.contact-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.contact-button {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    width: 200px;
    height: 200px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.contact-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.2);
}

.github-button:hover {
    border-color: #333;
    background: linear-gradient(135deg, #24292e 0%, #1a1e22 100%);
}

.github-button:hover .button-icon {
    color: #fff;
}

.email-button:hover {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
}

.email-button:hover .button-icon {
    color: var(--accent-blue);
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-button:hover .button-content {
    gap: 16px;
}

.button-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-button:hover .button-icon {
    transform: scale(1.1);
}

.button-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.button-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.button-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.contact-button:hover .button-description {
    opacity: 1;
    max-height: 40px;
}

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

.github-button:hover .button-title {
    color: #fff;
}

.email-button:hover .button-title {
    color: var(--accent-blue);
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.2);
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.notification-message {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
        padding: 60px 20px;
    }
    
    .contact-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .contact-buttons-container {
        gap: 20px;
    }
    
    .contact-button {
        width: 160px;
        height: 160px;
        padding: 16px;
    }
    
    .button-icon {
        width: 50px;
        height: 50px;
    }
    
    .button-title {
        font-size: 1rem;
    }
    
    .button-description {
        font-size: 0.75rem;
    }
    
    .notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        transform: translateY(100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .contact-content h1 {
        font-size: 2rem;
    }
    
    .contact-button {
        width: 140px;
        height: 140px;
    }
    
    .button-icon {
        width: 45px;
        height: 45px;
    }
}
