/* Button Component Styles */

/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

/* Primary Button */
.btn-primary {
    background: var(--lima-bean-green);
    color: white;
}

.btn-primary:hover {
    background: var(--wild-willow);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--charcoal);
}

/* White Button */
.btn-white {
    background: white;
    color: var(--lima-bean-green);
    border-color: var(--lima-bean-green);
}

.btn-white:hover {
    background: var(--lima-bean-green);
    color: white;
    border-color: var(--lima-bean-green);
    transform: translateY(-2px);
}

/* Wedding Specific Button */
.btn-wedding {
    background: white;
    color: var(--lima-bean-green);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.btn-wedding:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Magnetic Effect (handled by JavaScript) */
.magnetic {
    /* Magnetic effects are handled by JavaScript animations */
    /* This class serves as a selector for the magnetic behavior */
}