/* Contact Page Styles */

.main-content-grid.single-column {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.contact-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    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;
}

.contact-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.15);
}

.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);
}

@media (max-width: 768px) {
    .contact-buttons-container {
        padding: 16px;
        gap: 16px;
        min-height: 50vh;
    }
    
    .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;
    }
    
    .contact-button:hover .button-description {
        white-space: normal;
        max-height: 40px;
    }
}

/* 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;
}

@media (max-width: 768px) {
    .notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        transform: translateY(100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}