﻿/* ============================================
   BUTTONS COMPONENT
   ============================================ */

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2d5a27 0%, #3e7a36 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3e7a36 0%, #2d5a27 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.3);
}
