/* Custom animations and base styles */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.jar-glow {
    box-shadow: 0 0 20px rgba(184, 155, 114, 0.1);
}

.page-transition {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typography refinements */
.letter-spacing-widest {
    letter-spacing: 0.2em;
}

.line-height-relaxed {
    line-height: 1.8;
}

/* Unified Button Styles */
.btn-primary {
    background-color: var(--accent);
    color: white;
    border-radius: 9999px;
    padding: 1rem 3rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 9999px;
    padding: 1rem 3rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent);
    text-decoration: underline;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.btn-link:hover {
    opacity: 0.8;
}

.btn-full-width {
    width: 100%;
}
