/* Custom Button Styles - Replaces Framer specifics for Projects Section */

.zeth-button {
    background-color: rgb(127, 70, 235) !important;
    border-radius: 48px !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease !important;
    transform-origin: center center !important;
    position: relative !important;
    overflow: visible !important;
    box-shadow: none !important;
    padding: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    backface-visibility: hidden;
    will-change: transform;
}

.zeth-button:hover {
    transform: scale(1.1) !important;
    background-color: rgb(110, 60, 210) !important;
    z-index: 100 !important;
}

.zeth-button:active {
    transform: scale(0.95);
}

.zeth-button .button-text-container {
    transform: none;
}

.zeth-button h1 {
    color: rgb(255, 255, 255);
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
    line-height: 1.2em;
}

/* Specific styling for the 'View All Projects' button which is narrower */
.zeth-button.view-all {
    width: auto !important;
    min-width: 200px !important;
    padding: 12px 24px !important;
    height: 48px !important;
    display: inline-flex !important;
}