/* ==========================================
   HUIS TALJE - BUTTON STYLES
   Width: 136px | Height: 50px
   ========================================== */

.btn {
    padding: 12px 40px;
    min-width: 136px;
    height: auto;
    border-radius: 25px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   ORANGE BUTTON (Primary Actions)
   Used for: Get Involved, Step Inside
   ========================================== */
.btn-orange {
    border-radius: 100px;
border: 5px solid var(--Dark-Orange, #CE4610);
background: #E8642F;
box-shadow: 6px 6px 10px 0 rgba(255, 255, 255, 0.46) inset, -8px -10px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

/* Light Shine Effect - Top Left */
.btn-orange::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    filter: blur(4px);
}

/* Secondary Shine - Bottom Right */
.btn-orange::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(3px);
}

/* Hover State */
.btn-orange:hover {
border-radius: 100px;
border: 5px solid var(--Dark-Orange, #CE4610);
background: #E8642F;
box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.41), 6px 6px 10px 0 #FFF inset, -8px -10px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

/* Active/Pressed State */
.btn-orange:active {
border-radius: 100px;
background: var(--Dark-Orange, #CE4610);
box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.46) inset;
}

/* Disabled State */
.btn-orange:disabled {
border-radius: 100px;
background: rgba(143, 41, 0, 0.57);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* ==========================================
   GREEN BUTTON (Secondary Actions)
   Used for: Learn More
   ========================================== */
.btn-green {
border-radius: 100px;
border: 5px solid var(--Green-Accent, #445F08);
background: var(--Green, #AFAB24);
box-shadow: 6px 6px 10px 0 rgba(255, 255, 255, 0.46) inset, -8px -10px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

/* Light Shine Effect - Top Left */
.btn-green::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    filter: blur(4px);
}

/* Secondary Shine - Bottom Right */
.btn-green::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(3px);
}

/* Hover State */
.btn-green:hover {
border-radius: 100px;
border: 5px solid var(--Green-Accent, #445F08);
background: var(--Green, #AFAB24);
box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.41), 6px 6px 10px 0 #FFF inset, -8px -10px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

/* Active/Pressed State */
.btn-green:active {
border-radius: 100px;
background: var(--Green-Accent, #445F08);
box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.46) inset;
}

/* Disabled State */
.btn-green:disabled {
border-radius: 100px;
background: #96A575;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* ==========================================
   DARK GREEN BUTTON
   Additional variant if needed
   ========================================== */
.btn-dark-green {
    background: linear-gradient(180deg, #445F08 0%, #2f4205 100%);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 4px 8px rgba(0,0,0,0.2);
}

.btn-dark-green::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    filter: blur(4px);
}

.btn-dark-green::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(3px);
}

.btn-dark-green:hover {
    background: linear-gradient(180deg, #556f10 0%, #445F08 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.4), 0 6px 12px rgba(0,0,0,0.25);
}

.btn-dark-green:active {
    background: linear-gradient(180deg, #1f2a03 0%, #151d02 100%);
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.15);
}

.btn-dark-green:disabled {
    background: linear-gradient(180deg, #9fa888 0%, #8a9475 100%);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* ==========================================
   PINK BUTTON
   Additional variant if needed
   ========================================== */
.btn-pink {
border-radius: 100px;
border: 5px solid var(--Pink-Accent, #BD002F);
background: var(--Pink, #FF8CB7);
box-shadow: 6px 6px 10px 0 rgba(255, 255, 255, 0.46) inset, -8px -10px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

.btn-pink::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    filter: blur(4px);
}

.btn-pink::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(3px);
}

.btn-pink:hover {
border-radius: 100px;
border: 5px solid var(--Pink-Accent, #BD002F);
background: var(--Pink, #FF8CB7);
box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.41), 6px 6px 10px 0 #FFF inset, -8px -10px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

.btn-pink:active {
border-radius: 100px;
background: var(--Pink-Accent, #BD002F);
box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.46) inset;
}

.btn-pink:disabled {
border-radius: 100px;
background: #C27C96;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* ==========================================
   BUTTON FOCUS STATES (Accessibility)
   ========================================== */
.btn:focus {
    outline: 3px solid rgba(0, 116, 239, 0.5);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
    outline: none;
}